diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-05-28 13:50:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-28 13:50:44 +0200 |
commit | c2c3feff0e56e716d4d93ba9f70f0f3dd7db0536 (patch) | |
tree | 235bf6518e3ca36c766d4711948823184712463d | |
parent | c3f779b97d4c8f16dd9498063ff3e63d011d63ba (diff) | |
parent | bb811ee3e1d46def80c112242343264b2622779e (diff) | |
download | nextcloud-server-c2c3feff0e56e716d4d93ba9f70f0f3dd7db0536.tar.gz nextcloud-server-c2c3feff0e56e716d4d93ba9f70f0f3dd7db0536.zip |
Merge pull request #15705 from nextcloud/bugfix/15598/text-color-search-box-darktheme
Change text color in search box in darktheme, ref #15598
-rw-r--r-- | apps/accessibility/css/themedark.scss | 3 | ||||
-rw-r--r-- | core/css/header.scss | 5 | ||||
-rw-r--r-- | core/templates/layout.user.php | 2 |
3 files changed, 6 insertions, 4 deletions
diff --git a/apps/accessibility/css/themedark.scss b/apps/accessibility/css/themedark.scss index 185b921fe67..6ee73a0301b 100644 --- a/apps/accessibility/css/themedark.scss +++ b/apps/accessibility/css/themedark.scss @@ -42,8 +42,7 @@ $color-border-dark: lighten($color-main-background, 14%); // since svg icons are inverted, revert to white for the header .header-right > * { - >[class^='icon-'], - >[class*=' icon-'] { + >[class^='icon-'] { filter: invert(100%); } } diff --git a/core/css/header.scss b/core/css/header.scss index 159083da912..c1e89b5cc8e 100644 --- a/core/css/header.scss +++ b/core/css/header.scss @@ -631,7 +631,7 @@ nav[role='navigation'] { width: 155px; cursor: text; background-color: transparent !important; - border: 1px solid var(--color-border) !important; + border: 1px solid var(--color-primary-text) !important; } &:hover, &:focus, &:active { opacity: 1; @@ -656,6 +656,9 @@ nav[role='navigation'] { -webkit-appearance: none; } } + .icon-search-force-white { + @include icon-color('search', 'actions', '#fffffe', 1, true); + } } /* Empty content messages in the header e.g. notifications, contacts menu, … */ diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 9b558b198ee..458af24696b 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -105,7 +105,7 @@ <?php p($l->t('Search'));?> </label> <input id="searchbox" type="search" name="query" - value="" required class="hidden icon-search-white" + value="" required class="hidden icon-search-white icon-search-force-white" autocomplete="off"> <button class="icon-close-white" type="reset"><span class="hidden-visually"><?php p($l->t('Reset search'));?></span></button> </form> |