Browse Source

chart fixes and animation fix

pull/110/head^2
Marius 5 years ago
parent
commit
8454191f9a
  1. 33
      CSS/themes/resilio-sync/resilio-base.css

33
CSS/themes/resilio-sync/resilio-base.css

@ -173,10 +173,13 @@ UL.jqueryFileTree A,
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .2);
box-shadow: 0 6px 12px rgba(0, 0, 0, .2);
}
.dropdown-menu li a:focus, .dropdown-menu li a:hover {
.dropdown-menu li a:focus,
.dropdown-menu li a:hover {
background-color: rgb(255 255 255 / 8%);
color: var(--text-hover);
}
.sync-level .add-folder-mode .option-text {
color: var(--text-hover);
}
@ -212,6 +215,10 @@ button.selectpicker.btn-default {
background: rgb(0 0 0 / 50%) !important;
}
.animating {
background-color: transparent;
}
/* ICONS */
.mycon.mycon-folder-rw,
.mycon.mycon-folder-owner,
@ -433,9 +440,11 @@ ul.jqueryFileTree a:hover {
background-color: rgb(0 0 0 / 25%);
border-bottom: 1px solid rgb(255 255 255 / 10%);
}
.section-header {
border-bottom: 1px solid rgb(255 255 255 / .1);
}
/* FOOTER */
#sync-core-state {
background-color: rgb(0 0 0 / 50%);
@ -480,10 +489,22 @@ ul.jqueryFileTree a:hover {
background: var(--modal-bg-color);
}
.c3 {
filter: invert(1) !important;
#statusPanel .chart-c3 .c3-tooltip {
background-color: #000;
opacity: .7;
border-radius: 4px;
box-shadow: none;
}
.c3-grid line {
stroke: var(--text);
}
.c3 text {
fill: var(--text);
}
/* SETTINGS */
.settings-tabs-wrapper .settings-tabs-buttons .left-nav-button.active {
background-color: rgb(0 0 0 / 25%);
@ -528,10 +549,12 @@ ul.jqueryFileTree a:hover {
text-decoration: underline;
color: var(--text-hover);
}
#my-devices .my-devices .info-button:hover {
background-color: var(--button-color-hover);
color: var(--button-text);
}
/* BUTTONS */
.btn,
#support-tab #page-feedback-form .back-button {
@ -593,18 +616,22 @@ ul.jqueryFileTree a:hover {
background-color: rgb(255 255 255 / 8%);
color: var(--text-hover);
}
.table>thead>tr>th {
vertical-align: bottom;
border-bottom: 1px solid rgb(255 255 255 / 10%);
}
.table.table-bordered-header thead tr th {
background-color: #fff;
border-right: 1px solid rgb(255 255 255 / 0.1) !important;
}
.tableScrollContainer .table thead tr th {
background: var(--main-bg-color) !important;
}
/* PLACEHOLDER TEXT */
::placeholder {
color: var(--text) !important;

Loading…
Cancel
Save