diff options
Diffstat (limited to 'apps/theming/css/settings-admin.scss')
-rw-r--r-- | apps/theming/css/settings-admin.scss | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/apps/theming/css/settings-admin.scss b/apps/theming/css/settings-admin.scss index f43d3b8c417..60d9a823a0b 100644 --- a/apps/theming/css/settings-admin.scss +++ b/apps/theming/css/settings-admin.scss @@ -31,6 +31,8 @@ } form.uploadButton { width: 411px; + display: flex; + align-items: center; } form .theme-undo, .theme-remove-bg { @@ -46,7 +48,14 @@ visibility: visible; height: 32px; width: 32px; + // right align + margin-left: auto; } + form .theme-undo:not([style*="display:"]) ~ .theme-remove-bg { + // Only align the undo button if both are shown + margin-left: 0; + } + input[type='text']:hover + .theme-undo, input[type='text'] + .theme-undo:hover, input[type='text']:focus + .theme-undo, @@ -61,6 +70,8 @@ label span { display: inline-block; min-width: 175px; + max-width: 175px; + white-space: wrap; padding: 8px 0px; vertical-align: top; } @@ -137,6 +148,15 @@ #theming-preview-favicon { background-image: var(--image-favicon); } + + #user-theming { + margin-top: 44px; + display: flex; + & > div { + max-width: 400px; + margin-bottom: 44px; + } + } } /* transition effects for theming value changes */ |