Rename disabled button variable

TIL that underscores and dashes are treated the same in SCSS variables.
This commit is contained in:
David Cook
2023-06-22 16:33:45 +10:00
parent 1a02e108a5
commit 0aa4c144b9
3 changed files with 3 additions and 3 deletions

View File

@@ -25,7 +25,7 @@
}
&.disabled {
background-color: $disabled_button;
background-color: $color-btn-disabled-bg;
cursor: default;
}
}

View File

@@ -116,7 +116,7 @@ table.edit-note-table {
float: right;
&:disabled {
background-color: $disabled-button;
background-color: $color-btn-disabled-bg;
}
}
}

View File

@@ -4,4 +4,4 @@ $color-tbl-border: $pale-blue;
$color-modal-close-btn: $color-5;
$color-modal-close-btn-hover: darken($color-5, 5%);
$disabled-button: $light-grey;
$color-btn-disabled-bg: $light-grey;