summaryrefslogtreecommitdiff
path: root/src/assets
diff options
context:
space:
mode:
Diffstat (limited to 'src/assets')
-rw-r--r--src/assets/images/_sila/notifications/message-dark.svg3
-rw-r--r--src/assets/styles/bmc/_sila/_buttons.scss2
-rw-r--r--src/assets/styles/bmc/_sila/_dropdown.scss9
-rw-r--r--src/assets/styles/bmc/_sila/_forms.scss4
4 files changed, 13 insertions, 5 deletions
diff --git a/src/assets/images/_sila/notifications/message-dark.svg b/src/assets/images/_sila/notifications/message-dark.svg
new file mode 100644
index 00000000..8fe7c094
--- /dev/null
+++ b/src/assets/images/_sila/notifications/message-dark.svg
@@ -0,0 +1,3 @@
+<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
+<path fill-rule="evenodd" clip-rule="evenodd" d="M0.941177 1.57887C0.941177 1.28822 1.15187 1.05258 1.41176 1.05258H14.5882C14.8481 1.05258 15.0588 1.28822 15.0588 1.57887V10.3278C15.0588 10.6184 14.8481 10.854 14.5882 10.854H3.5107L0.941177 13.5619V1.57887ZM1.41176 1.11744e-05C0.632065 1.11744e-05 0 0.706899 0 1.57887V16L3.88426 11.9066H14.5882C15.3679 11.9066 16 11.1997 16 10.3278V1.57887C16 0.706899 15.3679 1.11744e-05 14.5882 1.11744e-05H1.41176ZM4.5 3.05041C4.22386 3.05041 4 3.31393 4 3.63902C4 3.96412 4.22386 4.22764 4.5 4.22764H11.5C11.7761 4.22764 12 3.96412 12 3.63902C12 3.31393 11.7761 3.05041 11.5 3.05041H4.5ZM4 5.9935C4 5.6684 4.22386 5.40488 4.5 5.40488H11.5C11.7761 5.40488 12 5.6684 12 5.9935C12 6.31859 11.7761 6.58211 11.5 6.58211H4.5C4.22386 6.58211 4 6.31859 4 5.9935ZM4.5 7.75935C4.22386 7.75935 4 8.02287 4 8.34797C4 8.67307 4.22386 8.93659 4.5 8.93659H11.5C11.7761 8.93659 12 8.67307 12 8.34797C12 8.02287 11.7761 7.75935 11.5 7.75935H4.5Z" fill="#247BC1"/>
+</svg>
diff --git a/src/assets/styles/bmc/_sila/_buttons.scss b/src/assets/styles/bmc/_sila/_buttons.scss
index 2ca971f8..a13a1457 100644
--- a/src/assets/styles/bmc/_sila/_buttons.scss
+++ b/src/assets/styles/bmc/_sila/_buttons.scss
@@ -57,7 +57,7 @@
border: none;
box-shadow: 1px 2px 4px -1px rgb(79 37 37 / 10%) inset;
@include themify($themes) {
- background-color: themed("gray-5");
+ background-color: themed("btn-secondary");
&:hover {
background-color: themed("gray-5-hover");
color: $red;
diff --git a/src/assets/styles/bmc/_sila/_dropdown.scss b/src/assets/styles/bmc/_sila/_dropdown.scss
index 261d91f1..983d8bdd 100644
--- a/src/assets/styles/bmc/_sila/_dropdown.scss
+++ b/src/assets/styles/bmc/_sila/_dropdown.scss
@@ -4,7 +4,8 @@
padding: $spacer / 2;
border-radius: $border-radius;
@include themify($themes) {
- background-color: themed("surface-primary");
+ background-color: themed("dropdown-bg");
+ border: 1px solid themed("dropdown-border");
}
}
@@ -17,7 +18,7 @@
color: themed("text-primary");
}
&:hover {
- background-color: $red-hover;
+ background-color: $red-dropdown-hover;
}
&:active {
background-color: $red-active;
@@ -48,7 +49,9 @@
&:focus {
outline: none;
background-color: transparent;
- box-shadow: inset 0 0 0 2px theme-color("primary");
+ @include themify($themes) {
+ box-shadow: inset 0 0 0 2px theme-color("primary");
+ }
}
}
}
diff --git a/src/assets/styles/bmc/_sila/_forms.scss b/src/assets/styles/bmc/_sila/_forms.scss
index 3c22ba30..d722e230 100644
--- a/src/assets/styles/bmc/_sila/_forms.scss
+++ b/src/assets/styles/bmc/_sila/_forms.scss
@@ -183,7 +183,9 @@ div:not(.search-global) > .form-group {
width: 100%;
.custom-select,
.form-control {
- color: #0c1c29e6;
+ @include themify($themes) {
+ color: themed("text-secondary");
+ }
border-radius: $border-radius;
border: none;
background-color: $gray-5;