Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Sarasin <james.sarasin@gmail.com>2018-10-30 09:03:58 +0300
committerJames Sarasin <james.sarasin@gmail.com>2018-10-30 09:03:58 +0300
commit40284d4178411e167cdab7db29c0c51acc2fafd1 (patch)
tree3124d5d21d39b491dc31599cfa3eccd0002a2906
parentc3f9c6fa422a0413672086ed305a2a91e5fb3533 (diff)
Match form input/option element background colours to the overall theme. Hardcoded #fff and absent background colour make dark contrast themes unreadable
-rw-r--r--src/_forms.scss6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/_forms.scss b/src/_forms.scss
index 8b53df9..4196ffa 100644
--- a/src/_forms.scss
+++ b/src/_forms.scss
@@ -118,7 +118,7 @@ textarea.form-input {
padding: $control-padding-y $control-padding-x;
vertical-align: middle;
width: 100%;
-
+ background: $bg-color-light;
&[size],
&[multiple] {
height: auto;
@@ -128,7 +128,7 @@ textarea.form-input {
}
}
&:not([multiple]):not([size]) {
- background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%204%205'%3E%3Cpath%20fill='%23667189'%20d='M2%200L0%202h4zm0%205L0%203h4z'/%3E%3C/svg%3E") no-repeat right .35rem center/.4rem .5rem;
+ background: $bg-color-light url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%204%205'%3E%3Cpath%20fill='%23667189'%20d='M2%200L0%202h4zm0%205L0%203h4z'/%3E%3C/svg%3E") no-repeat right .35rem center/.4rem .5rem;
padding-right: $control-icon-size + $control-padding-x;
}
&:focus {
@@ -542,4 +542,4 @@ input {
// Form inline
.form-inline {
display: inline-block;
-} \ No newline at end of file
+}