1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

feat(UI): initial BaseSelect integration

This commit is contained in:
Giulio Ganci
2022-05-08 09:45:37 +02:00
parent 745d551cc9
commit 22622df2cf
5 changed files with 79 additions and 35 deletions

View File

@@ -121,6 +121,15 @@
border-color: $primary-color;
}
.form-select {
.select {
&__list-wrapper {
border-color: $bg-color-gray;
background-color: $bg-color-light-dark;
}
}
}
.form-input[readonly] {
background-color: $bg-color-dark;
cursor: default;
@@ -232,7 +241,7 @@
}
}
}
.connection-panel {
.panel {
background: rgba($bg-color-light-dark, 50%);
@@ -240,9 +249,7 @@
}
.bg-checkered {
background-image:
linear-gradient(to right, rgba(192, 192, 192, 0.75), rgba(192, 192, 192, 0.75)),
linear-gradient(to right, black 50%, white 50%),
background-image: linear-gradient(to right, rgba(192, 192, 192, 0.75), rgba(192, 192, 192, 0.75)), linear-gradient(to right, black 50%, white 50%),
linear-gradient(to bottom, black 50%, white 50%);
background-blend-mode: normal, difference, normal;
background-size: 2em 2em;

View File

@@ -18,6 +18,19 @@
background: #ababab;
}
.form-select {
.select {
&__list-wrapper {
border: #bcc3ce;
background-color: $body-bg;
}
&__option--highlight {
color: $light-color;
}
}
}
.menu {
.menu-item a {
&:hover {