123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- @use 'variables';
- @media only screen and (max-width: variables.$breakpoint-mobile) {
- /* position share dropdown */
- #dropdown {
- margin-right: 10% !important;
- width: 80% !important;
- }
- /* fix name autocomplete not showing on mobile */
- .ui-autocomplete {
- z-index: 1000 !important;
- }
- /* fix error display on smaller screens */
- .error-wide {
- width: 100%;
- margin-left: 0 !important;
- box-sizing: border-box;
- }
- /* APP SIDEBAR TOGGLE and SWIPE ----------------------------------------------*/
- #app-navigation:not(.vue) {
- transform: translateX(-#{variables.$navigation-width});
- position: fixed;
- height: var(--body-height);
- }
- .snapjs-left {
- #app-navigation {
- transform: translateX(0);
- }
- }
- #app-navigation:not(.hidden) + #app-content {
- margin-left: 0;
- }
- .skip-navigation.skip-content {
- left: 3px;
- margin-left: 0;
- }
- /* full width for message list on mobile */
- .app-content-list {
- background: var(--color-main-background);
- flex: 1 1 100%;
- // make full height scroll since app-content-details is hidden
- max-height: unset;
- // ignore 300px default max width
- max-width: 100%;
- + .app-content-details {
- display: none;
- }
- &.showdetails {
- display: none;
- + .app-content-details {
- display: initial;
- }
- }
- }
- /* Show app details page */
- #app-content.showdetails {
- #app-navigation-toggle {
- transform: translateX(-44px);
- }
- #app-navigation-toggle-back {
- position: fixed;
- display: inline-block !important;
- top: variables.$header-height;
- left: 0;
- width: 44px;
- height: 44px;
- z-index: 1050; // above app-content
- background-color: rgba(255, 255, 255, .7);
- cursor: pointer;
- opacity: .6;
- transform: rotate(90deg);
- }
- .app-content-list {
- transform: translateX(-100%);
- }
- }
- #app-navigation-toggle {
- position: fixed;
- display: inline-block !important;
- left: 0;
- width: 44px;
- height: 44px;
- z-index: 1050; // above app-content
- cursor: pointer;
- opacity: 0.6;
- }
- #app-navigation-toggle:hover,
- #app-navigation-toggle:focus {
- opacity: 1;
- }
- /* position controls for apps with app-navigation */
- #app-navigation + #app-content .files-controls {
- padding-left: 44px;
- }
- /* .viewer-mode is when text editor, PDF viewer, etc is open */
- #body-user .app-files.viewer-mode .files-controls {
- padding-left: 0 !important;
- }
- .app-files.viewer-mode #app-navigation-toggle {
- display: none !important;
- }
- table.multiselect thead {
- left: 0 !important;
- }
- /* prevent overflow in user management controls bar */
- #usersearchform {
- display: none;
- }
- #body-settings .files-controls {
- min-width: variables.$breakpoint-mobile !important;
- }
- /* do not show dates in filepicker */
- #oc-dialog-filepicker-content .filelist .column-size,
- #oc-dialog-filepicker-content .filelist .column-mtime,
- #oc-dialog-filepicker-content .filelist .filesize,
- #oc-dialog-filepicker-content .filelist .date {
- display: none;
- }
- #oc-dialog-filepicker-content .filelist .filename {
- max-width: 100%;
- }
- .snapjs-left table.multiselect thead {
- top: 44px;
- }
- /* end of media query */
- }
- @media only screen and (max-width: 480px) {
- #header .header-right > div > .menu {
- max-width: calc(100vw - 10px);
- position: fixed;
- &::after {
- display: none !important;
- }
- }
- /* Arrow directly child of menutoggle */
- #header .header-right > div {
- &.openedMenu {
- &::after {
- display: block;
- }
- }
- &::after {
- border: 10px solid transparent;
- border-bottom-color: var(--color-main-background);
- bottom: 0;
- content: ' ';
- height: 0;
- width: 0;
- position: absolute;
- pointer-events: none;
- right: 15px;
- z-index: 2001;
- display: none;
- }
- /* settings need a different offset, since they have a right padding */
- &#settings::after {
- right: 27px;
- }
- }
- }
|