Browse Source

First attempt at fixing Duplicacy charts

Tried doing some chart fixes. The graph picker on the Storage tab is still pending, along with the mobile sidemenu. Might need a few more iterations
pull/103/head
rg9400 5 years ago
committed by GitHub
parent
commit
052ee80b8e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 26
      CSS/themes/duplicacy/duplicacy-base.css

26
CSS/themes/duplicacy/duplicacy-base.css

@ -95,14 +95,21 @@ body,
} }
/* CHARTS */ /* CHARTS */
#chartStorages, .ct-label {
#chartBackups { fill: var(--text);
filter: invert(100); color: var(--text);
} }
.ct-label { .ct-grid {
fill: #000; stroke: #777;
color: #000; }
.tab-content {
border-color: transparent !important;
}
.vis-labelset .vis-label .vis-inner {
color: var(--text);
} }
/* NAVBAR */ /* NAVBAR */
@ -342,7 +349,8 @@ div>div>div.modal-footer>button.btn.btn-default.pull-left:hover,
.table>thead>tr.active>th, .table>thead>tr.active>th,
.table>thead>tr>td.active, .table>thead>tr>td.active,
.table>thead>tr>th.active, .table>thead>tr>th.active,
.fixed-header th { .fixed-header th,
row-clickable.active {
background-color: rgb(0 0 0 / 25%); background-color: rgb(0 0 0 / 25%);
} }
@ -356,10 +364,6 @@ hr {
border-top: 1px solid rgb(255 255 255 / 20%); border-top: 1px solid rgb(255 255 255 / 20%);
} }
.row-clickable.active {
background-color: hsla(0,0%,100%,.08);
}
.list-group-item{ .list-group-item{
background-color: transparent; background-color: transparent;
} }

Loading…
Cancel
Save