1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2023-10-10 13:37:24 +02:00

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

View File

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