mirror of
https://github.com/portainer/portainer.git
synced 2025-08-09 15:55:23 +02:00
fix(wizard): fix wizard not visible in dark theme EE-1800 (#5822)
* fix wizard not visible in dark theme
This commit is contained in:
parent
1b0e58a4e8
commit
685552a661
2 changed files with 11 additions and 4 deletions
|
@ -30,17 +30,17 @@
|
|||
.stepper-item::before {
|
||||
position: absolute;
|
||||
content: '';
|
||||
border-bottom: 5px solid rgb(231, 231, 231);
|
||||
width: 100%;
|
||||
top: 20px;
|
||||
left: -100%;
|
||||
z-index: 2;
|
||||
border-bottom: 5px solid var(--bg-stepper-item-counter);
|
||||
}
|
||||
|
||||
.stepper-item::after {
|
||||
position: absolute;
|
||||
content: '';
|
||||
border-bottom: 5px solid rgb(231, 231, 231);
|
||||
border-bottom: 5px solid var(--bg-stepper-item-counter);
|
||||
width: 100%;
|
||||
top: 20px;
|
||||
left: 0;
|
||||
|
@ -56,13 +56,13 @@
|
|||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 50%;
|
||||
background: rgb(231, 231, 231);
|
||||
background: var(--bg-stepper-item-counter);
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.stepper-item.active {
|
||||
font-weight: bold;
|
||||
background: #fff;
|
||||
background: var(--bg-stepper-item-active);
|
||||
content: none;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue