Fixes #7266: Tweak font color for form field placeholder text

This commit is contained in:
jeremystretch
2021-09-16 14:41:01 -04:00
parent 42afd80e82
commit e3e005e327
7 changed files with 8 additions and 6 deletions
+1
View File
@@ -17,6 +17,7 @@
* [#7226](https://github.com/netbox-community/netbox/issues/7226) - Exempt GraphQL API requests from CSRF inspection * [#7226](https://github.com/netbox-community/netbox/issues/7226) - Exempt GraphQL API requests from CSRF inspection
* [#7248](https://github.com/netbox-community/netbox/issues/7248) - Fix global search results section links * [#7248](https://github.com/netbox-community/netbox/issues/7248) - Fix global search results section links
* [#7279](https://github.com/netbox-community/netbox/issues/7279) - Fix exception when tracing cable with no associated path * [#7279](https://github.com/netbox-community/netbox/issues/7279) - Fix exception when tracing cable with no associated path
* [#7266](https://github.com/netbox-community/netbox/issues/7266) - Tweak font color for form field placeholder text
--- ---
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -19,7 +19,7 @@ $spacing-s: $input-padding-x;
--nbx-select-option-selected-bg: #{$gray-300}; --nbx-select-option-selected-bg: #{$gray-300};
--nbx-select-option-hover-bg: #{$blue}; --nbx-select-option-hover-bg: #{$blue};
--nbx-select-option-hover-color: #{$white}; --nbx-select-option-hover-color: #{$white};
--nbx-select-placeholder-color: #{$gray-600}; --nbx-select-placeholder-color: #{$gray-500};
--nbx-select-value-color: #{$white}; --nbx-select-value-color: #{$white};
&[data-netbox-color-mode='dark'] { &[data-netbox-color-mode='dark'] {
// Dark Mode Variables. // Dark Mode Variables.
@@ -27,7 +27,7 @@ $spacing-s: $input-padding-x;
--nbx-select-option-selected-bg: #{$gray-500}; --nbx-select-option-selected-bg: #{$gray-500};
--nbx-select-option-hover-bg: #{$blue-200}; --nbx-select-option-hover-bg: #{$blue-200};
--nbx-select-option-hover-color: #{color-contrast($blue-200)}; --nbx-select-option-hover-color: #{color-contrast($blue-200)};
--nbx-select-placeholder-color: #{$gray-500}; --nbx-select-placeholder-color: #{$gray-700};
--nbx-select-value-color: #{$black}; --nbx-select-value-color: #{$black};
} }
} }
+1 -1
View File
@@ -82,7 +82,7 @@ $input-border-color: $gray-700;
$input-focus-bg: $input-bg; $input-focus-bg: $input-bg;
$input-focus-border-color: tint-color($component-active-bg, 10%); $input-focus-border-color: tint-color($component-active-bg, 10%);
$input-focus-color: $input-color; $input-focus-color: $input-color;
$input-placeholder-color: $gray-300; $input-placeholder-color: $gray-700;
$input-plaintext-color: $body-color; $input-plaintext-color: $body-color;
$form-check-input-active-filter: brightness(90%); $form-check-input-active-filter: brightness(90%);
@@ -40,6 +40,7 @@ $list-group-disabled-color: $gray-500;
$table-flush-header-bg: $gray-100; $table-flush-header-bg: $gray-100;
$input-placeholder-color: $gray-500;
$form-select-disabled-color: $gray-600; $form-select-disabled-color: $gray-600;
// Tabbed content // Tabbed content