diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-04-05 12:21:39 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-04-05 12:21:39 +0200 |
commit | bbeb3402b6bc778de393b6da1b5fdc214f825b16 (patch) | |
tree | c6acabcd87666f34beb3eb59bcf93a09338170fa /core/css/public.scss | |
parent | cc3b1179fc2ad0051cb6043ff022cd033144a936 (diff) | |
download | nextcloud-server-bbeb3402b6bc778de393b6da1b5fdc214f825b16.tar.gz nextcloud-server-bbeb3402b6bc778de393b6da1b5fdc214f825b16.zip |
Move styling and menu handling to publicpage.js
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'core/css/public.scss')
-rw-r--r-- | core/css/public.scss | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/core/css/public.scss b/core/css/public.scss index 6a175de6431..412016bc625 100644 --- a/core/css/public.scss +++ b/core/css/public.scss @@ -1,7 +1,7 @@ #body-public { .header-right { - span:not(.popovermenu) a { + #header-primary-action a { color: $color-primary-text; } @@ -16,7 +16,21 @@ #header-secondary-action { margin-right: 13px; + + input[type='text'] { + width: 200px; + } } } + + #content { + height: initial; + min-height: calc(100vh - 160px); + } + + /* force layout to make sure the content element's height matches its contents' height */ + .ie #content { + display: inline-block; + } } |