* 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
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;
$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;