add a background color to fieldset in settings grid

This commit is contained in:
2025-12-05 17:23:35 +03:00
parent f0b0fb8909
commit e9c03b9046
4 changed files with 5 additions and 0 deletions

View File

@@ -1473,6 +1473,7 @@ a.mention:hover, a.mention:visited:hover {
.settings-grid fieldset {
border: 1px solid white;
border-radius: 4px;
background-color: rgb(171.527945374, 172.0409719488, 170.8965280512);
}
.hfc {

View File

@@ -1473,6 +1473,7 @@ a.mention:hover, a.mention:visited:hover {
.settings-grid fieldset {
border: 1px solid black;
border-radius: 8px;
background-color: rgb(141.6, 79.65, 141.6);
}
.hfc {

View File

@@ -1473,6 +1473,7 @@ a.mention:hover, a.mention:visited:hover {
.settings-grid fieldset {
border: 1px solid white;
border-radius: 16px;
background-color: rgb(176.5961538462, 106.9038461538, 147.1947115385);
}
.hfc {

View File

@@ -7,6 +7,7 @@
$ACCENT_COLOR: #c1ceb1 !default;
$DARK_1: color.scale($ACCENT_COLOR, $lightness: -25%, $saturation: -97%) !default;
$DARK_1_LIGHTER: color.scale($DARK_1, $lightness: 25%);
$DARK_2: color.scale($ACCENT_COLOR, $lightness: -30%, $saturation: -60%) !default;
$DARK_3: color.scale($ACCENT_COLOR, $lightness: -80%, $saturation: -70%) !default;
@@ -1447,6 +1448,7 @@ $settings_grid_fieldset_border_radius: $DEFAULT_BORDER_RADIUS !default;
& fieldset {
border: $settings_grid_fieldset_border;
border-radius: $settings_grid_fieldset_border_radius;
background-color: $DARK_1_LIGHTER;
}
}