未验证 提交 93984d2e 编写于 作者: C Chris Harris 提交者: GitHub

List group item colors in light and dark modes (#1061)

Co-authored-by: NChris Harris <twoxsquared@gmai.com>
上级 40930a94
......@@ -158,13 +158,23 @@ body:not(.theme-dark) .hide-theme-light {
background: transparent;
}
.list-group-header {
background: $dark-mode-darken;
}
.list-group-item {
color: $dark-mode-text;
border-color: $border-color-transparent;
}
.list-group-header {
background: $dark-mode-darken;
.list-group-item:not(.disabled):not(:disabled) {
color: $dark-mode-text;
}
.list-group-item {
&.disabled,
&:disabled {
color: $gray-600;
}
}
.apexcharts-radialbar-area {
......
......@@ -20,6 +20,31 @@
}
}
.list-group-item {
background-color: rgba(27,125,241,0.02);
}
.list-group-item.active {
background-color: inherit;
border-left: 2px solid $yellow !important;
}
.list-group-item {
&:active,
&:focus,
&:hover{
background-color: inherit;
}
}
.list-group-item {
&.disabled,
&:disabled {
color: $gray-500;
background-color: rgba(27,125,241,0.02);
}
}
.list-bordered {
.list-item {
border-top: 1px solid $border-color;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册