mirror of
https://github.com/cactuzhead/Advanced-Progress-Bars.git
synced 2026-07-22 05:42:10 +00:00
217 lines
No EOL
4 KiB
CSS
217 lines
No EOL
4 KiB
CSS
:root {
|
|
color-scheme: light dark;
|
|
}
|
|
|
|
.kofi-button {
|
|
flex: 1 0;
|
|
height: 22px;
|
|
height: auto;
|
|
margin: 0 10px;
|
|
width: 140px;
|
|
}
|
|
|
|
.header-highlight {
|
|
color: #689DED;
|
|
font-size: large;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.highlight-text {
|
|
color: light-dark(#ec7e83, #71d1c4);
|
|
}
|
|
|
|
.custom-textbox {
|
|
width: 60px;
|
|
}
|
|
|
|
.custom-container {
|
|
align-Items: center;
|
|
border-Radius: 7px;
|
|
border: 1px solid #689ded;
|
|
display: flex;
|
|
justify-Content: space-between;
|
|
margin: 0px;
|
|
}
|
|
|
|
.custom-container img {
|
|
padding-right: 1em;
|
|
}
|
|
|
|
.custom-container p {
|
|
color: #8fa0ba;
|
|
flex: 1 1 auto;
|
|
min-width: 10px;
|
|
overflow: hidden;
|
|
padding-left: 1em;
|
|
white-space: wrap;
|
|
/* width: 160px; */
|
|
}
|
|
|
|
.progressBar-container {
|
|
border-radius: 7px;
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
justify-content: center;
|
|
margin-top: 7px;
|
|
overflow: hidden;
|
|
padding: 5px;
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
|
|
.progressBar-text-container {
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
font-size: 0.75rem;
|
|
justify-content: space-between;
|
|
overflow: hidden;
|
|
padding: 0 0 0.3em 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.progressBar-title {
|
|
color: #8fa0ba;
|
|
flex: 1 1 0;
|
|
min-width: 10px;
|
|
overflow: hidden;
|
|
padding: 0 0.3em;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
width: 10px;
|
|
}
|
|
|
|
.progressBar-percentage {
|
|
color: #c1d7f9;
|
|
flex: 0 0 auto;
|
|
padding: 0 0 0 0.3em;
|
|
text-align: right;
|
|
}
|
|
|
|
.progressBar-value {
|
|
color: #8fa0ba;
|
|
flex: 0 0 auto;
|
|
padding: 0 0.3em;
|
|
text-align: right;
|
|
}
|
|
|
|
.progressBar-completed {
|
|
color: #c1d7f9;
|
|
font-size: 0.75em;
|
|
font-weight: 500;
|
|
overflow: hidden;
|
|
padding: 0 0 0 0.3em;
|
|
text-align: center;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
width: 100%;
|
|
}
|
|
|
|
.progressBar-subtask {
|
|
align-items: center;
|
|
flex: 0 1 auto;
|
|
font-size: 0.6em;
|
|
font-weight: 500;
|
|
justify-content: center;
|
|
margin: 0.3em 0.3em 0 0;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.progressBar-subtask-completed {
|
|
align-items: center;
|
|
flex: 0 1 auto;
|
|
font-size: 0.6em;
|
|
font-weight: 700;
|
|
justify-content: center;
|
|
margin: 0.3em 0.3em 0 0;
|
|
text-align: center;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.progressBar-background {
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
position: relative;
|
|
}
|
|
|
|
.progressBar {
|
|
display: flex;
|
|
justify-Content: space-between;
|
|
margin: 0px;
|
|
align-Items: center;
|
|
}
|
|
|
|
.marks {
|
|
height: 100%;
|
|
left: 0;
|
|
pointer-events: none;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.mark {
|
|
height: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
z-index: 1;
|
|
}
|
|
|
|
.error-container {
|
|
background:#912f3c;
|
|
border-radius: 7px;
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
overflow: hidden;
|
|
padding: 5px;
|
|
position: relative;
|
|
}
|
|
|
|
.error-text-container {
|
|
align-items: center;
|
|
color:#ffffff;
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
font-size: 0.75rem;
|
|
justify-content: space-between;
|
|
padding: 0.3em;
|
|
width: 100%;
|
|
}
|
|
|
|
#APB_tag {
|
|
border-radius: 3px;
|
|
margin-right: 5px;
|
|
overflow: hidden;
|
|
padding: 0 5px;
|
|
font-size: 0.7rem;
|
|
}
|
|
|
|
#APB_notag {
|
|
border-radius: 3px;
|
|
border: 1px solid #912f3c;
|
|
color: #ffffff;
|
|
margin-right: 5px;
|
|
overflow: hidden;
|
|
padding: 0 5px;
|
|
font-size: 0.7rem;
|
|
background: #912f3c;
|
|
}
|
|
|
|
#APB_tasksDisabled {
|
|
border-radius: 3px;
|
|
border: 1px solid #912f3c;
|
|
color: #ffffff;
|
|
margin-right: 5px;
|
|
overflow: hidden;
|
|
padding: 0 5px;
|
|
font-size: 0.7rem;
|
|
background: #912f3c;
|
|
}
|
|
|
|
li.apb-list-item .list-bullet {
|
|
display: none !important;
|
|
} |