mirror of
https://github.com/cactuzhead/Advanced-Progress-Bars.git
synced 2026-07-22 05:42:10 +00:00
1.2.0
This commit is contained in:
parent
0fb9dfb9d3
commit
9e63e0b189
4 changed files with 1106 additions and 256 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "advanced-progress-bars",
|
||||
"name": "Advanced Progress Bars",
|
||||
"version": "1.1.4",
|
||||
"version": "1.2.0",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "Progress bars that can change color depending on completion value - fully customizable.",
|
||||
"author": "cactuzhead",
|
||||
|
|
|
|||
42
styles.css
42
styles.css
|
|
@ -57,11 +57,9 @@
|
|||
padding: 5px;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
|
||||
|
||||
min-height: 20px; /* Adjust based on progress bar height */
|
||||
min-height: 20px;
|
||||
overflow: visible; /* Prevent clipping */
|
||||
display: block; /* Ensure block-level behavior */
|
||||
display: block;
|
||||
}
|
||||
|
||||
.progressBar-text-container {
|
||||
|
|
@ -286,8 +284,8 @@ li.apb-list-item .list-bullet {
|
|||
padding: 2px;
|
||||
opacity: 0.5; /* Lower opacity to make less noticeable */
|
||||
filter: grayscale(50%); /* Muted color effect */
|
||||
background-color: transparent; /* Remove default background */
|
||||
border: none; /* Remove border */
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
|
@ -388,7 +386,7 @@ li.apb-list-item .list-bullet {
|
|||
|
||||
.default-container-color-picker-panel {
|
||||
padding: 10px;
|
||||
border: 2px solid light-dark(#45ba69, #5eed89); /* var(--background-modifier-border); */
|
||||
border: 2px solid light-dark(#45ba69, #5eed89);
|
||||
background-color: var(--background-secondary);
|
||||
margin-top: 10px;
|
||||
margin-left: 20px;
|
||||
|
|
@ -406,3 +404,33 @@ li.apb-list-item .list-bullet {
|
|||
.inactive-gear {
|
||||
border: 2px solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.progressBar-dates-container {
|
||||
align-items: center;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
flex-flow: row nowrap;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
font-size: 0.65em;
|
||||
font-weight: 500;
|
||||
/* justify-content: space-between; */
|
||||
overflow: hidden;
|
||||
padding: 0.3em 5px 0.3em 5px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.grouped-progress-bar {
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
overflow: hidden;
|
||||
padding: 5px !important;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.setting-item input[type="color"] {
|
||||
border: 1px solid #363636;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
"1.2.0": "0.15.0",
|
||||
"1.1.4": "0.15.0",
|
||||
"1.1.3": "0.15.0",
|
||||
"1.1.2": "0.15.0",
|
||||
|
|
|
|||
Loading…
Reference in a new issue