123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808 |
- /*
- Darktheme CSS
- This file contains the CSS for the dark theme.
- This will override the default CSS (white theme) for semantic UI
- */
- body.darkTheme {
- background-color: var(--theme_bg);
- color: var(--text_color);
- }
- body.darkTheme h1,
- body.darkTheme h2,
- body.darkTheme h3,
- body.darkTheme h4,
- body.darkTheme h5,
- body.darkTheme h6,
- body.darkTheme a {
- color: var(--text_color);
- }
- body.darkTheme .ui.header {
- color: var(--text_color) !important;
- }
- body.darkTheme p,
- body.darkTheme span{
- color: var(--text_color_secondary);
- }
- body.darkTheme .ui.secondary.menu .dropdown.item:hover,
- body.darkTheme .ui.secondary.menu .link.item:hover,
- body.darkTheme .ui.secondary.menu a.item:hover {
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.basic.white.icon.button {
- background-color: transparent !important;
- border: none !important;
- }
- body.darkTheme .ui.basic.white.icon.button:hover {
- border: none !important;
- opacity: 0.8;
- }
- body.darkTheme .ui.basic.white.icon.button:disabled {
- border: none !important;
- opacity: 0.5;
- }
- body.darkTheme .ui.basic.buttons .button i.icon {
- color: #ffffff !important;
- }
- body.darkTheme .ui.basic.button:not(.red) {
- color: #ffffff !important;
- border: 1px solid var(--button_border_color) !important;
- }
- body.darkTheme .ui.basic.button:not(.red):hover {
- border: 1px solid var(--button_border_color) !important;
- background-color: var(--theme_bg) !important;
- opacity: 0.8;
- }
- body.darkTheme .ui.basic.button.red:hover {
- background-color: #380a0a !important;
- opacity: 0.8;
- }
- body.darkTheme .ui.basic.button:disabled {
- border: none !important;
- background-color: transparent !important;
- opacity: 0.5;
- }
- body.darkTheme .ui.basic.button:focus,
- body.darkTheme .ui.basic.buttons .button:focus {
- background: transparent !important;
- background-color: transparent !important;
- border: none !important;
- }
- body.darkTheme .ui.table thead th,
- body.darkTheme .ui.table tbody td,
- body.darkTheme .ui.table tfoot td {
- color: #ffffff !important;
- }
- body.darkTheme .ui.input input,
- body.darkTheme .ui.input input::placeholder,
- body.darkTheme .ui.input input:focus,
- body.darkTheme .ui.input input:active {
- color: #ffffff !important;
- border-color: #ffffff !important;
- }
- body.darkTheme .ui.input input {
- background-color: var(--theme_bg_active) !important;
- border: 1px solid var(--button_border_color) !important;
- }
- body.darkTheme .ui.input input:focus,
- body.darkTheme .ui.input input:active {
- border-color: var(--theme_highlight) !important;
- }
- body.darkTheme .ui.input input::placeholder {
- opacity: 0.7;
- }
- body.darkTheme .ui.label,
- body.darkTheme .ui.label .detail,
- body.darkTheme .ui.label .icon {
- color: #ffffff !important;
- }
- body.darkTheme .advanceoptions .title {
- color: var(--text_color_secondary) !important;
- }
- body.darkTheme .ui.toggle.checkbox input ~ .box,
- body.darkTheme .ui.toggle.checkbox input ~ label,
- body.darkTheme .ui.toggle.checkbox input ~ label:focus {
- color: var(--text_color_secondary) !important;
- }
- body.darkTheme .ui.toggle.checkbox input ~ label::before{
- background-color: var(--theme_bg_secondary) !important;
- }
- body.darkTheme .ui.toggle.checkbox input:checked ~ label::before{
- background-color: var(--theme_highlight) !important;
- }
- #sidemenuBtn{
- border: 1px solid var(--button_border_color) !important;
- }
- .toolbar{
- background-color: var(--theme_bg) !important;
- color: var(--text_color) !important;
- border: 1px solid var(--divider_color) !important;
- }s
- body.darkTheme .ui.segment:not(.basic) {
- background-color: var(--theme_bg) !important;
- color: var(--text_color) !important;
- border: 1px solid transparent !important;
- }
- body.darkTheme .ui.segment{
- background-color: transparent !important;
- color: var(--text_color) !important;
- border: 1px solid transparent !important;
- }
- body.darkTheme .sub.header {
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.radio.defaultsite.checkbox label {
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.radio.defaultsite.checkbox label small {
- color: var(--text_color_secondary) !important;
- }
- body.darkTheme .ui.form .field input{
- color: var(--text_color) !important;
- background-color: var(--theme_bg_active) !important;
- border-color: var(--button_border_color) !important;
- }
- body.darkTheme .ui.form .field input::placeholder,
- body.darkTheme .ui.form .field input:focus,
- body.darkTheme .ui.form .field input:active {
- border-color: var(--theme_highlight) !important;
- }
- body.darkTheme .ui.form .field input::placeholder {
- opacity: 0.7;
- }
- body.darkTheme .ui.form .field label,
- body.darkTheme .ui.form .field .ui.checkbox input:checked ~ label {
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.basic.label {
- background-color: var(--theme_bg_secondary) !important;
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.form .grouped.fields label {
- color: var(--text_color) !important;
- }
- /*
- HTTP Proxy Table
- */
- body.darkTheme .ui.table{
- background-color: transparent !important;
- }
- body.darkTheme .ui.celled.sortable.unstackable.compact.table thead th,
- body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td,
- body.darkTheme .ui.celled.sortable.unstackable.compact.table tfoot td {
- background-color: var(--theme_bg) !important;
- color: var(--text_color) !important;
- border-color: var(--divider_color) !important;
- }
- body.darkTheme .ui.celled.sortable.unstackable.compact.table thead th {
- background-color: var(--theme_bg_secondary) !important;
- }
- body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody tr:hover {
- background-color: var(--theme_bg_hover) !important;
- }
- body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td a {
- color: var(--link_color) !important;
- }
- body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td a:hover {
- color: var(--link_hover_color) !important;
- }
- body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td small {
- color: var(--text_color_secondary) !important;
- }
- body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td .ui.toggle.checkbox input ~ .box,
- body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td .ui.toggle.checkbox input ~ label,
- body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td .ui.toggle.checkbox input ~ label:focus {
- color: var(--text_color_secondary) !important;
- }
- body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td .ui.toggle.checkbox input ~ label::before {
- background-color: var(--theme_bg_secondary) !important;
- }
- body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td .ui.toggle.checkbox input:checked ~ label::before {
- background-color: var(--theme_highlight) !important;
- }
- body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td .ui.circular.mini.basic.icon.button {
- color: var(--button_color) !important;
- border: 1px solid var(--button_border_color) !important;
- }
- body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td .ui.circular.mini.basic.icon.button:hover {
- background-color: var(--button_hover_bg) !important;
- color: var(--button_hover_color) !important;
- border: 1px solid var(--button_border_color) !important;
- }
- body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td .ui.circular.mini.red.basic.icon.button {
- color: var(--button_red_color) !important;
- border: 1px solid var(--button_red_border_color) !important;
- }
- body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td .ui.circular.mini.red.basic.icon.button:hover {
- background-color: #380a0a !important;
- color: var(--button_red_hover_color) !important;
-
- }
- body.darkTheme .ui.basic.small.icon.circular.button {
- color: var(--button_color) !important;
- border: 1px solid var(--button_border_color) !important;
- }
- body.darkTheme .ui.basic.small.icon.circular.button:hover {
- background-color: var(--button_hover_bg) !important;
- color: var(--button_hover_color) !important;
- border: 1px solid var(--button_border_color) !important;
- opacity: 0.8;
- }
- body.darkTheme .ui.checkbox input ~ .box,
- body.darkTheme .ui.checkbox input ~ label,
- body.darkTheme .ui.checkbox input ~ label:focus {
- color: var(--text_color_secondary) !important;
- }
- body.darkTheme .ui.basic.advance.segment {
- background-color: var(--theme_bg) !important;
- color: var(--text_color) !important;
- border: 1px solid var(--divider_color) !important;
- }
- body.darkTheme .ui.endpointAdvanceConfig.accordion .title {
- color: var(--text_color) !important;
- }
- body.darkTheme .RateLimit input {
- border-color: var(--theme_highlight) !important;
- }
- /*
- Virtual Directorie Table
- */
- body.darkTheme .ui.fluid.search.selection.dropdown {
- background-color: var(--theme_bg) !important;
- color: var(--text_color) !important;
- border-color: var(--divider_color) !important;
- }
- body.darkTheme .ui.fluid.search.selection.dropdown .menu {
- background-color: var(--theme_bg) !important;
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.fluid.search.selection.dropdown .menu .item {
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.selection.dropdown .menu > .item {
- border-top: 1px solid var(--divider_color) !important;
- }
- body.darkTheme .ui.selection.active.dropdown .menu {
- border-color: var(--divider_color) !important;
- }
- body.darkTheme .ui.fluid.search.selection.dropdown .menu .item:hover {
- background-color: var(--theme_bg_hover) !important;
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.fluid.search.selection.dropdown .menu .item.active.selected {
- background-color: var(--theme_highlight) !important;
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.fluid.search.selection.dropdown .search {
- background-color: var(--theme_bg) !important;
- color: var(--text_color) !important;
- border-color: transparent !important;
- }
- body.darkTheme .ui.fluid.search.selection.dropdown .text {
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.fluid.search.selection.dropdown .dropdown.icon {
- color: var(--text_color) !important;
- }
- /*
- New Proxy Rule
- */
- body.darkTheme .ui.horizontal.divider.transition.visible {
- color: var(--text_color) !important;
- }
- body.darkTheme #basicAuthCredPassword, body.darkTheme #basicAuthCredUsername {
- color: var(--text_color) !important;
- background-color: var(--theme_bg_active) !important;
- border: 1px solid var(--button_border_color) !important;
- }
- body.darkTheme #rules .field label {
- color: var(--text_color) !important;
- }
- body.darkTheme #rules .field .ui.selection.dropdown {
- background-color: var(--theme_bg_primary) !important;
- color: var(--text_color) !important;
- border-color: transparent !important;
- }
- body.darkTheme #rules .field .ui.selection.dropdown .menu {
- background-color: var(--theme_bg) !important;
- color: var(--text_color) !important;
- }
- body.darkTheme #rules .field .ui.selection.dropdown .menu .item {
- color: var(--text_color) !important;
- }
- body.darkTheme #rules .field .ui.selection.dropdown .menu .item:hover {
- background-color: var(--theme_bg_hover) !important;
- color: var(--text_color) !important;
- }
- body.darkTheme #rules .field .ui.selection.dropdown .menu .item.active.selected {
- background-color: var(--theme_highlight) !important;
- color: var(--text_color) !important;
- }
- body.darkTheme #rules .field .ui.selection.dropdown .text {
- color: var(--text_color) !important;
- }
- body.darkTheme #rules .field small {
- color: var(--text_color_secondary) !important;
- }
- /*
- Stream Proxy
- */
- body.darkTheme #streamproxy {
- background-color: var(--theme_bg) !important;
- color: var(--text_color) !important;
- border: 1px solid var(--divider_color) !important;
- }
- body.darkTheme #proxyTable {
- background-color: transparent !important;
- color: var(--text_color) !important;
- border: 1px solid var(--divider_color) !important;
- }
- body.darkTheme #proxyTable thead th {
- background-color: var(--theme_bg_secondary) !important;
- color: var(--text_color) !important;
- border-color: var(--divider_color) !important;
- }
- body.darkTheme #proxyTable tbody tr td:not(:first-child) {
- background-color: var(--theme_bg) !important;
- color: var(--text_color) !important;
- border-color: var(--divider_color) !important;
- }
- body.darkTheme #proxyTable tbody tr:hover {
- background-color: var(--theme_bg_hover) !important;
- }
- body.darkTheme #proxyTable tbody td .statusText {
- color: var(--text_color_secondary) !important;
- }
- body.darkTheme #proxyTable tbody td .ui.basic.mini.circular.icon.button {
- color: var(--button_color) !important;
- border: 1px solid var(--button_border_color) !important;
- }
- body.darkTheme #proxyTable tbody td .ui.basic.mini.circular.icon.button:hover {
- background-color: var(--button_hover_bg) !important;
- color: var(--button_hover_color) !important;
- border: 1px solid var(--button_border_color) !important;
- }
- body.darkTheme #proxyTable tbody td .ui.circular.red.basic.mini.icon.button {
- color: var(--button_red_color) !important;
- border: 1px solid var(--button_red_border_color) !important;
- }
- body.darkTheme #proxyTable tbody td .ui.circular.red.basic.mini.icon.button:hover {
- background-color: #380a0a !important;
- color: var(--button_red_hover_color) !important;
- }
- /*
- Redirect
- */
- body.darkTheme #redirectset .ui.sortable.unstackable.celled.table thead th {
- background-color: var(--theme_bg_secondary) !important;
- color: var(--text_color) !important;
- border-color: var(--divider_color) !important;
- }
- body.darkTheme #redirectset .ui.sortable.unstackable.celled.table tbody tr td {
- background-color: var(--theme_bg) !important;
- color: var(--text_color) !important;
- border-color: var(--divider_color) !important;
- }
- body.darkTheme #redirectset .ui.sortable.unstackable.celled.table tbody tr:hover {
- background-color: var(--theme_bg_hover) !important;
- }
- body.darkTheme #redirectset .ui.sortable.unstackable.celled.table tbody td .icon {
- color: var(--icon_color) !important;
- }
- body.darkTheme #redirectset .ui.sortable.unstackable.celled.table tbody td .ui.button {
- color: var(--button_color) !important;
- border: 1px solid var(--button_border_color) !important;
- }
- body.darkTheme #redirectset .ui.sortable.unstackable.celled.table tbody td .ui.button:hover {
- background-color: var(--button_hover_bg) !important;
- color: var(--button_hover_color) !important;
- border: 1px solid var(--button_border_color) !important;
- }
- body.darkTheme #redirectset .ui.sortable.unstackable.celled.table tbody td .ui.red.button {
- color: var(--button_red_color) !important;
- border: 1px solid var(--button_red_border_color) !important;
- }
- body.darkTheme #redirectset .ui.sortable.unstackable.celled.table tbody td .ui.red.button:hover {
- background-color: #380a0a !important;
- color: var(--button_red_hover_color) !important;
- }
- body.darkTheme #redirectset .ui.checkbox input:checked ~ label,
- body.darkTheme #redirectset .ui.checkbox input:checked ~ label small,
- body.darkTheme #redirectset .ui.checkbox input:checked ~ label a {
- color: var(--text_color_secondary) !important;
- }
- body.darkTheme .ui.message {
- color: var(--text_color) !important;
- background-color: var(--theme_bg_active) !important;
- border: 1px solid var(--message_border_color) !important;
- }
- /*
- Access Rules
- */
- /* Access Rule Selector */
- body.darkTheme .ui.selection.fluid.dropdown#accessRuleSelector {
- background-color: var(--theme_bg) !important;
- color: var(--text_color) !important;
- border-color: transparent !important;
- }
- body.darkTheme .ui.selection.fluid.dropdown#accessRuleSelector .menu {
- background-color: var(--theme_bg) !important;
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.selection.fluid.dropdown#accessRuleSelector .menu .item {
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.selection.fluid.dropdown#accessRuleSelector .menu .item:hover {
- background-color: var(--theme_bg_hover) !important;
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.selection.fluid.dropdown#accessRuleSelector .menu .item.active.selected {
- background-color: var(--theme_highlight) !important;
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.selection.fluid.dropdown#accessRuleSelector .text {
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.selection.fluid.dropdown#accessRuleSelector .dropdown.icon {
- color: var(--text_color) !important;
- }
- /* Tab Menu in access control */
- body.darkTheme .ui.top.attached.tabular.menu {
- background-color: transparent !important;
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.top.attached.tabular.menu .item {
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.top.attached.tabular.menu .item:hover {
- background-color: var(--theme_bg_hover) !important;
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.top.attached.tabular.menu .item.active {
- background-color: var(--theme_bg_primary) !important;
- color: var(--text_color) !important;
- }
- /* Tables in access control */
- body.darkTheme #access .ui.unstackable.basic.celled.table{
- border: 1px solid var(--divider_color) !important;
- }
- body.darkTheme #access .ui.unstackable.basic.celled.table thead th {
- background-color: var(--theme_bg_secondary) !important;
- color: var(--text_color) !important;
- border-color: var(--divider_color) !important;
- }
- body.darkTheme #access .ui.unstackable.basic.celled.table tbody tr td {
- background-color: var(--theme_bg) !important;
- color: var(--text_color) !important;
- border-color: var(--divider_color) !important;
- }
- body.darkTheme #access .ui.unstackable.basic.celled.table tbody tr:hover {
- background-color: var(--theme_bg_hover) !important;
- }
- body.darkTheme #access .ui.unstackable.basic.celled.table tbody td .icon {
- color: var(--icon_color) !important;
- }
- body.darkTheme #access .ui.unstackable.basic.celled.table tbody td .ui.button {
- color: var(--button_color) !important;
- border: 1px solid var(--button_border_color) !important;
- }
- body.darkTheme #access .ui.unstackable.basic.celled.table tbody td .ui.button:hover {
- background-color: var(--button_hover_bg) !important;
- color: var(--button_hover_color) !important;
- border: 1px solid var(--button_border_color) !important;
- }
- body.darkTheme #access .ui.unstackable.basic.celled.table tbody td .ui.red.button {
- color: var(--button_red_color) !important;
- border: 1px solid var(--button_red_border_color) !important;
- }
- body.darkTheme #access .ui.unstackable.basic.celled.table tbody td .ui.red.button:hover {
- background-color: #380a0a !important;
- color: var(--button_red_hover_color) !important;
- }
- /* Fixing the color of the sel;ector label in country selector */
- body.darkTheme .ui.search.multiple.selection.dropdown .ui.label {
- background-color: var(--theme_bg_secondary) !important;
- color: var(--text_color) !important;
- }
- /* Quick band IP table *(ipTable) */
- body.darkTheme #ipTable {
- background-color: transparent !important;
- color: var(--text_color) !important;
- border: 1px solid var(--divider_color) !important;
- }
- body.darkTheme #ipTable thead th {
- background-color: var(--theme_bg_secondary) !important;
- color: var(--text_color) !important;
- border-color: var(--divider_color) !important;
- }
- body.darkTheme #ipTable tbody tr td {
- background-color: var(--theme_bg) !important;
- color: var(--text_color) !important;
- border-color: var(--divider_color) !important;
- }
- body.darkTheme #ipTable tbody tr:hover {
- background-color: var(--theme_bg_hover) !important;
- }
- body.darkTheme #ipTable tbody td .ui.basic.red.tiny.icon.button {
- color: var(--button_red_color) !important;
- border: 1px solid var(--button_red_border_color) !important;
- }
- body.darkTheme #ipTable tbody td .ui.basic.red.tiny.icon.button:hover {
- background-color: #380a0a !important;
- color: var(--button_red_hover_color) !important;
- }
- /*
- TLS / SSL Certificates
- */
- body.darkTheme .ui.selection.dropdown#defaultCA {
- background-color: var(--theme_bg) !important;
- color: var(--text_color) !important;
- border-color: transparent !important;
- }
- body.darkTheme .ui.selection.dropdown#defaultCA .menu {
- background-color: var(--theme_bg) !important;
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.selection.dropdown#defaultCA .menu .item {
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.selection.dropdown#defaultCA .menu .item:hover {
- background-color: var(--theme_bg_hover) !important;
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.selection.dropdown#defaultCA .menu .item.active.selected {
- background-color: var(--theme_highlight) !important;
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.selection.dropdown#defaultCA .default.text {
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.selection.dropdown#defaultCA .dropdown.icon {
- color: var(--text_color) !important;
- }
- /*
- ZeroTier
- */
- body.darkTheme #gan .ui.list .item .icon {
- color: var(--icon_color) !important;
- }
- body.darkTheme #gan .ui.list .item .content .header {
- color: var(--text_color) !important;
- }
- body.darkTheme #gan .ui.list .item .content .description {
- color: var(--text_color_secondary) !important;
- }
- body.darkTheme #gan .clickable.iprange.active {
- background-color: var(--theme_highlight) !important;
- }
- body.darkTheme #gan thead th {
- background-color: var(--theme_bg_secondary) !important;
- color: var(--text_color) !important;
- border-color: var(--divider_color) !important;
- }
- /*
- Uptime Monitor
- */
- body.darkTheme #utm .standardContainer {
- background-color: var(--theme_bg) !important;
- color: var(--text_color) !important;
- border: 1px solid var(--divider_color) !important;
- }
- body.darkTheme #utm .standardContainer .padding.statusDot {
- background-color: var(--theme_bg) !important;
- border: 0.2px solid var(--theme_bg_primary) !important;
- }
- body.darkTheme .ui.utmloading.segment {
- background-color: var(--theme_bg) !important;
- color: var(--text_color) !important;
- border: 1px solid var(--divider_color) !important;
- }
- body.darkTheme .ui.utmloading.segment .ui.inverted.dimmer {
- background-color: var(--theme_bg) !important;
- color: var(--text_color) !important;
- }
- body.darkTheme .ui.utmloading.segment .ui.inverted.dimmer .ui.text.loader {
- color: var(--text_color) !important;
- }
- /*
- Tool overlay css override
- */
- body.darkTheme .picker-wrap.popup .picker {
- background: var(--theme_bg_primary) !important;
- border: 1px solid var(--button_border_color) !important;
- }
- body.darkTheme .picker-wrap.popup .picker .picker-d-b {
- background: var(--theme_bg) !important;
- }
- body.darkTheme .picker-wrap.popup .picker .picker-d-d.picker-d-td{
- background: var(--theme_highlight) !important;
- color: var(--text_color) !important;
- }
- body.darkTheme .picker-p {
- background-color: var(--theme_bg_primary) !important;
- color: var(--text_color) !important;
- }
- body.darkTheme .picker-p .picker-b,
- body.darkTheme .picker-p .picker-n {
- background-color: var(--theme_bg_primary) !important;
- color: var(--text_color) !important;
- }
- body.darkTheme .picker-p .picker-m,
- body.darkTheme .picker-p .picker-y {
- background-color: var(--theme_bg) !important;
- color: var(--text_color) !important;
- }
|