diff --git a/CSS/themes/duplicacy/duplicacy-base.css b/CSS/themes/duplicacy/duplicacy-base.css index 9b2cb5d2..ed51ec58 100644 --- a/CSS/themes/duplicacy/duplicacy-base.css +++ b/CSS/themes/duplicacy/duplicacy-base.css @@ -67,12 +67,13 @@ body, .card, .category, .card label, +.card .labels p, .card .title, .card .stats, .vis-time-axis .vis-text, .footer .copyright, .navbar-default .navbar-brand { - color: var(--text); + color: var(--text) !important; } .main-panel { @@ -210,7 +211,8 @@ body, border: 1px solid transparent; } -.form-control { +.form-control, +textarea { background-color: rgba(0, 0, 0, .25); color: var(--text); } @@ -219,6 +221,10 @@ body, background-color: rgb(0 0 0 / 50%); } +.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control{ + background-color: rgba(0, 0, 0, .15); +} + #input_s3_provider:focus, #schedule_frequency:focus, #modal_restore_storage:focus, @@ -291,7 +297,8 @@ div>div>div.modal-footer>button.btn.btn-default.pull-left { color: #F44336; } -div>div>div.modal-footer>button.btn.btn-default.pull-left:hover { +div>div>div.modal-footer>button.btn.btn-default.pull-left:hover, +.navbar .navbar-nav > li > a.btn-danger.btn-fill, .btn-danger.btn-fill { border-color: #F44336; color: var(--text-hover); background-color: #F44336; @@ -318,6 +325,10 @@ div>div>div.modal-footer>button.btn.btn-default.pull-left:hover { border-color: var(--button-color-hover); } +.radio-box input:checked ~ .radio-button { + background-color: var(--button-color); +} + /* TABLES */ .table>tbody>tr.active>td, .table>tbody>tr.active>th, @@ -330,7 +341,8 @@ div>div>div.modal-footer>button.btn.btn-default.pull-left:hover { .table>thead>tr.active>td, .table>thead>tr.active>th, .table>thead>tr>td.active, -.table>thead>tr>th.active { +.table>thead>tr>th.active, +.fixed-header th { background-color: rgb(0 0 0 / 25%); } @@ -339,10 +351,24 @@ div>div>div.modal-footer>button.btn.btn-default.pull-left:hover { .table tbody tr>th, .table tbody tr>td, .table tfoot tr>th, -.table tfoot tr>td { +.table tfoot tr>td, +hr { border-top: 1px solid rgb(255 255 255 / 20%); } +.row-clickable.active { + background-color: hsla(0,0%,100%,.08); +} + +.list-group-item{ + background-color: transparent; +} + +.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover { + background-color: var(--accent-color); + border-color: var(--accent-color); +} + /* FOOTER */ .main-panel>.footer { background: rgb(0 0 0 / 0.25); @@ -354,4 +380,4 @@ div>div>div.modal-footer>button.btn.btn-default.pull-left:hover { box-shadow: 0 0 10px 0px #000000; background: var(--modal-bg-color); } -} \ No newline at end of file +}