darktheme.css 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808
  1. /*
  2. Darktheme CSS
  3. This file contains the CSS for the dark theme.
  4. This will override the default CSS (white theme) for semantic UI
  5. */
  6. body.darkTheme {
  7. background-color: var(--theme_bg);
  8. color: var(--text_color);
  9. }
  10. body.darkTheme h1,
  11. body.darkTheme h2,
  12. body.darkTheme h3,
  13. body.darkTheme h4,
  14. body.darkTheme h5,
  15. body.darkTheme h6,
  16. body.darkTheme a {
  17. color: var(--text_color);
  18. }
  19. body.darkTheme .ui.header {
  20. color: var(--text_color) !important;
  21. }
  22. body.darkTheme p,
  23. body.darkTheme span{
  24. color: var(--text_color_secondary);
  25. }
  26. body.darkTheme .ui.secondary.menu .dropdown.item:hover,
  27. body.darkTheme .ui.secondary.menu .link.item:hover,
  28. body.darkTheme .ui.secondary.menu a.item:hover {
  29. color: var(--text_color) !important;
  30. }
  31. body.darkTheme .ui.basic.white.icon.button {
  32. background-color: transparent !important;
  33. border: none !important;
  34. }
  35. body.darkTheme .ui.basic.white.icon.button:hover {
  36. border: none !important;
  37. opacity: 0.8;
  38. }
  39. body.darkTheme .ui.basic.white.icon.button:disabled {
  40. border: none !important;
  41. opacity: 0.5;
  42. }
  43. body.darkTheme .ui.basic.buttons .button i.icon {
  44. color: #ffffff !important;
  45. }
  46. body.darkTheme .ui.basic.button:not(.red) {
  47. color: #ffffff !important;
  48. border: 1px solid var(--button_border_color) !important;
  49. }
  50. body.darkTheme .ui.basic.button:not(.red):hover {
  51. border: 1px solid var(--button_border_color) !important;
  52. background-color: var(--theme_bg) !important;
  53. opacity: 0.8;
  54. }
  55. body.darkTheme .ui.basic.button.red:hover {
  56. background-color: #380a0a !important;
  57. opacity: 0.8;
  58. }
  59. body.darkTheme .ui.basic.button:disabled {
  60. border: none !important;
  61. background-color: transparent !important;
  62. opacity: 0.5;
  63. }
  64. body.darkTheme .ui.basic.button:focus,
  65. body.darkTheme .ui.basic.buttons .button:focus {
  66. background: transparent !important;
  67. background-color: transparent !important;
  68. border: none !important;
  69. }
  70. body.darkTheme .ui.table thead th,
  71. body.darkTheme .ui.table tbody td,
  72. body.darkTheme .ui.table tfoot td {
  73. color: #ffffff !important;
  74. }
  75. body.darkTheme .ui.input input,
  76. body.darkTheme .ui.input input::placeholder,
  77. body.darkTheme .ui.input input:focus,
  78. body.darkTheme .ui.input input:active {
  79. color: #ffffff !important;
  80. border-color: #ffffff !important;
  81. }
  82. body.darkTheme .ui.input input {
  83. background-color: var(--theme_bg_active) !important;
  84. border: 1px solid var(--button_border_color) !important;
  85. }
  86. body.darkTheme .ui.input input:focus,
  87. body.darkTheme .ui.input input:active {
  88. border-color: var(--theme_highlight) !important;
  89. }
  90. body.darkTheme .ui.input input::placeholder {
  91. opacity: 0.7;
  92. }
  93. body.darkTheme .ui.label,
  94. body.darkTheme .ui.label .detail,
  95. body.darkTheme .ui.label .icon {
  96. color: #ffffff !important;
  97. }
  98. body.darkTheme .advanceoptions .title {
  99. color: var(--text_color_secondary) !important;
  100. }
  101. body.darkTheme .ui.toggle.checkbox input ~ .box,
  102. body.darkTheme .ui.toggle.checkbox input ~ label,
  103. body.darkTheme .ui.toggle.checkbox input ~ label:focus {
  104. color: var(--text_color_secondary) !important;
  105. }
  106. body.darkTheme .ui.toggle.checkbox input ~ label::before{
  107. background-color: var(--theme_bg_secondary) !important;
  108. }
  109. body.darkTheme .ui.toggle.checkbox input:checked ~ label::before{
  110. background-color: var(--theme_highlight) !important;
  111. }
  112. #sidemenuBtn{
  113. border: 1px solid var(--button_border_color) !important;
  114. }
  115. .toolbar{
  116. background-color: var(--theme_bg) !important;
  117. color: var(--text_color) !important;
  118. border: 1px solid var(--divider_color) !important;
  119. }s
  120. body.darkTheme .ui.segment:not(.basic) {
  121. background-color: var(--theme_bg) !important;
  122. color: var(--text_color) !important;
  123. border: 1px solid transparent !important;
  124. }
  125. body.darkTheme .ui.segment{
  126. background-color: transparent !important;
  127. color: var(--text_color) !important;
  128. border: 1px solid transparent !important;
  129. }
  130. body.darkTheme .sub.header {
  131. color: var(--text_color) !important;
  132. }
  133. body.darkTheme .ui.radio.defaultsite.checkbox label {
  134. color: var(--text_color) !important;
  135. }
  136. body.darkTheme .ui.radio.defaultsite.checkbox label small {
  137. color: var(--text_color_secondary) !important;
  138. }
  139. body.darkTheme .ui.form .field input{
  140. color: var(--text_color) !important;
  141. background-color: var(--theme_bg_active) !important;
  142. border-color: var(--button_border_color) !important;
  143. }
  144. body.darkTheme .ui.form .field input::placeholder,
  145. body.darkTheme .ui.form .field input:focus,
  146. body.darkTheme .ui.form .field input:active {
  147. border-color: var(--theme_highlight) !important;
  148. }
  149. body.darkTheme .ui.form .field input::placeholder {
  150. opacity: 0.7;
  151. }
  152. body.darkTheme .ui.form .field label,
  153. body.darkTheme .ui.form .field .ui.checkbox input:checked ~ label {
  154. color: var(--text_color) !important;
  155. }
  156. body.darkTheme .ui.basic.label {
  157. background-color: var(--theme_bg_secondary) !important;
  158. color: var(--text_color) !important;
  159. }
  160. body.darkTheme .ui.form .grouped.fields label {
  161. color: var(--text_color) !important;
  162. }
  163. /*
  164. HTTP Proxy Table
  165. */
  166. body.darkTheme .ui.table{
  167. background-color: transparent !important;
  168. }
  169. body.darkTheme .ui.celled.sortable.unstackable.compact.table thead th,
  170. body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td,
  171. body.darkTheme .ui.celled.sortable.unstackable.compact.table tfoot td {
  172. background-color: var(--theme_bg) !important;
  173. color: var(--text_color) !important;
  174. border-color: var(--divider_color) !important;
  175. }
  176. body.darkTheme .ui.celled.sortable.unstackable.compact.table thead th {
  177. background-color: var(--theme_bg_secondary) !important;
  178. }
  179. body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody tr:hover {
  180. background-color: var(--theme_bg_hover) !important;
  181. }
  182. body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td a {
  183. color: var(--link_color) !important;
  184. }
  185. body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td a:hover {
  186. color: var(--link_hover_color) !important;
  187. }
  188. body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td small {
  189. color: var(--text_color_secondary) !important;
  190. }
  191. body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td .ui.toggle.checkbox input ~ .box,
  192. body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td .ui.toggle.checkbox input ~ label,
  193. body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td .ui.toggle.checkbox input ~ label:focus {
  194. color: var(--text_color_secondary) !important;
  195. }
  196. body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td .ui.toggle.checkbox input ~ label::before {
  197. background-color: var(--theme_bg_secondary) !important;
  198. }
  199. body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td .ui.toggle.checkbox input:checked ~ label::before {
  200. background-color: var(--theme_highlight) !important;
  201. }
  202. body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td .ui.circular.mini.basic.icon.button {
  203. color: var(--button_color) !important;
  204. border: 1px solid var(--button_border_color) !important;
  205. }
  206. body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td .ui.circular.mini.basic.icon.button:hover {
  207. background-color: var(--button_hover_bg) !important;
  208. color: var(--button_hover_color) !important;
  209. border: 1px solid var(--button_border_color) !important;
  210. }
  211. body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td .ui.circular.mini.red.basic.icon.button {
  212. color: var(--button_red_color) !important;
  213. border: 1px solid var(--button_red_border_color) !important;
  214. }
  215. body.darkTheme .ui.celled.sortable.unstackable.compact.table tbody td .ui.circular.mini.red.basic.icon.button:hover {
  216. background-color: #380a0a !important;
  217. color: var(--button_red_hover_color) !important;
  218. }
  219. body.darkTheme .ui.basic.small.icon.circular.button {
  220. color: var(--button_color) !important;
  221. border: 1px solid var(--button_border_color) !important;
  222. }
  223. body.darkTheme .ui.basic.small.icon.circular.button:hover {
  224. background-color: var(--button_hover_bg) !important;
  225. color: var(--button_hover_color) !important;
  226. border: 1px solid var(--button_border_color) !important;
  227. opacity: 0.8;
  228. }
  229. body.darkTheme .ui.checkbox input ~ .box,
  230. body.darkTheme .ui.checkbox input ~ label,
  231. body.darkTheme .ui.checkbox input ~ label:focus {
  232. color: var(--text_color_secondary) !important;
  233. }
  234. body.darkTheme .ui.basic.advance.segment {
  235. background-color: var(--theme_bg) !important;
  236. color: var(--text_color) !important;
  237. border: 1px solid var(--divider_color) !important;
  238. }
  239. body.darkTheme .ui.endpointAdvanceConfig.accordion .title {
  240. color: var(--text_color) !important;
  241. }
  242. body.darkTheme .RateLimit input {
  243. border-color: var(--theme_highlight) !important;
  244. }
  245. /*
  246. Virtual Directorie Table
  247. */
  248. body.darkTheme .ui.fluid.search.selection.dropdown {
  249. background-color: var(--theme_bg) !important;
  250. color: var(--text_color) !important;
  251. border-color: var(--divider_color) !important;
  252. }
  253. body.darkTheme .ui.fluid.search.selection.dropdown .menu {
  254. background-color: var(--theme_bg) !important;
  255. color: var(--text_color) !important;
  256. }
  257. body.darkTheme .ui.fluid.search.selection.dropdown .menu .item {
  258. color: var(--text_color) !important;
  259. }
  260. body.darkTheme .ui.selection.dropdown .menu > .item {
  261. border-top: 1px solid var(--divider_color) !important;
  262. }
  263. body.darkTheme .ui.selection.active.dropdown .menu {
  264. border-color: var(--divider_color) !important;
  265. }
  266. body.darkTheme .ui.fluid.search.selection.dropdown .menu .item:hover {
  267. background-color: var(--theme_bg_hover) !important;
  268. color: var(--text_color) !important;
  269. }
  270. body.darkTheme .ui.fluid.search.selection.dropdown .menu .item.active.selected {
  271. background-color: var(--theme_highlight) !important;
  272. color: var(--text_color) !important;
  273. }
  274. body.darkTheme .ui.fluid.search.selection.dropdown .search {
  275. background-color: var(--theme_bg) !important;
  276. color: var(--text_color) !important;
  277. border-color: transparent !important;
  278. }
  279. body.darkTheme .ui.fluid.search.selection.dropdown .text {
  280. color: var(--text_color) !important;
  281. }
  282. body.darkTheme .ui.fluid.search.selection.dropdown .dropdown.icon {
  283. color: var(--text_color) !important;
  284. }
  285. /*
  286. New Proxy Rule
  287. */
  288. body.darkTheme .ui.horizontal.divider.transition.visible {
  289. color: var(--text_color) !important;
  290. }
  291. body.darkTheme #basicAuthCredPassword, body.darkTheme #basicAuthCredUsername {
  292. color: var(--text_color) !important;
  293. background-color: var(--theme_bg_active) !important;
  294. border: 1px solid var(--button_border_color) !important;
  295. }
  296. body.darkTheme #rules .field label {
  297. color: var(--text_color) !important;
  298. }
  299. body.darkTheme #rules .field .ui.selection.dropdown {
  300. background-color: var(--theme_bg_primary) !important;
  301. color: var(--text_color) !important;
  302. border-color: transparent !important;
  303. }
  304. body.darkTheme #rules .field .ui.selection.dropdown .menu {
  305. background-color: var(--theme_bg) !important;
  306. color: var(--text_color) !important;
  307. }
  308. body.darkTheme #rules .field .ui.selection.dropdown .menu .item {
  309. color: var(--text_color) !important;
  310. }
  311. body.darkTheme #rules .field .ui.selection.dropdown .menu .item:hover {
  312. background-color: var(--theme_bg_hover) !important;
  313. color: var(--text_color) !important;
  314. }
  315. body.darkTheme #rules .field .ui.selection.dropdown .menu .item.active.selected {
  316. background-color: var(--theme_highlight) !important;
  317. color: var(--text_color) !important;
  318. }
  319. body.darkTheme #rules .field .ui.selection.dropdown .text {
  320. color: var(--text_color) !important;
  321. }
  322. body.darkTheme #rules .field small {
  323. color: var(--text_color_secondary) !important;
  324. }
  325. /*
  326. Stream Proxy
  327. */
  328. body.darkTheme #streamproxy {
  329. background-color: var(--theme_bg) !important;
  330. color: var(--text_color) !important;
  331. border: 1px solid var(--divider_color) !important;
  332. }
  333. body.darkTheme #proxyTable {
  334. background-color: transparent !important;
  335. color: var(--text_color) !important;
  336. border: 1px solid var(--divider_color) !important;
  337. }
  338. body.darkTheme #proxyTable thead th {
  339. background-color: var(--theme_bg_secondary) !important;
  340. color: var(--text_color) !important;
  341. border-color: var(--divider_color) !important;
  342. }
  343. body.darkTheme #proxyTable tbody tr td:not(:first-child) {
  344. background-color: var(--theme_bg) !important;
  345. color: var(--text_color) !important;
  346. border-color: var(--divider_color) !important;
  347. }
  348. body.darkTheme #proxyTable tbody tr:hover {
  349. background-color: var(--theme_bg_hover) !important;
  350. }
  351. body.darkTheme #proxyTable tbody td .statusText {
  352. color: var(--text_color_secondary) !important;
  353. }
  354. body.darkTheme #proxyTable tbody td .ui.basic.mini.circular.icon.button {
  355. color: var(--button_color) !important;
  356. border: 1px solid var(--button_border_color) !important;
  357. }
  358. body.darkTheme #proxyTable tbody td .ui.basic.mini.circular.icon.button:hover {
  359. background-color: var(--button_hover_bg) !important;
  360. color: var(--button_hover_color) !important;
  361. border: 1px solid var(--button_border_color) !important;
  362. }
  363. body.darkTheme #proxyTable tbody td .ui.circular.red.basic.mini.icon.button {
  364. color: var(--button_red_color) !important;
  365. border: 1px solid var(--button_red_border_color) !important;
  366. }
  367. body.darkTheme #proxyTable tbody td .ui.circular.red.basic.mini.icon.button:hover {
  368. background-color: #380a0a !important;
  369. color: var(--button_red_hover_color) !important;
  370. }
  371. /*
  372. Redirect
  373. */
  374. body.darkTheme #redirectset .ui.sortable.unstackable.celled.table thead th {
  375. background-color: var(--theme_bg_secondary) !important;
  376. color: var(--text_color) !important;
  377. border-color: var(--divider_color) !important;
  378. }
  379. body.darkTheme #redirectset .ui.sortable.unstackable.celled.table tbody tr td {
  380. background-color: var(--theme_bg) !important;
  381. color: var(--text_color) !important;
  382. border-color: var(--divider_color) !important;
  383. }
  384. body.darkTheme #redirectset .ui.sortable.unstackable.celled.table tbody tr:hover {
  385. background-color: var(--theme_bg_hover) !important;
  386. }
  387. body.darkTheme #redirectset .ui.sortable.unstackable.celled.table tbody td .icon {
  388. color: var(--icon_color) !important;
  389. }
  390. body.darkTheme #redirectset .ui.sortable.unstackable.celled.table tbody td .ui.button {
  391. color: var(--button_color) !important;
  392. border: 1px solid var(--button_border_color) !important;
  393. }
  394. body.darkTheme #redirectset .ui.sortable.unstackable.celled.table tbody td .ui.button:hover {
  395. background-color: var(--button_hover_bg) !important;
  396. color: var(--button_hover_color) !important;
  397. border: 1px solid var(--button_border_color) !important;
  398. }
  399. body.darkTheme #redirectset .ui.sortable.unstackable.celled.table tbody td .ui.red.button {
  400. color: var(--button_red_color) !important;
  401. border: 1px solid var(--button_red_border_color) !important;
  402. }
  403. body.darkTheme #redirectset .ui.sortable.unstackable.celled.table tbody td .ui.red.button:hover {
  404. background-color: #380a0a !important;
  405. color: var(--button_red_hover_color) !important;
  406. }
  407. body.darkTheme #redirectset .ui.checkbox input:checked ~ label,
  408. body.darkTheme #redirectset .ui.checkbox input:checked ~ label small,
  409. body.darkTheme #redirectset .ui.checkbox input:checked ~ label a {
  410. color: var(--text_color_secondary) !important;
  411. }
  412. body.darkTheme .ui.message {
  413. color: var(--text_color) !important;
  414. background-color: var(--theme_bg_active) !important;
  415. border: 1px solid var(--message_border_color) !important;
  416. }
  417. /*
  418. Access Rules
  419. */
  420. /* Access Rule Selector */
  421. body.darkTheme .ui.selection.fluid.dropdown#accessRuleSelector {
  422. background-color: var(--theme_bg) !important;
  423. color: var(--text_color) !important;
  424. border-color: transparent !important;
  425. }
  426. body.darkTheme .ui.selection.fluid.dropdown#accessRuleSelector .menu {
  427. background-color: var(--theme_bg) !important;
  428. color: var(--text_color) !important;
  429. }
  430. body.darkTheme .ui.selection.fluid.dropdown#accessRuleSelector .menu .item {
  431. color: var(--text_color) !important;
  432. }
  433. body.darkTheme .ui.selection.fluid.dropdown#accessRuleSelector .menu .item:hover {
  434. background-color: var(--theme_bg_hover) !important;
  435. color: var(--text_color) !important;
  436. }
  437. body.darkTheme .ui.selection.fluid.dropdown#accessRuleSelector .menu .item.active.selected {
  438. background-color: var(--theme_highlight) !important;
  439. color: var(--text_color) !important;
  440. }
  441. body.darkTheme .ui.selection.fluid.dropdown#accessRuleSelector .text {
  442. color: var(--text_color) !important;
  443. }
  444. body.darkTheme .ui.selection.fluid.dropdown#accessRuleSelector .dropdown.icon {
  445. color: var(--text_color) !important;
  446. }
  447. /* Tab Menu in access control */
  448. body.darkTheme .ui.top.attached.tabular.menu {
  449. background-color: transparent !important;
  450. color: var(--text_color) !important;
  451. }
  452. body.darkTheme .ui.top.attached.tabular.menu .item {
  453. color: var(--text_color) !important;
  454. }
  455. body.darkTheme .ui.top.attached.tabular.menu .item:hover {
  456. background-color: var(--theme_bg_hover) !important;
  457. color: var(--text_color) !important;
  458. }
  459. body.darkTheme .ui.top.attached.tabular.menu .item.active {
  460. background-color: var(--theme_bg_primary) !important;
  461. color: var(--text_color) !important;
  462. }
  463. /* Tables in access control */
  464. body.darkTheme #access .ui.unstackable.basic.celled.table{
  465. border: 1px solid var(--divider_color) !important;
  466. }
  467. body.darkTheme #access .ui.unstackable.basic.celled.table thead th {
  468. background-color: var(--theme_bg_secondary) !important;
  469. color: var(--text_color) !important;
  470. border-color: var(--divider_color) !important;
  471. }
  472. body.darkTheme #access .ui.unstackable.basic.celled.table tbody tr td {
  473. background-color: var(--theme_bg) !important;
  474. color: var(--text_color) !important;
  475. border-color: var(--divider_color) !important;
  476. }
  477. body.darkTheme #access .ui.unstackable.basic.celled.table tbody tr:hover {
  478. background-color: var(--theme_bg_hover) !important;
  479. }
  480. body.darkTheme #access .ui.unstackable.basic.celled.table tbody td .icon {
  481. color: var(--icon_color) !important;
  482. }
  483. body.darkTheme #access .ui.unstackable.basic.celled.table tbody td .ui.button {
  484. color: var(--button_color) !important;
  485. border: 1px solid var(--button_border_color) !important;
  486. }
  487. body.darkTheme #access .ui.unstackable.basic.celled.table tbody td .ui.button:hover {
  488. background-color: var(--button_hover_bg) !important;
  489. color: var(--button_hover_color) !important;
  490. border: 1px solid var(--button_border_color) !important;
  491. }
  492. body.darkTheme #access .ui.unstackable.basic.celled.table tbody td .ui.red.button {
  493. color: var(--button_red_color) !important;
  494. border: 1px solid var(--button_red_border_color) !important;
  495. }
  496. body.darkTheme #access .ui.unstackable.basic.celled.table tbody td .ui.red.button:hover {
  497. background-color: #380a0a !important;
  498. color: var(--button_red_hover_color) !important;
  499. }
  500. /* Fixing the color of the sel;ector label in country selector */
  501. body.darkTheme .ui.search.multiple.selection.dropdown .ui.label {
  502. background-color: var(--theme_bg_secondary) !important;
  503. color: var(--text_color) !important;
  504. }
  505. /* Quick band IP table *(ipTable) */
  506. body.darkTheme #ipTable {
  507. background-color: transparent !important;
  508. color: var(--text_color) !important;
  509. border: 1px solid var(--divider_color) !important;
  510. }
  511. body.darkTheme #ipTable thead th {
  512. background-color: var(--theme_bg_secondary) !important;
  513. color: var(--text_color) !important;
  514. border-color: var(--divider_color) !important;
  515. }
  516. body.darkTheme #ipTable tbody tr td {
  517. background-color: var(--theme_bg) !important;
  518. color: var(--text_color) !important;
  519. border-color: var(--divider_color) !important;
  520. }
  521. body.darkTheme #ipTable tbody tr:hover {
  522. background-color: var(--theme_bg_hover) !important;
  523. }
  524. body.darkTheme #ipTable tbody td .ui.basic.red.tiny.icon.button {
  525. color: var(--button_red_color) !important;
  526. border: 1px solid var(--button_red_border_color) !important;
  527. }
  528. body.darkTheme #ipTable tbody td .ui.basic.red.tiny.icon.button:hover {
  529. background-color: #380a0a !important;
  530. color: var(--button_red_hover_color) !important;
  531. }
  532. /*
  533. TLS / SSL Certificates
  534. */
  535. body.darkTheme .ui.selection.dropdown#defaultCA {
  536. background-color: var(--theme_bg) !important;
  537. color: var(--text_color) !important;
  538. border-color: transparent !important;
  539. }
  540. body.darkTheme .ui.selection.dropdown#defaultCA .menu {
  541. background-color: var(--theme_bg) !important;
  542. color: var(--text_color) !important;
  543. }
  544. body.darkTheme .ui.selection.dropdown#defaultCA .menu .item {
  545. color: var(--text_color) !important;
  546. }
  547. body.darkTheme .ui.selection.dropdown#defaultCA .menu .item:hover {
  548. background-color: var(--theme_bg_hover) !important;
  549. color: var(--text_color) !important;
  550. }
  551. body.darkTheme .ui.selection.dropdown#defaultCA .menu .item.active.selected {
  552. background-color: var(--theme_highlight) !important;
  553. color: var(--text_color) !important;
  554. }
  555. body.darkTheme .ui.selection.dropdown#defaultCA .default.text {
  556. color: var(--text_color) !important;
  557. }
  558. body.darkTheme .ui.selection.dropdown#defaultCA .dropdown.icon {
  559. color: var(--text_color) !important;
  560. }
  561. /*
  562. ZeroTier
  563. */
  564. body.darkTheme #gan .ui.list .item .icon {
  565. color: var(--icon_color) !important;
  566. }
  567. body.darkTheme #gan .ui.list .item .content .header {
  568. color: var(--text_color) !important;
  569. }
  570. body.darkTheme #gan .ui.list .item .content .description {
  571. color: var(--text_color_secondary) !important;
  572. }
  573. body.darkTheme #gan .clickable.iprange.active {
  574. background-color: var(--theme_highlight) !important;
  575. }
  576. body.darkTheme #gan thead th {
  577. background-color: var(--theme_bg_secondary) !important;
  578. color: var(--text_color) !important;
  579. border-color: var(--divider_color) !important;
  580. }
  581. /*
  582. Uptime Monitor
  583. */
  584. body.darkTheme #utm .standardContainer {
  585. background-color: var(--theme_bg) !important;
  586. color: var(--text_color) !important;
  587. border: 1px solid var(--divider_color) !important;
  588. }
  589. body.darkTheme #utm .standardContainer .padding.statusDot {
  590. background-color: var(--theme_bg) !important;
  591. border: 0.2px solid var(--theme_bg_primary) !important;
  592. }
  593. body.darkTheme .ui.utmloading.segment {
  594. background-color: var(--theme_bg) !important;
  595. color: var(--text_color) !important;
  596. border: 1px solid var(--divider_color) !important;
  597. }
  598. body.darkTheme .ui.utmloading.segment .ui.inverted.dimmer {
  599. background-color: var(--theme_bg) !important;
  600. color: var(--text_color) !important;
  601. }
  602. body.darkTheme .ui.utmloading.segment .ui.inverted.dimmer .ui.text.loader {
  603. color: var(--text_color) !important;
  604. }
  605. /*
  606. Tool overlay css override
  607. */
  608. body.darkTheme .picker-wrap.popup .picker {
  609. background: var(--theme_bg_primary) !important;
  610. border: 1px solid var(--button_border_color) !important;
  611. }
  612. body.darkTheme .picker-wrap.popup .picker .picker-d-b {
  613. background: var(--theme_bg) !important;
  614. }
  615. body.darkTheme .picker-wrap.popup .picker .picker-d-d.picker-d-td{
  616. background: var(--theme_highlight) !important;
  617. color: var(--text_color) !important;
  618. }
  619. body.darkTheme .picker-p {
  620. background-color: var(--theme_bg_primary) !important;
  621. color: var(--text_color) !important;
  622. }
  623. body.darkTheme .picker-p .picker-b,
  624. body.darkTheme .picker-p .picker-n {
  625. background-color: var(--theme_bg_primary) !important;
  626. color: var(--text_color) !important;
  627. }
  628. body.darkTheme .picker-p .picker-m,
  629. body.darkTheme .picker-p .picker-y {
  630. background-color: var(--theme_bg) !important;
  631. color: var(--text_color) !important;
  632. }