summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnna Tsyganova <ATSyganova@IBS.RU>2022-08-15 17:11:26 +0300
committerAnna Tsyganova <ATSyganova@IBS.RU>2022-08-15 17:11:26 +0300
commit3e22d1b10a4bd2b9e998aaaf25b388377b3953da (patch)
tree5e3925c77105e183f87cd9d6f2a1c2e8803a9b4c
parent80b4c8a8df24c5784d0c4c186816d16452f288f8 (diff)
downloadwebui-vue-3e22d1b10a4bd2b9e998aaaf25b388377b3953da.tar.xz
Fix button link
-rw-r--r--src/assets/styles/bmc/_sila/_base.scss21
-rw-r--r--src/assets/styles/bmc/_sila/_buttons.scss2
2 files changed, 14 insertions, 9 deletions
diff --git a/src/assets/styles/bmc/_sila/_base.scss b/src/assets/styles/bmc/_sila/_base.scss
index cc01b569..fc8365d8 100644
--- a/src/assets/styles/bmc/_sila/_base.scss
+++ b/src/assets/styles/bmc/_sila/_base.scss
@@ -1,11 +1,10 @@
-
//
// Scrollbars:
//
/* W3C standard: Firefox only */
* {
scrollbar-width: thin;
- scrollbar-color: rgba(12,32,64,.7) transparent;
+ scrollbar-color: rgba(12, 32, 64, 0.7) transparent;
}
/* For Chrome/Edge/Safari */
@@ -26,7 +25,7 @@
}
*::-webkit-scrollbar-thumb {
- background-color: rgba(12,32,64,.7);
+ background-color: rgba(12, 32, 64, 0.7);
border-radius: 2px;
border: 2px solid transparent;
}
@@ -70,7 +69,8 @@ h5,
}
h6,
-.h6, label {
+.h6,
+label {
font-size: 0.825rem !important;
font-weight: 500;
line-height: 1.2;
@@ -80,7 +80,7 @@ h6,
font-size: 1.4rem !important;
}
-.nav-link--current{
+.nav-link--current {
background-color: $red-light-background !important;
color: $red !important;
&:hover,
@@ -90,12 +90,15 @@ h6,
}
}
-.btn-link:active, .nav-link:active {
+.btn-link:active,
+.nav-link:active {
background-color: $red-light-background !important;
color: $red !important;
}
-.app-header .navbar-text, .app-header .nav-link, .app-header .btn-link {
+.app-header .navbar-text,
+.app-header .nav-link,
+.app-header .btn-link {
&:hover {
background-color: $red-40 !important;
border-radius: $border-radius;
@@ -112,7 +115,7 @@ h6,
.header-nav {
.nav-link {
display: flex;
- border-radius: 8px !important;
+ border-radius: $border-radius !important;
.status-icon {
margin-top: -2px;
margin-right: 5px;
@@ -130,7 +133,7 @@ h6,
.btn-link {
display: flex;
- border-radius: 8px !important;
+ border-radius: $border-radius !important;
.status-icon {
margin-top: -2px;
margin-right: 5px;
diff --git a/src/assets/styles/bmc/_sila/_buttons.scss b/src/assets/styles/bmc/_sila/_buttons.scss
index f31a8657..49d8e642 100644
--- a/src/assets/styles/bmc/_sila/_buttons.scss
+++ b/src/assets/styles/bmc/_sila/_buttons.scss
@@ -134,6 +134,8 @@
.btn-link {
color: $text-primary;
text-decoration: none !important;
+ border-radius: $border-radius;
+ margin-right: 5px;
&:hover {
background-color: gray("200");
color: theme-color("primary");