css refactoring

This commit is contained in:
Devaev Maxim
2018-11-24 04:41:25 +03:00
parent 97d8d6ea4c
commit 6c9372a8ff
13 changed files with 133 additions and 107 deletions

View File

@@ -1,12 +1,12 @@
div.progress {
background-color: var(--bg-color-selected);
background-color: var(--cs-progress-default-bg);
height: 1.5em;
width: 100%;
position: relative;
}
div.progress:before {
color: var(--fg-color-intensive);
color: var(--cs-progress-default-fg);
content: attr(data-label);
font-size: 0.8em;
position: absolute;
@@ -17,7 +17,7 @@ div.progress:before {
}
div.progress span.progress-value {
background-color: var(--bg-color-intensive);
background-color: var(--cs-progress-bar-bg);
display: inline-block;
height: 100%;
}