diff options
author | fnuesse <fnuesse@techfak.uni-bielefeld.de> | 2018-06-01 20:29:43 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-07-12 16:49:37 +0200 |
commit | 72ace9697c0951b3379a88c3cb639e1c9abe0170 (patch) | |
tree | 7d24e3efbc36020579d99f4556f2bbed1cffd218 /core | |
parent | 09d5b61c9e468cdc0b92db27946140e68192e2e5 (diff) | |
download | nextcloud-server-72ace9697c0951b3379a88c3cb639e1c9abe0170.tar.gz nextcloud-server-72ace9697c0951b3379a88c3cb639e1c9abe0170.zip |
Added FavoritesQuickaccess-Sidebar
Added FavoritesQuickaccess-Sidebar
Added Files-FavoritesQuickaccess-Toggle
Fixed CSS for SpacerElement
Removed Unnessessary Alerts and added Translations
Tried fixing initial Quick-Access Checkboxstate
Signed-off-by: fnuesse <fnuesse@techfak.uni-bielefeld.de>
Tried fixing initial Quick-Access Checkboxstate
Changed double-Quotes to single-Quotes
Revert webdavurl which was changed by mistake
Revert quota-icon which was changed by mistake
Changed the Folderhandling from custom-designed to nextcloud-NavigationManager-handling
Signed-off-by: fnuesse <fnuesse@techfak.uni-bielefeld.de>
Moved CSS-Spacerclass to apps.scss for global usage
Signed-off-by: fnuesse <felix.nuesse@t-online.de>
Renamed settings-caption in apps.scss to app-navigation-caption
Signed-off-by: fnuesse <felix.nuesse@t-online.de>
Removed old input-tag for showQuickAccess-state
Signed-off-by: fnuesse <felix.nuesse@t-online.de>
Removed old spacer element in files.scss
Signed-off-by: fnuesse <felix.nuesse@t-online.de>
Changed style of favorites-sublist and disabled the ability to disable files-quickaccess
Signed-off-by: fnuesse <felix.nuesse@t-online.de>
Diffstat (limited to 'core')
-rw-r--r-- | core/css/apps.scss | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index 13b4c7eb9fc..2e3ab7b1a28 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -584,6 +584,41 @@ kbd { .app-navigation-entry-menu ul { list-style-type: none; } + + .app-navigation-caption { + font-weight: bold; + line-height: 44px; + white-space: nowrap; + text-overflow: ellipsis; + float: left; + margin-left:10px; + margin-top:10px; + margin-bottom:10px; + //Make the Link in the spacer not selectable and prevent mouseevents + -moz-user-select: -moz-none; + -khtml-user-select: none; + -webkit-user-select: none; + -o-user-select: none; + user-select: none; + pointer-events:none; + } + + .app-navigation-subelement { + line-height: 24px; + white-space: nowrap; + text-overflow: ellipsis; + float: left; + padding-left: 14px; + & a { + //Overrides normal size for smaller subelements + line-height: 24px; + min-height: 24px; + //Removes the double border on the a element + &:visited { box-shadow:none;} + &:hover { box-shadow:none;} + &:active {box-shadow:none; } + } + } } /* APP-CONTENT ---------------------------------------------------------------*/ @@ -691,6 +726,7 @@ kbd { background-color: var(--color-main-background); } + .settings-button { display: block; height: 44px; |