From a87c2102c52f3d4e3ae13d8844c8eb093a9b37bd Mon Sep 17 00:00:00 2001 From: rg9400 <39887349+rg9400@users.noreply.github.com> Date: Sun, 11 Oct 2020 12:10:16 -0500 Subject: [PATCH] Duplicacy fixes Fix the active tab indicator for the mobile sidebar, remove transparency on the pinned table header in restore window, *try* to fix the initial state of the "OK" button when trying to mark a job as parallel in the schedule window. Placeholder text is not being differentiated from normal text in input boxes, so that's still pending along with the Schedule Graph navpills. Rest seems to look amazing to me now (up to you if you want to try to handle the multiple layers of cards on Schedule/Backup tabs, though I think it still looks good). --- CSS/themes/duplicacy/duplicacy-base.css | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/CSS/themes/duplicacy/duplicacy-base.css b/CSS/themes/duplicacy/duplicacy-base.css index 4f8fb812..0c2ed4fc 100644 --- a/CSS/themes/duplicacy/duplicacy-base.css +++ b/CSS/themes/duplicacy/duplicacy-base.css @@ -131,12 +131,12 @@ body, } .sidebar .nav li.active>a:before, -.off-canvas-sidebar .nav li.active>a:before, .sidebar .nav li.active>a:after { border-right: 17px solid var(--accent-color); } @media (min-width: 992px) { + .off-canvas-sidebar .nav li.active>a:before, .off-canvas-sidebar .nav li.active>a:after { border-right: 17px solid var(--accent-color); } @@ -289,6 +289,12 @@ textarea { color: var(--button-color); } +.btn-primary:focus { + border-color: var(--button-color); + color: var(--button-color); + background-color: transparent; +} + .btn-primary:hover { border-color: var(--button-color-hover); color: var(--text-hover); @@ -358,11 +364,14 @@ div>div>div.modal-footer>button.btn.btn-default.pull-left:hover, .table>thead>tr.active>th, .table>thead>tr>td.active, .table>thead>tr>th.active, -.fixed-header th, .row-clickable.active { background-color: rgb(0 0 0 / 25%); } +.fixed-header th { + background: var(--main-bg-color); +} + .table thead tr>th, .table thead tr>td, .table tbody tr>th, @@ -404,6 +413,7 @@ color: var(--text); box-shadow: 0 0 10px 0px #000000; background: var(--modal-bg-color); } + .off-canvas-sidebar .nav li.active>a:before, .off-canvas-sidebar .nav > li.active > a:after { border-left: 17px solid var(--accent-color); }