more bazarr fixes

This commit is contained in:
gilbN 2019-05-11 14:52:43 +02:00
parent 9f2c2bba38
commit 413fd2eac3
2 changed files with 38 additions and 10 deletions

View File

@ -1176,7 +1176,13 @@ i.black.icon {
color: #FFF !important; color: #FFF !important;
background-color: hsla(0, 0%, 0%, 0.8) !important; background-color: hsla(0, 0%, 0%, 0.8) !important;
} }
.ui.menu {
background: rgba(0, 0, 0, 0.25);
}
.ui.segment {
-webkit-box-shadow: none;
box-shadow: none;
}
/* EDIT SERIES/MOVIE MODAL */ /* EDIT SERIES/MOVIE MODAL */
.ui.modal>.header { .ui.modal>.header {
background: #323232; background: #323232;
@ -1361,11 +1367,14 @@ a.ui.active.label:hover, a.ui.labels .active.label:hover {
} }
/* LOGS PAGE */ /* LOGS PAGE */
table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd { table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
background-color: hsla(0, 0%, 100%, 0.15); background-color: transparent;
} }
table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover { table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
background-color: hsla(0, 0%, 100%, .25); background-color: hsla(0, 0%, 100%, .25);
} }
table.dataTable tbody tr {
background-color: transparent;
}
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate { .dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
color: #ffffff; color: #ffffff;
} }
@ -1375,9 +1384,14 @@ table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
.dataTables_wrapper .dataTables_paginate .paginate_button { .dataTables_wrapper .dataTables_paginate .paginate_button {
color: #FFF !important; color: #FFF !important;
} }
table.dataTable.no-footer {
border-bottom: none;
}
table.dataTable thead th, table.dataTable thead td {
border-bottom: none;
}
/* SCAN POPUP */ /* SCAN POPUP */
.noty_theme__semanticui.noty_type__info, .noty_theme__semanticui.noty_type__information { .noty_theme__semanticui.noty_type__info, .noty_theme__semanticui.noty_type__information {
background-color: #191a1c; background-color: #191a1c !important;
color: #FFF; color: #FFF !important;
box-shadow: 0 0 0 1px #00000000 inset, 0 0 0 0 transparent;
} }

View File

@ -1052,7 +1052,10 @@ a.ui.labels .label:hover, a.ui.label:hover {
border: 0 solid transparent; border: 0 solid transparent;
background: transparent !important; background: transparent !important;
} }
.ui.segment {
-webkit-box-shadow: none;
box-shadow: none;
}
/* SEARCH BAR */ /* SEARCH BAR */
.prompt { .prompt {
background-color: rgba(0, 0, 0, .25) !important; background-color: rgba(0, 0, 0, .25) !important;
@ -1119,6 +1122,9 @@ i.black.icon {
color: #FFF !important; color: #FFF !important;
background-color: hsla(0, 0%, 0%, 0.8) !important; background-color: hsla(0, 0%, 0%, 0.8) !important;
} }
.ui.menu {
background: rgba(0, 0, 0, 0.25);
}
/* EDIT SERIES/MOVIE MODAL */ /* EDIT SERIES/MOVIE MODAL */
.ui.modal>.header { .ui.modal>.header {
@ -1307,17 +1313,25 @@ a.ui.active.label:hover, a.ui.labels .active.label:hover {
} }
/* LOGS PAGE */ /* LOGS PAGE */
table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd { table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
background-color: hsla(0, 0%, 100%, 0.15); background-color: transparent;
} }
table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover { table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
background-color: hsla(0, 0%, 100%, .25); background-color: hsla(0, 0%, 100%, .25);
} }
table.dataTable tbody tr {
background-color: transparent;
}
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate { .dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
color: #ffffff; color: #ffffff;
} }
table.dataTable.no-footer {
border-bottom: none;
}
table.dataTable thead th, table.dataTable thead td {
border-bottom: none;
}
/* SCAN POPUP */ /* SCAN POPUP */
.noty_theme__semanticui.noty_type__info, .noty_theme__semanticui.noty_type__information { .noty_theme__semanticui.noty_type__info, .noty_theme__semanticui.noty_type__information {
background-color: #191a1c; background-color: #191a1c !important;
color: #FFF; color: #FFF !important;
box-shadow: 0 0 0 1px #00000000 inset, 0 0 0 0 transparent;
} }