Updated missing stuff

This commit is contained in:
Marek Guráň 2023-08-07 10:17:25 +02:00 committed by GitHub
parent e137bb67e9
commit ac019d6eff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 6 deletions

View File

@ -229,7 +229,7 @@ hr {
}
.sidebar-brand-text {
color: <?php echo $textColor; ?>;
color: <?php echo $primaryColor; ?>;
}
.ra-raspap:before {
@ -412,6 +412,10 @@ color: <?php echo $textColor; ?>; !important
color: <?php echo $backgroundColor; ?>;
}
.progress-bar.bg-success {
background-color: <?php echo $primaryColor; ?>!important;
}
.progress .progress-bar {
padding-left: 5px;
}
@ -436,11 +440,6 @@ color: <?php echo $textColor; ?>; !important
color: #d2d2d2 !important;
}
.logoutput {
background-color: <?php echo $backgroundColor; ?>;
border-color: transparent;
}
.custom-control-input:checked ~ .custom-control-label::before {
background-color: <?php echo $secondaryColor; ?>;
}
@ -522,6 +521,8 @@ input.btn.btn-success:hover {
.logoutput {
border-radius: 18px!important;
background-color: <?php echo $backgroundColor; ?>;
border: 1px solid <?php echo $primaryColor; ?>!important;
}
.btn-sm {
@ -579,3 +580,8 @@ a.scroll-to-top.rounded {
a.scroll-to-top.rounded i.fas.fa-angle-up {
color: <?php echo $textColor; ?>;
}
.btn.btn-sm.btn-outline-secondary.rounded-right {
border: 1px solid <?php echo $secondaryColor; ?>;
background-color: <?php echo $primaryColor; ?>;
}