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

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorm5o <m5o@gmx.com>2018-02-12 01:25:36 +0300
committerMark Otto <markd.otto@gmail.com>2018-02-12 01:25:36 +0300
commitf81f419b22949d2bf0f4d346891be44724109135 (patch)
tree055de8ec76803de1c247327f48eecc1a79b2f0ed /scss
parent3ffe4f82b794e174fafe58d80980aa37bc02e5e4 (diff)
set color to form-control-plaintext (#25565)
* set color to `.form-control-plaintext` * fixes readability on dark themes like ‘darkly’ * https://bootswatch.com/darkly/index.html#forms * https://bootswatch.com/slate/index.html#forms * https://bootswatch.com/superhero/index.html#superhero * https://bootswatch.com/solar/index.html#forms /cc @thomaspark
Diffstat (limited to 'scss')
-rw-r--r--scss/_forms.scss1
-rw-r--r--scss/_variables.scss1
2 files changed, 2 insertions, 0 deletions
diff --git a/scss/_forms.scss b/scss/_forms.scss
index 8835595e73..c079bd5c4f 100644
--- a/scss/_forms.scss
+++ b/scss/_forms.scss
@@ -121,6 +121,7 @@ select.form-control {
padding-bottom: $input-padding-y;
margin-bottom: 0; // match inputs if this class comes on inputs with default margins
line-height: $input-line-height;
+ color: $input-plaintext-color;
background-color: transparent;
border: solid transparent;
border-width: $input-border-width 0;
diff --git a/scss/_variables.scss b/scss/_variables.scss
index e7f18acc78..2178e1f9cb 100644
--- a/scss/_variables.scss
+++ b/scss/_variables.scss
@@ -416,6 +416,7 @@ $input-focus-width: $input-btn-focus-width !default;
$input-focus-box-shadow: $input-btn-focus-box-shadow !default;
$input-placeholder-color: $gray-600 !default;
+$input-plaintext-color: $body-color !default;
$input-height-border: $input-border-width * 2 !default;