UI: improve distinction between placeholder and input (#3640)

This commit is contained in:
Richard Schreiber
2023-10-16 10:41:37 +02:00
committed by GitHub
parent 215a2f2dbb
commit 7ee630928b
3 changed files with 6 additions and 1 deletions

View File

@@ -208,7 +208,7 @@ $input-border-radius-small: $border-radius-small !default;
$input-border-focus: #66afe9 !default;
//** Placeholder text color
$input-color-placeholder: #767676 !default;
$input-color-placeholder: #999 !default;
//** Default `.form-control` height
$input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2) !default;

View File

@@ -13,6 +13,10 @@ input[type=number]::-webkit-outer-spin-button {
padding: 8px 4px;
}
.form-control::placeholder {
font-style: italic;
}
.sidebar-nav li > a > .fa {
color: $navbar-inverse-bg;
}

View File

@@ -20,6 +20,7 @@ $gray-lightest: lighten(#000, 97.25%);
$font-family-sans-serif: "Open Sans", "OpenSans", "Helvetica Neue", Helvetica, Arial, sans-serif !default;
$text-color: #222222 !default;
$text-muted: #767676 !default;
$input-color-placeholder: lighten(#000, 70%) !default;
$brand-primary: #7f5a91 !default;
$brand-success: #50a167 !default;