Merge pull request #1498 from prymitive/input-disabled

fix(ui): more readable disable input bg color
This commit is contained in:
Łukasz Mierzwa
2020-03-09 23:32:15 +00:00
committed by GitHub
2 changed files with 5 additions and 1 deletions

View File

@@ -40,6 +40,9 @@ storiesOf("SilenceModal", module)
const settingsStore = new Settings();
const silenceFormStore = new SilenceFormStore();
alertStore.info.authentication.enabled = true;
alertStore.info.authentication.username = "me@example.com";
alertStore.data.upstreams = {
clusters: { default: ["default"] },
instances: [
@@ -72,7 +75,7 @@ storiesOf("SilenceModal", module)
)
];
silenceFormStore.data.addEmptyMatcher();
silenceFormStore.data.author = "me@example.com";
silenceFormStore.data.author = "john@example.com";
silenceFormStore.data.comment = "fake silence";
silenceFormStore.data.resetStartEnd();

View File

@@ -47,6 +47,7 @@ $pagination-disabled-bg: darken($gray-800, 2%);
$input-color: $white;
$input-bg: $secondary;
$input-disabled-bg: $gray-800;
$input-group-addon-bg: $gray-800;
$input-border-color: $secondary;