Skip to content

Commit

Permalink
fix: add css variables for colours to EditorSearchInput
Browse files Browse the repository at this point in the history
  • Loading branch information
Kathryn Gough committed Nov 20, 2017
1 parent 8656e46 commit 7d0ac4b
Showing 1 changed file with 7 additions and 2 deletions.
@@ -1,3 +1,8 @@
:root {
--Input-color-dark: #546677;
--Input-color-mid: #20718A;
}

.InputEditorSearch {
margin-left: 0.75em;
margin-right: 1em;
Expand Down Expand Up @@ -54,7 +59,7 @@
}

.InputEditorSearch .EditorInputGroup-addon button {
color: #546677;
color: var(--Input-color-dark);
}

li.InlineSearch-list {
Expand All @@ -65,7 +70,7 @@ li.InlineSearch-list {

li.InlineSearch-list span {
width: 60%;
color: #20718A;
color: var(--Input-color-mid);
}

.InlineSearch input {
Expand Down

0 comments on commit 7d0ac4b

Please sign in to comment.