dark.css 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367
  1. body {
  2. background-color: #282828;
  3. }
  4. b,
  5. strong {
  6. color: #cacaca;
  7. }
  8. button,
  9. select {
  10. text-shadow: 0 0 0 #d4d4d4 !important;
  11. }
  12. body {
  13. color: #cdcdcd;
  14. }
  15. .body-login, .body-reset {
  16. background: #303030 !important;
  17. background: radial-gradient(circle, rgba(77,77,77,1) 0%, rgba(31,31,31,1) 100%) !important;
  18. }
  19. a {
  20. color: #cdcdcd;
  21. }
  22. .disabled {
  23. }
  24. .clearfix:before,
  25. .clearfix:after {
  26. }
  27. .clearfix:after {
  28. }
  29. .text-right {
  30. }
  31. .text-center {
  32. }
  33. .text-small {
  34. }
  35. .check-label {
  36. }
  37. .check-label:before {
  38. }
  39. .clicked-on.check-label:before,
  40. .selected .check-label:before {
  41. }
  42. .l-center {
  43. }
  44. .l-logo {
  45. }
  46. .l-header {
  47. background: #454545;
  48. border-bottom: 1px solid #505050;
  49. text-shadow: 1px 1px rgba(0,0,0,0.5);
  50. box-shadow: 0px 8px 15px rgba(0,0,0,0.25);
  51. }
  52. .l-header a {
  53. }
  54. .l-menu__item--active {
  55. }
  56. .l-menu__item.l-menu__item--active a {
  57. color: #dadada;
  58. background: linear-gradient(to bottom, rgba(15,15,15,0.6) 0%,rgba(45,45,45,0.75) 30%,rgba(60,60,60,1) 95%);
  59. text-shadow: 0px 1px rgba(0,0,0,0.5);
  60. border-left-color: #353535;
  61. border-right-color: #353535;
  62. }
  63. .l-menu {
  64. }
  65. .l-menu__item {
  66. }
  67. .l-menu__item a {
  68. color: #e7e7e7;
  69. }
  70. .l-menu__item a:hover {
  71. color: #dadada !important;
  72. text-shadow: 1px 1px rgba(0,0,0,0.5) !important;
  73. background: linear-gradient(to bottom, rgba(15,15,15,0.6) 0%,rgba(45,45,45,0.75) 30%,rgba(60,60,60,1) 95%) !important;
  74. box-shadow: none !important;
  75. }
  76. .l-menu__item a:active {
  77. background: linear-gradient(to bottom, rgba(15,15,15,0.7) 0%,rgba(45,45,45,0.85) 30%,rgba(50,50,50,1) 95%) !important;
  78. color: #fff !important;
  79. text-shadow: 0px -1px 1px rgba(0,0,0,0.5) !important;
  80. }
  81. .l-menu__item.l-menu__item--active:hover {
  82. background: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%,rgba(255,255,255,0.15) 30%,rgba(255,255,255,0.15) 95%) !important;
  83. }
  84. .l-menu.active .l-menu__item.focus a {
  85. }
  86. .l-menu.active .l-menu__item.focus a:hover {
  87. }
  88. .lang-ua .l-menu__item a,
  89. .lang-nl .l-menu__item a,
  90. .lang-fr .l-menu__item a,
  91. .lang-ru .l-menu__item a {
  92. }
  93. .lang-el .l-menu__item a,
  94. .lang-tr .l-menu__item a {
  95. }
  96. .lang-ar .l-menu__item a {
  97. padding: 11px 11px;
  98. }
  99. .lang-ar .l-menu__item a {
  100. line-height: 35px;
  101. }
  102. .lang-de .l-menu__item a {
  103. padding: 11px 12px;
  104. }
  105. .lang-tw .l-menu__item a {
  106. padding: 13px 18px;
  107. }
  108. .l-profile {
  109. overflow: hidden;
  110. float: right;
  111. }
  112. .l-profile__logout {
  113. color: #e7e7e7 !important;
  114. }
  115. .l-profile__server {
  116. color: #ceefff;
  117. margin-top: 10px;
  118. float: left;
  119. }
  120. .l-profile__notifications {
  121. color: #fff;
  122. cursor: pointer;
  123. font-weight: 600;
  124. padding: 10px 5px 0;
  125. font-size: 1.2rem !important;
  126. line-height: 0.95rem;
  127. border-left: 1px solid transparent !important;
  128. border-right: 1px solid transparent !important;
  129. }
  130. .l-profile__notifications.active.l-profile__notifications.updates:active {
  131. background: linear-gradient(to bottom, rgba(15,15,15,0.6) 0%,rgba(45,45,45,0.75) 30%,rgba(60,60,60,1) 95%) !important;
  132. color: #046c98 !important;
  133. text-shadow: 0px -1px 1px rgba(0,0,0,0.5) !important;
  134. box-shadow: none !important;
  135. transition: 0.2s;
  136. border-left: 1px solid transparent !important;
  137. border-right: 1px solid transparent !important;
  138. }
  139. .l-profile__notifications:hover,.l-profile__notifications.updates:hover {
  140. text-shadow: 1px 1px rgba(0,0,0,0.5) !important;
  141. background: linear-gradient(to bottom, rgba(15,15,15,0.6) 0%,rgba(45,45,45,0.75) 30%,rgba(60,60,60,1) 95%) !important;
  142. border: none !important;
  143. border-left: 1px solid transparent !important;
  144. border-right: 1px solid transparent !important;
  145. box-shadow: none !important;
  146. }
  147. .notification-container {
  148. background-color: rgba(50,50,50,0.99);
  149. text-shadow: 0px 1px rgba(0,0,0,0.5);
  150. color: #dadada;
  151. border: 1px solid #404040;
  152. }
  153. .notification-container .empty {
  154. }
  155. .notification-container .empty .status-icon {
  156. color: #dadada;
  157. }
  158. .notification-container .unseen {
  159. color: #dadada;
  160. }
  161. .notification-container li {
  162. border-bottom: 1px solid #282828;
  163. }
  164. .notification-container li:last-child {
  165. }
  166. .notification-container .mark-seen {
  167. background-color: #ff3478;
  168. }
  169. .notification-container .mark-seen:hover {
  170. }
  171. .notification-container .mark-seen:active {
  172. }
  173. .notification-container .unseen .mark-seen{
  174. }
  175. .notification-container .title {
  176. }
  177. .notification-container .title a {
  178. }
  179. .notification-container .unseen .title a,
  180. .notification-container .unseen .title {
  181. color: #fff !important;
  182. }
  183. .notification-container .unseen .title a:hover {
  184. }
  185. .notification-container .unseen .title a:active {
  186. }
  187. .notification-container a {
  188. color: #4fabe9;
  189. }
  190. .notification-container a:hover {
  191. color: #0099ff;
  192. }
  193. .notification-container a:active {
  194. color: #0079cb;
  195. }
  196. .notification-container .icon {
  197. }
  198. .notification-container .icon.starred {
  199. }
  200. .notification-container .time {
  201. }
  202. .alert {
  203. border: 1px solid #212121;
  204. }
  205. .alert i.fas {
  206. }
  207. .alert.alert-with-icon {
  208. }
  209. .alert.alert-info {
  210. }
  211. .alert.alert-info i.fas {
  212. }
  213. .alert.alert-danger {
  214. background-color: #d13535;
  215. }
  216. .alert.alert-danger i.fas {
  217. color: #d13535;
  218. }
  219. .alert.alert-success {
  220. }
  221. .alert.alert-success i.fas {
  222. }
  223. form#vstobjects .alert {
  224. }
  225. .app-list.cards {
  226. }
  227. .app-form {
  228. }
  229. .app-form label {
  230. }
  231. .card {
  232. float: left;
  233. background: #454545;
  234. color: #fafafa;
  235. text-shadow: 0px 1px rgba(0,0,0,0.95) !important;
  236. border: 1px solid #606060;
  237. box-shadow: 0px 1px 4px rgba(0,0,0,0.2),
  238. inset 0px 0px 60px rgba(0,0,0,0.25);
  239. }
  240. .card.disable {
  241. }
  242. .card.disable .card-thumb {
  243. }
  244. .card .card-details {
  245. }
  246. .card .card-details p {
  247. color: #bdbdbd;
  248. }
  249. .card p.card-title {
  250. color: #fafafa;
  251. }
  252. .card .card-thumb {
  253. }
  254. .card .card-thumb img {
  255. }
  256. .card button {
  257. }
  258. .l-stat {
  259. background-color: #282828;
  260. }
  261. .l-stat__col {
  262. }
  263. .l-stat__col a {
  264. border-bottom: 4px solid #282828;
  265. background-color: #282828;
  266. }
  267. .l-stat__col a:hover {
  268. border-bottom: 4px solid #d7d7d7;
  269. }
  270. .l-stat__col a:active, .l-stat__col a:focus {
  271. border-bottom: 4px solid #d11755;
  272. }
  273. .l-stat__col--active a {
  274. border-bottom: 4px solid #e93b76;
  275. }
  276. .l-stat.active .l-stat__col.focus a {
  277. border-bottom: 4px solid #e93b76;
  278. }
  279. .l-stat.active .l-stat__col.focus a .l-stat__col-title {
  280. }
  281. .l-stat__col a:hover .l-stat__col-title {
  282. color: #d7d7d7;
  283. }
  284. .l-stat__col a:active .l-stat__col-title {
  285. }
  286. .l-stat__col ul {
  287. }
  288. .l-stat__col li {
  289. }
  290. .l-stat__col span {
  291. }
  292. .l-stat__col-title {
  293. font-weight: 500;
  294. color: #bcbcbc;
  295. text-shadow: 0px 1px rgba(0,0,0,0.4);
  296. }
  297. .l-stat__col--active .l-stat__col-title {
  298. color: #ff558f;
  299. }
  300. .l-stat__col .fas {
  301. color: #707070;
  302. padding: 4px;
  303. }
  304. .l-stat__col--active .fas {
  305. color: #aaaaaa;
  306. }
  307. .l-separator.selected,
  308. .l-separator {
  309. border-top: 1px solid #454545;
  310. }
  311. div.l-content > div.l-separator:nth-of-type(2) {
  312. }
  313. div.l-content > div.l-separator:nth-of-type(4) {
  314. border-bottom: 1px solid #454545;
  315. background-color: #282828;
  316. box-shadow: 0px 4px 6px rgba(0,0,0,0.25) !important;
  317. }
  318. .l-sort {
  319. background-color: #282828;
  320. }
  321. .l-sort__create-btn {
  322. }
  323. .l-sort__create-btn:hover {
  324. }
  325. .l-sort__create-btn:active {
  326. }
  327. .l-sort__create-btn--active {
  328. }
  329. .l-sort__create-btn.restore {
  330. }
  331. .l-sort__create-btn.restore:hover {
  332. }
  333. .l-sort__create-btn.restore:active {
  334. }
  335. .l-sort__create-btn.edit {
  336. }
  337. .l-sort__create-btn.edit:hover {
  338. }
  339. .l-sort__create-btn.edit:active {
  340. }
  341. .context-menu.sort-order {
  342. background-color: rgba(40,40,40,0.95);
  343. box-shadow: 0 2px 16px 0 rgba(20, 20, 20, 0.65);
  344. border-radius: 4px;
  345. border: 1px solid rgba(90,90,90,1);
  346. }
  347. .context-menu.sort-order li {
  348. }
  349. .context-menu li {
  350. border-bottom: 1px solid #454545;
  351. color: #dadada;
  352. }
  353. .context-menu.sort-order span.name {
  354. }
  355. .context-menu.sort-order span.up {
  356. }
  357. .context-menu.sort-order span.active {
  358. background-color: #454545 !important;
  359. color: #fff;
  360. background: linear-gradient(to bottom, rgba(15,15,15,0.6) 0%,rgba(45,45,45,0.75) 30%,rgba(60,60,60,1) 95%);
  361. text-shadow: 0px 1px rgba(0,0,0,0.8);
  362. }
  363. .context-menu.sort-order span:hover {
  364. color: #fff;
  365. background: linear-gradient(to bottom, rgba(25,25,25,0.6) 0%,rgba(55,55,55,0.75) 30%,rgba(70,70,70,1) 95%);
  366. text-shadow: 0px -1px 1px rgba(0,0,0,0.5);
  367. box-shadow: inset 0px 0px 1px rgba(0,0,0,0.4),
  368. inset -1px -1px 4px rgba(40,40,40,0.4);
  369. }
  370. .context-menu.sort-order span:active,.context-menu.sort-order span:focus {
  371. background: linear-gradient(to bottom, rgba(35,35,35,0.6) 0%,rgba(65,65,65,0.75) 30%,rgba(80,80,80,1) 95%);
  372. color: #fff;
  373. text-shadow: 0px -1px 1px rgba(0,0,0,0.5);
  374. box-shadow: inset 0px 0px 1px rgba(0,0,0,0.4),
  375. inset -1px -1px 4px rgba(40,40,40,0.4);
  376. }
  377. .context-menu.sort-order span.name i.fas.fa-sort-amount-down {
  378. }
  379. .context-menu.sort-order li:last-child {
  380. }
  381. .l-sort-toolbar {
  382. }
  383. .l-sort-toolbar table{
  384. }
  385. .l-sort-toolbar td.toggle-all {
  386. }
  387. .l-sort-toolbar .sort-by {
  388. }
  389. .l-sort-toolbar .sort-by:hover {
  390. color: #d4d4d4;
  391. }
  392. .l-sort-toolbar .sort-by:hover b {
  393. color: #d4d4d4;
  394. }
  395. .l-sort-toolbar .sort-by:active {
  396. }
  397. .l-sort-toolbar .sort-by:active b {
  398. }
  399. .l-sort-toolbar .sort-by b {
  400. }
  401. .l-sort-toolbar .toggle-all:hover {
  402. color: #d4d4d4;
  403. }
  404. .l-sort-toolbar .toggle-all:active {
  405. }
  406. .l-sort-toolbar .l-select {
  407. }
  408. .l-sort-toolbar td {
  409. }
  410. .l-sort-toolbar.subtitle {
  411. }
  412. .l-sort-toolbar td.step-right:first-of-type {
  413. }
  414. .l-sort-toolbar td:nth-of-type(2) {
  415. }
  416. .l-sort-toolbar td:last-of-type {
  417. }
  418. .l-sort-toolbar__filter-apply {
  419. border: 1px solid #454545;
  420. background-color: #424242;
  421. text-shadow: 1px 1px rgba(0,0,0,0.9) !important;
  422. box-shadow: 0px 1px 1px rgba(0,0,0,0.4) !important;
  423. color: #cacaca;
  424. font-size: 1em;
  425. }
  426. .l-sort-toolbar__filter-apply:hover {
  427. color: #0099ff;
  428. background-color: #454545;
  429. }
  430. .l-sort-toolbar__filter-apply:active {
  431. color: #0074c2;
  432. text-shadow: 0px -1px rgba(255,255,255,0.2);
  433. box-shadow: inset 1px 1px 0px rgba(0,0,0,0.2);
  434. }
  435. .l-sort-toolbar__search {
  436. }
  437. .l-sort-toolbar__search:hover {
  438. }
  439. .l-sort-toolbar__search:active {
  440. }
  441. .l-sort-toolbar__search--active {
  442. }
  443. .l-sort-toolbar .vst {
  444. color: #dadada;
  445. }
  446. .l-sort-toolbar .vst:hover {
  447. color: #ff3478;
  448. }
  449. .l-sort-toolbar .vst:active {
  450. }
  451. .l-sort-toolbar .vst.selected {
  452. color: #ff3478;
  453. }
  454. .l-unit-toolbar__buttonstrip {
  455. }
  456. .l-unit-toolbar__buttonstrip a {
  457. }
  458. .l-unit-toolbar__buttonstrip .fas {
  459. }
  460. .subtitle {
  461. color: #ff3478;
  462. }
  463. .l-select {
  464. border: 1px solid #454545;
  465. box-shadow: 0px 1px 1px rgba(0,0,0,0.4) !important;
  466. }
  467. .lang-ru .l-select {
  468. }
  469. .l-select:after {
  470. }
  471. .l-select select {
  472. background-color: #212121;
  473. box-shadow: 0px 1px 1px rgba(0,0,0,0.4) !important;
  474. }
  475. .l-select select:focus {
  476. }
  477. .lang-ru .l-select select {
  478. }
  479. .l-select select option {
  480. }
  481. .l-sort-toolbar .l-select {
  482. border: 1px solid #454545;
  483. background-color: #454545;
  484. text-shadow: 0px 1px rgba(0,0,0,0.65);
  485. text-shadow: 1px 1px rgba(0,0,0,0.9);
  486. }
  487. .l-unit {
  488. color: #dadada;
  489. }
  490. .table-header {
  491. background: #404040 !important;
  492. border-left: 1px solid #212121 !important;
  493. border-right: 1px solid #212121 !important;
  494. border-bottom: 1px solid #212121 !important;
  495. border-top: 1px solid #454545 !important;
  496. text-shadow: 0px 1px rgba(0,0,0,0.95);
  497. border-bottom-left-radius: 0px !important;
  498. border-bottom-right-radius: 0px !important;
  499. color: #dadada;
  500. box-shadow: inset 0px 1px 1px rgba(0,0,0,0.3) !important;
  501. }
  502. .table-header:hover {
  503. background-color: #404040 !important;
  504. border-left: 1px solid #212121 !important;
  505. border-right: 1px solid #212121 !important;
  506. box-shadow: inset 0px 1px 1px rgba(0,0,0,0.3) !important;
  507. }
  508. .table-header .fas {
  509. }
  510. .units .l-unit {
  511. background-color: #303030;
  512. border-bottom: 1px solid #282828;
  513. border-left: 1px solid #212121;
  514. border-right: 1px solid #212121;
  515. }
  516. .l-unit:hover, .units .l-unit:hover {
  517. box-shadow: 0px 2px 10px rgba(20,20,20,0.20);
  518. background-color: #353535;
  519. text-shadow: 0px 1px rgba(0,0,0,0.5);
  520. border-left: 1px solid #212121;
  521. border-right: 1px solid #212121;
  522. }
  523. .units .l-unit.l-unit--starred {
  524. border-left: 2px solid #ff3478;
  525. }
  526. .units.active .l-unit.focus {
  527. background-color: #353535;
  528. }
  529. .units.active .l-unit.focus .l-unit__name {
  530. }
  531. .units.active .l-unit.focus .l-unit-toolbar__col--right {
  532. }
  533. .units > div:last-child {
  534. }
  535. .l-unit-ft {
  536. color: #cdcdcd;
  537. }
  538. .l-unit:hover .l-unit-toolbar__col--right {
  539. }
  540. .l-unit--blue {
  541. }
  542. .l-unit--suspended {
  543. background: #252525 !important;
  544. color: #606060 !important;
  545. text-shadow: 0px -1px rgba(0,0,0,0.4) !important;
  546. box-shadow: inset 0px 0px 2px rgba(0,0,0,0.2);
  547. }
  548. .l-unit--suspended a {
  549. color: #606060 !important;
  550. text-shadow: 0px -1px rgba(0,0,0,0.4) !important;
  551. }
  552. .units .l-unit.l-unit--outdated {
  553. color: #d4d4d4;
  554. }
  555. .l-unit--suspended .l-unit__name,
  556. .l-unit--suspended b,
  557. .l-unit--outdated .l-unit__name,
  558. .l-unit--outdated b {
  559. color: #606060;
  560. }
  561. .l-unit--outdated .l-unit__name {
  562. }
  563. .l-unit--outdated b {
  564. color: #d4d4d4;
  565. }
  566. .l-unit--suspended .l-percent {
  567. }
  568. .l-unit--suspended .l-percent__fill {
  569. }
  570. .l-unit--suspended .l-unit__name,
  571. .l-unit--suspended .l-unit__name span {
  572. }
  573. .l-unit--suspended.selected .l-unit__name,
  574. .l-unit--suspended.selected .l-unit__name span {
  575. color: #707070;
  576. }
  577. .l-unit--suspended.selected {
  578. background-color: #454545 !important;
  579. color: #707070 !important;
  580. }
  581. .l-unit--outdated.selected {
  582. }
  583. .l-unit--suspended.selected .l-unit__name,
  584. .l-unit--suspended.selected b,
  585. .l-unit--outdated.selected .l-unit__name,
  586. .l-unit--outdated.selected b,
  587. .l-unit--suspended.selected .l-percent,
  588. .l-unit--suspended.selected .l-percent__fill,
  589. .l-unit--suspended.selected .l-unit__name,
  590. .l-unit--suspended.selected .l-unit__name span {
  591. }
  592. .l-unit.selected .l-percent {
  593. }
  594. .l-unit--selected {
  595. }
  596. .l-unit-toolbar{
  597. }
  598. .l-unit label {
  599. }
  600. .l-unit__columns {
  601. }
  602. .l-unit__col {
  603. }
  604. .l-unit__col--left {
  605. }
  606. .units.compact .l-unit__col--left {
  607. }
  608. .l-unit__col--left.step-left {
  609. }
  610. .l-unit__col--right.total {
  611. }
  612. .l-unit__col--right.back {
  613. }
  614. .l-sort-toolbar .step-left {
  615. }
  616. .step-right {
  617. }
  618. .l-unit__date {
  619. }
  620. .l-unit__suspended {
  621. }
  622. .units.compact .l-unit__suspended {
  623. }
  624. .l-unit--outdated .l-unit__suspended,
  625. .l-unit--suspended .l-unit__suspended {
  626. }
  627. .l-unit-ft .subtitle,
  628. .l-unit .subtitle {
  629. color: #ff3478;
  630. }
  631. .l-unit.l-unit--outdated .l-unit__date {
  632. }
  633. .l-unit__name {
  634. color: #dadada;
  635. }
  636. .l-unit__servername {
  637. }
  638. .l-unit__stats.separate,
  639. .l-unit__name.separate {
  640. }
  641. .l-unit__name.small {
  642. }
  643. .l-unit__name.small-2 {
  644. }
  645. .l-unit__name span {
  646. }
  647. .l-unit__name span:first-of-type {
  648. }
  649. .l-unit__name b {
  650. }
  651. .l-unit__ip {
  652. }
  653. .l-unit__ip span {
  654. }
  655. .display-ip {
  656. }
  657. .display-ip span {
  658. }
  659. .l-unit__stats {
  660. }
  661. .l-unit__stats:hover {
  662. background: transparent !important;
  663. }
  664. .l-unit__stats table {
  665. }
  666. .l-unit__stats td {
  667. }
  668. .l-unit__stat-col--left a, .l-unit__stat-col--left a:visited {
  669. color: #fafafa;
  670. }
  671. .l-unit__stat-col--left a:hover {
  672. color: #fff;
  673. }
  674. .l-unit__stat-col--left {
  675. }
  676. .l-unit__stat-col--left.border {
  677. }
  678. .l-unit__stat-col--left.border-clear {
  679. }
  680. .l-unit__stat-col--left.super-compact {
  681. }
  682. .l-unit__stat-col--left.compact {
  683. }
  684. .l-unit__stat-col--left.compact-1 {
  685. }
  686. .l-unit__stat-col--left.compact-2 {
  687. }
  688. .l-unit__stat-col--left.compact-3 {
  689. }
  690. .l-unit__stat-col--left.compact-4 {
  691. }
  692. .l-unit__stat-col--left.compact-5 {
  693. }
  694. .l-unit__stat-col--left.wide {
  695. }
  696. .l-unit__stat-col--left.wide-2 {
  697. }
  698. .l-unit__stat-col--left.wide-3 {
  699. }
  700. .l-unit__stat-col--left.wide-4 {
  701. }
  702. .l-unit__stat-col--left.wide-5 {
  703. }
  704. .l-unit__stat-col--left.wide-6 {
  705. }
  706. .l-unit__stat-col--left.wide-7 {
  707. }
  708. .l-unit__stat-col--left.small-2 {
  709. }
  710. .l-unit__stat-col--left.tiny {
  711. }
  712. .l-unit__stat-col--left.tiny b {
  713. }
  714. .l-unit__stat-col--right {
  715. }
  716. .l-unit-toolbar__col--left {
  717. }
  718. .l-unit-toolbar__col--right {
  719. }
  720. body.mobile .l-unit-toolbar__col--right {
  721. }
  722. .l-unit-toolbar .shortcut {
  723. }
  724. .units.active .l-unit.focus .l-unit-toolbar .shortcut {
  725. }
  726. .units.active .l-unit.focus .l-unit-toolbar .shortcut.delete {
  727. }
  728. .units.active .l-unit.focus .l-unit-toolbar .shortcut.enter {
  729. }
  730. .units.active .l-unit.focus .l-unit-toolbar i {
  731. }
  732. .l-unit__stat-col.volume {
  733. }
  734. .actions-panel__col {
  735. }
  736. .actions-panel__col a {
  737. }
  738. .lang-ru .actions-panel__col a {
  739. }
  740. .lang-tw .actions-panel__col a {
  741. }
  742. .lang-ar .actions-panel__col a {
  743. }
  744. .icon-pad-right {
  745. }
  746. .l-icon-up-arrow, .l-icon-down-arrow, .l-icon-star, .l-icon-to-top, .l-icon-shortcuts, .l-icon-star-orange, .l-icon-star-blue {
  747. }
  748. .l-icon-down-arrow {
  749. }
  750. .l-icon-up-arrow {
  751. }
  752. .l-icon-star {
  753. }
  754. .l-unit--starred .l-icon-star {
  755. }
  756. .selected .l-icon-star {
  757. }
  758. .units.compact .l-icon-star {
  759. }
  760. .l-icon-star:hover {
  761. }
  762. .l-icon-star:active {
  763. }
  764. .l-unit:hover .l-icon-star {
  765. }
  766. .l-icon-to-top {
  767. }
  768. .l-icon-to-top:hover {
  769. }
  770. .l-icon-to-top:active {
  771. }
  772. .l-icon-shortcuts {
  773. }
  774. .l-icon-shortcuts:hover {
  775. }
  776. .l-icon-shortcuts:active {
  777. }
  778. body.mobile .l-icon-to-top,
  779. body.mobile .l-icon-shortcuts {
  780. }
  781. .l-icon-star-orange {
  782. }
  783. .l-icon-star-blue {
  784. }
  785. .media-top {
  786. }
  787. .l-unit__stat-cols {
  788. }
  789. .l-unit__stat-cols.last {
  790. }
  791. .l-unit__stat-cols.graph {
  792. }
  793. .l-unit__stat-cols.tiny {
  794. }
  795. .l-percent {
  796. }
  797. .l-percent__fill {
  798. }
  799. #vstobjects .l-center {
  800. }
  801. .timer-container {
  802. }
  803. .timer-container .refresh-timer {
  804. }
  805. .timer-container .refresh-timer.paused {
  806. }
  807. .timer-container .refresh-timer.paused .loader-half.right,
  808. .timer-container .refresh-timer.paused .loader-half.dark {
  809. }
  810. .timer-container .loader-half {
  811. }
  812. .timer-container .loader-half.left {
  813. }
  814. .timer-container .loader-half.right {
  815. }
  816. .timer-container .loader-half.dark {
  817. }
  818. .timer-container .movement {
  819. }
  820. .timer-container .movement.left {
  821. }
  822. .timer-container .movement.right {
  823. }
  824. .timer-container .timer-button {
  825. }
  826. .timer-container .timer-button.pause {
  827. }
  828. .timer-container .timer-button.play {
  829. }
  830. .uppercase {
  831. }
  832. .title b,
  833. .title {
  834. color: #ff3478;
  835. }
  836. .title {
  837. }
  838. /* form styles */
  839. .vst-error {
  840. color: #ff3333;
  841. }
  842. .vst-ok {
  843. color: #53ba55;
  844. }
  845. .l-unit-toolbar__buttonstrip .vst-ok, .l-unit-toolbar__buttonstrip .vst-error {
  846. }
  847. .vst-ok a {
  848. }
  849. .vst-ok a:hover {
  850. color: #ff3478;
  851. }
  852. .vst-ok a:active {
  853. }
  854. .data {
  855. }
  856. .data-col1 {
  857. }
  858. .data-col1 td {
  859. }
  860. .data-col1 tr:first-child td {
  861. }
  862. .login-box td,
  863. .data td {
  864. color: #d4d4d4;
  865. }
  866. .input-label {
  867. }
  868. .data input[type="checkbox"] {
  869. }
  870. .step-top {
  871. }
  872. .step-top-small {
  873. }
  874. .jump-top {
  875. }
  876. .jump-small-top {
  877. }
  878. .float-right {
  879. }
  880. .data a {
  881. }
  882. label {
  883. }
  884. label:hover {
  885. color: #d4d4d4 !important;
  886. }
  887. .vst-input {
  888. background-color: #454545;
  889. border: 1px solid #606060;
  890. color: #d4d4d4;
  891. box-shadow: 0px 1px 4px rgba(0,0,0,0.35);
  892. }
  893. .vst-input:hover {
  894. border-color: #0090ff;
  895. background-color: #494949;
  896. }
  897. .vst-input:focus {
  898. background-color: #222222;
  899. border-color: #0080df;
  900. color: #fff;
  901. box-shadow: 0px 1px 6px rgba(0,52,91,0.75);
  902. }
  903. .vst-input:disabled,
  904. .vst-list:disabled {
  905. background-color: #303030;
  906. text-shadow: 1px 1px rgba(0,0,0,0.3);
  907. color: #acacac;
  908. border-color: #606060;
  909. }
  910. .vst-input:focus:disabled {
  911. }
  912. .vst-input:disabled:hover,
  913. .vst-list:disabled:hover {
  914. border-color: #606060 !important;
  915. }
  916. .vst-input.long {
  917. }
  918. .vst-input.short {
  919. }
  920. .vst-input.vst-list-editor {
  921. }
  922. .vst-input.vst-list-editor:focus {
  923. background-color: #222222;
  924. box-shadow: none !important;
  925. }
  926. .vst-list {
  927. background-color: #454545;
  928. border: 1px solid #606060;
  929. color: #d4d4d4;
  930. text-shadow: 0 0 0 #d4d4d4;
  931. box-shadow: 0px 1px 4px rgba(0,0,0,0.35);
  932. }
  933. select.vst-list:-moz-focusring {
  934. }
  935. .vst-list.long-2 {
  936. }
  937. .vst-list option {
  938. }
  939. .vst-list:hover {
  940. border-color: #0090ff;
  941. background-color: #494949;
  942. }
  943. .vst-list:focus {
  944. background-color: #222222;
  945. border-color: #0080df;
  946. color: #fff;
  947. box-shadow: 0px 1px 6px rgba(0,52,91,0.75);
  948. }
  949. .vst-list.flat {
  950. border: 1px solid #454545;
  951. color: #fff;
  952. }
  953. .vst-list.flat:hover {
  954. color: #ff3478;
  955. }
  956. .vst-list.flat option {
  957. color: #d4d4d4;
  958. }
  959. a.vst-text,
  960. a.vst-text b{
  961. color: #fff;
  962. }
  963. a.vst-text:hover,
  964. a.vst-text:hover b{
  965. color: #ff3478;
  966. }
  967. a.vst-text:active,
  968. a.vst-text:active b{
  969. color: #ff3478;
  970. }
  971. .advanced-options {
  972. background: #454545 !important;
  973. border: 1px solid #505050 !important;
  974. text-shadow: 0px 1px rgba(0,0,0,0.4);
  975. box-shadow: inset 0px 0px 2px rgba(0,0,0,0.5),
  976. 0px 2px 6px rgba(0,0,0,0.4) !important;
  977. color: #fff !important;
  978. padding: 4px 0px 0px 18px;
  979. overflow: hidden;
  980. height: 28px;
  981. }
  982. .advanced-options a {
  983. color: #fff !important;
  984. }
  985. .advanced-options .fas {
  986. }
  987. .vst-textinput {
  988. background-color: #454545;
  989. border: 1px solid #606060;
  990. color: #d4d4d4;
  991. box-shadow: 0px 1px 4px rgba(0,0,0,0.35);
  992. }
  993. .vst-textinput:hover {
  994. border: 1px solid #0090ff;
  995. background-color: #494949;
  996. }
  997. .vst-textinput:focus {
  998. background-color: #222222;
  999. border-color: #0080df;
  1000. color: #fff !important;
  1001. box-shadow: 0px 1px 6px rgba(0,52,91,0.75);
  1002. }
  1003. .vst-textinput:disabled {
  1004. background-color: #454545;
  1005. }
  1006. .vst-textinput.console{
  1007. }
  1008. .vst-textinput.short {
  1009. }
  1010. #advanced-options .console{
  1011. }
  1012. .generate {
  1013. color: #29a9ff;
  1014. border-radius: 4px;
  1015. }
  1016. .generate:hover {
  1017. background-color: #ff3478;
  1018. border-color: #ff3478;
  1019. }
  1020. .generate:active {
  1021. background-color: #be1f54;
  1022. border-color: #be1f54;
  1023. }
  1024. .vst-advanced {
  1025. border-bottom: 0px solid #326b9b;
  1026. color: #0094f7;
  1027. font-size: 0.8rem;
  1028. padding: 4px 12px;
  1029. text-decoration: none;
  1030. border-radius: 4px;
  1031. text-transform: none !important;
  1032. }
  1033. .login-box .vst-advanced:hover {
  1034. color: #ff3478 !important;
  1035. background-color: transparent;
  1036. border-color: transparent;
  1037. border: none !important;
  1038. background: none !important;
  1039. box-shadow: none !important;
  1040. }
  1041. .login-box .vst-advanced:active {
  1042. color: #be1f54 !important;
  1043. border: none !important;
  1044. background: none !important;
  1045. box-shadow: none !important;
  1046. }
  1047. .vst-advanced:hover {
  1048. color: #fff;
  1049. background-color: #ff3478;
  1050. border-color: #ff3478;
  1051. text-decoration: none;
  1052. }
  1053. .login-box .vst-advanced:active,
  1054. .vst-advanced:active {
  1055. color: #fff;
  1056. background-color: #be1f54;
  1057. border-color: #be1f54;
  1058. text-decoration: none;
  1059. }
  1060. .login-box .vst-advanced {
  1061. border-bottom: none;
  1062. color: #326b9b;
  1063. font-size: 0.85em !important;
  1064. padding: 2px 2px 0;
  1065. text-decoration: none;
  1066. text-transform: uppercase;
  1067. border: none !important;
  1068. background: none !important;
  1069. box-shadow: none !important;
  1070. }
  1071. .vst-checkbox {
  1072. }
  1073. .lets-encrypt-note {
  1074. }
  1075. .additional-control {
  1076. color: #0099ff;
  1077. }
  1078. .additional-control:hover {
  1079. background-color: #ff3478;
  1080. border-color: #ff3478;
  1081. }
  1082. .additional-control:active {
  1083. }
  1084. .additional-control.ftp-remove-user {
  1085. }
  1086. .additional-control.delete:hover,
  1087. .additional-control.ftp-remove-user:hover {
  1088. }
  1089. .additional-control.delete:active,
  1090. .additional-control.ftp-remove-user:active {
  1091. }
  1092. .additional-control.add:hover {
  1093. }
  1094. .additional-control.add:active{
  1095. }
  1096. .additional-control.remove-ns {
  1097. }
  1098. .data .step-left {
  1099. }
  1100. .hide-password {
  1101. }
  1102. .toggle-psw-visibility-icon {
  1103. }
  1104. .show-passwords-enabled-action {
  1105. }
  1106. .ftp-path-value,
  1107. .hint,
  1108. td.hint {
  1109. color: #a2a2a2;
  1110. font-size: 0.8rem;
  1111. }
  1112. .ftp-path-prefix { padding-top: 12px; font-size: 0.8rem; color: #555; }
  1113. .ui-dialog .ui-dialog-buttonpane button {
  1114. box-shadow: 0px 1px 4px rgba(0,0,0,0.1),
  1115. inset 0px 0px 1px #000,
  1116. inset 0px 0px 3px rgba(0,0,0,0.5) !important;
  1117. }
  1118. .ui-button, .button, .ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-text-only.submit, .vst-advanced, .to-shortcuts, .to-top {
  1119. font-size: 0.85rem !important;
  1120. font-weight: 400 !important;
  1121. color: #eeeeee !important;
  1122. border: 1px solid #707070 !important;
  1123. background: rgb(48,48,48) !important;
  1124. background: linear-gradient(0deg, rgba(48,48,48,1) 0%, rgba(53,53,53,1) 35%, rgba(69,69,69,1) 100%) !important;
  1125. box-shadow: 0px 1px 4px rgba(0,0,0,0.2),
  1126. inset 0px 0px 1px rgba(20,20,20,1),
  1127. inset 0px 0px 3px rgba(0,0,0, 0.5) !important;
  1128. text-shadow: 0px 1px 1px rgba(0,0,0,0.35) !important;
  1129. }
  1130. .ui-button:hover, .button:hover, .ui-button.cancel:hover, .button.cancel:hover,
  1131. .ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-text-only.submit:hover, .vst-advanced:hover, .to-shortcuts:hover, .to-top:hover {
  1132. color: #fff !important;
  1133. text-shadow: 1px 1px rgba(0,0,0,0.25) !important;
  1134. border: 1px solid #0098ff !important;
  1135. background: linear-gradient(0deg, rgba(58,58,58,1) 0%, rgba(68,68,68,1) 35%, rgba(79,79,79,1) 100%) !important;
  1136. background-color: #454545;
  1137. box-shadow: 0px 1px 3px rgba(0,0,0,0.35),
  1138. inset 0px 0px 1px rgba(0,0,0,1),
  1139. inset 0px 0px 3px rgba(0,0,0,0.65) !important;
  1140. transition: 0.2s;
  1141. }
  1142. .ui-button:focus,.ui-button:active,
  1143. .button:active,.button:focus,.ui-button.cancel:focus,.ui-button.cancel:active,
  1144. .button.cancel:active,.button.cancel:focus,
  1145. .ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-text-only.submit:active, .vst-advanced:active, .to-shortcuts:active, .to-top:active,
  1146. .to-shortcuts:focus, .to-top:focus {
  1147. border: 1px solid #0066b4 !important;
  1148. background: linear-gradient(0deg, rgba(69,69,69,1) 0%, rgba(53,53,53,1) 35%, rgba(48,48,48,1) 100%) !important;
  1149. color: #d4d4d4 !important;
  1150. text-shadow: 0px -1px 1px rgba(0,0,0,0.55) !important;
  1151. box-shadow: 0px 1px 3px rgba(0,0,0,0.3),
  1152. inset 0px 0px 1px rgba(0,0,0,1),
  1153. inset -1px -1px 4px rgba(30,30,30,0.4) !important;
  1154. }
  1155. .ui-button-text-only {
  1156. text-shadow: 0px 1px rgba(0,0,0,0.5);
  1157. }
  1158. .ui-dialog .ui-dialog-buttonpane button span.ui-button-text {
  1159. }
  1160. .ui-dialog .ui-button:hover span {
  1161. color: #fafafa !important;
  1162. }
  1163. .ui-button-text-only .selected {
  1164. }
  1165. .ui-button.cancel,
  1166. .button.cancel {
  1167. color: #eeeeee !important;
  1168. border: 1px solid #454545 !important;
  1169. background: rgb(48,48,48) !important;
  1170. background: linear-gradient(0deg, rgba(48,48,48,1) 0%, rgba(53,53,53,1) 35%, rgba(69,69,69,1) 100%) !important;
  1171. }
  1172. .ui-button-text {
  1173. color: #eeeeee !important;
  1174. }
  1175. .ui-button.cancel:active,
  1176. .button.cancel:active {
  1177. }
  1178. a.button.cancel {
  1179. }
  1180. .ui-dialog button.cancel {
  1181. border: 1px solid #d4d4d4;
  1182. background-color: #d4d4d4;
  1183. }
  1184. .ui-button.danger:hover, .button.danger:hover {
  1185. background: rgb(133,0,0);
  1186. background: linear-gradient(0deg, rgba(133,0,0,1) 0%, rgba(203,0,0,1) 100%) !important;
  1187. color: #fff !important;
  1188. text-shadow: 0px 1px rgba(0,0,0,0.45) !important;
  1189. border: 1px solid rgb(170, 0, 0) !important;
  1190. }
  1191. .ui-button.danger:active, .button.danger:active, .ui-button.danger:focus, .button.danger:focus {
  1192. background: rgb(133,0,0);
  1193. background: linear-gradient(180deg, rgba(133,0,0,1) 0%, rgba(203,0,0,1) 100%) !important;
  1194. color: #4d0000 !important;
  1195. text-shadow: 0px -1px 1px rgba(255,255,255,0.3) !important;
  1196. border: 1px solid rgb(251, 71, 51) !important;
  1197. }
  1198. .ui-button span {
  1199. }
  1200. .ui-button:hover span {
  1201. color: #d4d4d4 !important;
  1202. }
  1203. .ui-button:active span {
  1204. color: #d4d4d4;
  1205. }
  1206. .ui-button.cancel span {
  1207. }
  1208. .ui-button:hover span {
  1209. }
  1210. .ui-button:active span {
  1211. }
  1212. .ui-dialog button.cancel span {
  1213. color: #fff !important;
  1214. }
  1215. .unlim-trigger {
  1216. }
  1217. .optional {
  1218. }
  1219. .data-active b {
  1220. }
  1221. .data-suspended b {
  1222. }
  1223. .data-date {
  1224. }
  1225. .data-dotted {
  1226. }
  1227. .mail-infoblock-td {
  1228. }
  1229. .mail-infoblock {
  1230. color: #fff;
  1231. border: 1px solid #606060;
  1232. margin-top: 87px;
  1233. box-shadow: 0px 1px 4px rgba(0,0,0,0.35);
  1234. background-color: #454545;
  1235. }
  1236. .mail-infoblock:hover {
  1237. }
  1238. .mail-infoblock td {
  1239. color: #dadada;
  1240. }
  1241. .mail-infoblock td:first-child{
  1242. }
  1243. .mail-infoblock div {
  1244. }
  1245. .mail-infoblock a {
  1246. color: #52b9ff;
  1247. }
  1248. .mail-infoblock a:hover {
  1249. color: #ff3478;
  1250. }
  1251. .additional-info {
  1252. }
  1253. .additional-info td {
  1254. }
  1255. .additional-info td.details {
  1256. }
  1257. :focus {outline:none;}
  1258. ::-moz-focus-inner {border:0;}
  1259. .login {
  1260. background-color: #282828;
  1261. box-shadow: 0px 8px 25px rgba(0,0,0, 0.3), inset 0px 0px 2px rgba(0,0,0,0.25) !important;
  1262. }
  1263. .login-welcome {
  1264. color: #fff !important;
  1265. }
  1266. .page-title {
  1267. color: #dbdbdb !important;
  1268. }
  1269. .qr-code {
  1270. border: 1px solid #3b3b3b;
  1271. box-shadow: 0px 1px 4px rgba(0,0,0,0.35);
  1272. }
  1273. .password-option {
  1274. }
  1275. .login a.error {
  1276. color: #f864fa;
  1277. }
  1278. .hestiacp {
  1279. }
  1280. .hestiacp:hover {
  1281. }
  1282. .hestiacp:active {
  1283. color: #ff3478;
  1284. }
  1285. .login-bottom {
  1286. }
  1287. .l-unit.selected {
  1288. background-color: #454545;
  1289. color: #d4d4d4;
  1290. box-shadow: 0px 2px 10px rgba(30,30,30,0.35);
  1291. text-shadow: 0px 1px rgba(0,0,0,0.5);
  1292. border-left: 1px solid #212121;
  1293. border-right: 1px solid #212121;
  1294. }
  1295. .l-unit.selected:hover {
  1296. background-color: #555555;
  1297. color: #d4d4d4;
  1298. box-shadow: none !important;
  1299. text-shadow: 0px 1px rgba(0,0,0,0.4);
  1300. }
  1301. .l-unit.selected b,
  1302. .l-unit.selected strong {
  1303. color: #d4d4d4;
  1304. }
  1305. /* MAIN MENU COLLAPSED */
  1306. .collapsed .l-stat {
  1307. }
  1308. .collapsed .l-stat__col a {
  1309. }
  1310. .collapsed .l-stat__col-title {
  1311. }
  1312. div.l-content.collapsed > div.l-separator:nth-of-type(2) {
  1313. }
  1314. div.l-content.collapsed > div.l-separator:nth-of-type(4) {
  1315. }
  1316. div.l-content.collapsed .l-sort {
  1317. }
  1318. .l-content > .units.l-center::before {
  1319. }
  1320. .console-output {
  1321. color: #dadada !important;
  1322. }
  1323. form#vstobjects {
  1324. }
  1325. form#vstobjects.suspended {
  1326. background-color: #282828;
  1327. }
  1328. #add-icon {
  1329. }
  1330. .l-sort__create-btn.restore #add-icon {
  1331. }
  1332. .l-sort__create-btn.edit #add-icon {
  1333. }
  1334. #tooltip {
  1335. }
  1336. .l-sort__create-btn:active #add-icon {
  1337. }
  1338. .l-sort__create-btn.restore:active #add-icon {
  1339. }
  1340. .l-sort__create-btn.edit:active #add-icon {
  1341. }
  1342. .l-sort__create-btn.edit:hover #tooltip {
  1343. }
  1344. .l-sort__create-btn.edit:active #tooltip {
  1345. }
  1346. .l-sort__create-btn:active #tooltip {
  1347. }
  1348. .pill {
  1349. }
  1350. .pill.usage{
  1351. box-shadow: inset 0px 1px 1px rgba(0,0,0,0.85), 0px 1px 1px rgba(0,0,0,0.2);
  1352. background-color: rgba(15,15,15,0.5);
  1353. border: 1px solid rgba(120,120,120,0.95);
  1354. text-shadow: 0px 1px 1px rgba(0,0,0,0.5);
  1355. color: #909090;
  1356. }
  1357. .pill.usage b { color: #d8d8d8; }
  1358. .badge {
  1359. box-shadow: 0px 1px 2px rgba(70,70,70,0.5),
  1360. inset 0px 2px 2px rgba(0,0,0,0.65);
  1361. text-shadow: 0px 1px 2px rgba(0,0,0,0.5);
  1362. border: 1px solid #212121 !important;
  1363. }
  1364. .badge.large {
  1365. }
  1366. .badge.raised {
  1367. background: radial-gradient(ellipse at center, rgba(40,40,40,0.2) 0%,rgba(80,80,80,0.05) 100%);
  1368. }
  1369. .l-unit--suspended .badge {
  1370. background: #303030 !important;
  1371. color: #808080 !important;
  1372. text-shadow: 0px -1px rgba(0,0,0,0.4) !important;
  1373. box-shadow: 0px 1px 2px rgba(25,25,25,0.3) !important;
  1374. }
  1375. .pill.gray, .badge.gray {
  1376. border: 1px solid #181818;
  1377. background-color: #252525;
  1378. color: #dadada;
  1379. text-shadow: 0px 1px rgba(0,0,0,0.7) !important;
  1380. }
  1381. .pill.blue, .badge.blue {
  1382. }
  1383. .pill.purple, .badge.purple {
  1384. }
  1385. .pill.teal, .badge.teal {
  1386. }
  1387. .pill.maroon, .badge.maroon {
  1388. background-color: #ff3478;
  1389. }
  1390. .pill.red, .badge.red {
  1391. }
  1392. .pill.orange, .badge.orange {
  1393. }
  1394. .pill.green, .badge.green {
  1395. }
  1396. .pill.lightblue, .badge.lightblue {
  1397. }
  1398. .status-icon.large {
  1399. }
  1400. .status-icon.yellow, .status-icon.yellow:hover {
  1401. color: #f3e72c;
  1402. }
  1403. .status-icon.teal, .status-icon.teal:hover {
  1404. color: #33cccc;
  1405. }
  1406. .status-icon.purple, .status-icon.purple:hover {
  1407. color: #c364ff;
  1408. }
  1409. .status-icon.maroon, .status-icon.maroon:hover {
  1410. color: #ff3478;
  1411. }
  1412. .status-icon.red, .status-icon.red:hover {
  1413. }
  1414. .status-icon.green, .status-icon.green:hover {
  1415. color: #37cf39;
  1416. }
  1417. .status-icon.orange, .status-icon.orange:hover {
  1418. }
  1419. .status-icon.lightblue, .status-icon.lightblue:hover {
  1420. }
  1421. .status-icon.highlight, .status-icon.highlight:hover {
  1422. color: #dadada;
  1423. }
  1424. .status-icon.blue, .status-icon.blue:hover {
  1425. color: #0092f4;
  1426. }
  1427. .status-icon.dim {
  1428. color: #808080;
  1429. text-shadow: 1px 1px rgba(0,0,0,0.3);
  1430. }
  1431. .l-unit--suspended .status-icon.dim {
  1432. color: #808080 !important;
  1433. text-shadow: 0px !important;
  1434. }
  1435. .noselect {
  1436. }
  1437. .search-input {
  1438. background-color: #212121;
  1439. border: 1px solid #454545;
  1440. box-shadow: 0px 1px 1px rgba(0,0,0,0.4) !important;
  1441. }
  1442. .lang-ru .search-input{
  1443. }
  1444. .lang-ru .search-input.activated{
  1445. }
  1446. .search-input.activated{
  1447. }
  1448. .search-input:focus {
  1449. }
  1450. .float-left {
  1451. }
  1452. .float-right {
  1453. }
  1454. .display-inline-block {
  1455. }
  1456. .width-100p {
  1457. }
  1458. .l-sort-toolbar table td {
  1459. }
  1460. .l-sort-toolbar__search-box {
  1461. }
  1462. .ui-dialog .ui-dialog-buttonpane button:nth-of-type(2) {
  1463. }
  1464. .ui-dialog .ui-dialog-buttonpane {
  1465. border-color: #404040 !important;
  1466. background-color: #252525 !important;
  1467. }
  1468. .shortcuts {
  1469. background: rgba(30,30,30,0.95);
  1470. border: 1px solid rgba(255,255,255,0.25);
  1471. box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
  1472. border-bottom: none !important;
  1473. }
  1474. .shortcuts .header {
  1475. border-bottom: 1px solid #353535;
  1476. }
  1477. .shortcuts .title {
  1478. }
  1479. .shortcuts .close {
  1480. }
  1481. .shortcuts .close:hover {
  1482. }
  1483. .shortcuts .close:active {
  1484. }
  1485. .shortcuts .close .fas {
  1486. }
  1487. .shortcuts ul {
  1488. }
  1489. .shortcuts ul li {
  1490. }
  1491. .shortcuts ul li.step-top {
  1492. }
  1493. .shortcuts ul li span {
  1494. }
  1495. .shortcuts ul li span.bigger {
  1496. }
  1497. .description {
  1498. }
  1499. .description ul{
  1500. }
  1501. .description li{
  1502. }
  1503. .description a {
  1504. }
  1505. .description a.purchase {
  1506. }
  1507. .description a.purchase:hover {
  1508. color: #d4d4d4;
  1509. }
  1510. .description a.purchase:active {
  1511. color: #d4d4d4;
  1512. }
  1513. .description a.cancel {
  1514. }
  1515. .description a.cancel:hover {
  1516. }
  1517. .description a.cancel:active {
  1518. }
  1519. .description.cancel-success {
  1520. }
  1521. .description .licence {
  1522. }
  1523. .description .licence input {
  1524. }
  1525. .description span {
  1526. }
  1527. .description .twoco {
  1528. }
  1529. .ui-dialog {
  1530. background-color: rgba(45,45,45,0.95) !important;
  1531. border: 1px solid rgba(80,80,80,0.97) !important;
  1532. box-shadow: inset 0px 1px 3px rgba(0,0,0,0.25),
  1533. 0px 8px 25px rgba(0,0,0,0.9) !important;
  1534. }
  1535. .ui-dialog .ui-dialog-content {
  1536. color: #dadada !important;
  1537. }
  1538. .ui-dialog .ui-dialog-title {
  1539. color: #f12569 !important;
  1540. font-weight: 600;
  1541. }
  1542. .ui-dialog-buttonpane {
  1543. }
  1544. .ui-widget {
  1545. }
  1546. .ui-widget-overlay {
  1547. }
  1548. .helper-container {
  1549. box-shadow: 0px 1px 4px rgba(0,0,0,0.25);
  1550. border: 1px solid #606060;
  1551. background-color: #454545;
  1552. }
  1553. .context-helper {
  1554. }
  1555. .context-helper:hover {
  1556. }
  1557. .context-helper:active {
  1558. color: #ff3478;
  1559. }
  1560. .cron-helper-tabs {
  1561. }
  1562. .cron-helper-tabs a {
  1563. color: #cacaca;
  1564. }
  1565. .cron-helper-tabs a:hover {
  1566. color: #ff3478 !important;
  1567. }
  1568. .cron-helper-tabs a:active {
  1569. color: #3b9de8 !important;
  1570. }
  1571. .cron-helper-tabs .ui-tabs-selected a {
  1572. color: #ff3478 !important;
  1573. }
  1574. .cron-helper-tabs select.short {
  1575. }
  1576. .cron-helper-tabs p {
  1577. color: #dadada;
  1578. }
  1579. .cron-helper-tabs p span{
  1580. }
  1581. .cron-helper-tabs p span.first{
  1582. }
  1583. .cron-helper-tabs .button {
  1584. }
  1585. .cron-helper-tabs .button:hover {
  1586. }
  1587. .cron-helper-tabs .button:active {
  1588. }
  1589. .context-helper-close {
  1590. }
  1591. .context-helper-close:hover {
  1592. }
  1593. .context-helper-close:active {
  1594. }
  1595. .server-info {
  1596. }
  1597. .server-info-data {
  1598. }
  1599. .server-info-name {
  1600. color: #fafafa !important;
  1601. }
  1602. .server-info-output {
  1603. background: #282828;
  1604. }
  1605. .icon-server-info {
  1606. color: #707070;
  1607. }
  1608. .userlist-email {
  1609. }
  1610. .userlist-username {
  1611. }
  1612. .ui-widget-header a {
  1613. color: #cacaca !important;
  1614. }
  1615. .body-rrd .units .l-unit {
  1616. background-color: #282828 !important;
  1617. border-left: 1px solid transparent !important;
  1618. border-right: 1px solid transparent !important;
  1619. }
  1620. @media screen and (max-width: 950px) {
  1621. .helper-container {
  1622. display: none;
  1623. }
  1624. }