1
0
Fork 0
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:
Richard Wei 2021-10-08 14:59:01 +13:00 committed by GitHub
parent 1b0e58a4e8
commit 685552a661
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 4 deletions

View file

@ -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;
}