Rename table border variable

There are other vars named brd, but I think border is clearer and doesn't need to be abreviated here.
This commit is contained in:
David Cook
2023-06-22 16:14:37 +10:00
parent c4a335548a
commit b46e6c462d
4 changed files with 4 additions and 4 deletions

View File

@@ -41,7 +41,7 @@
.ts-wrapper.single .ts-control,
.ts-dropdown.single {
border-color: $admin-table-border;
border-color: $color-tbl-border;
}
.ts-control,

View File

@@ -29,7 +29,7 @@ form[name="enterprise_form"] {
}
.admin-enterprises-index-admin-actions-divider {
background-color: $admin-table-border;
background-color: $color-tbl-border;
border-width: 0;
height: 1px;
margin-bottom: 1em;

View File

@@ -39,7 +39,7 @@
}
table tr:last-child th {
border-bottom: 1px solid $admin-table-border;
border-bottom: 1px solid $color-tbl-border;
}
}

View File

@@ -1,6 +1,6 @@
// Admin variables and colours
$color-warning: $color-5;
$admin-table-border: $pale-blue;
$color-tbl-border: $pale-blue;
$modal-close-button-color: #de6060;
$modal-close-button-hover-color: #bf4545;