default.css 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504
  1. /* ==========================================================================
  2. Define Exo font family
  3. Primary font used throughout the user interface
  4. ========================================================================== */
  5. /* exo-300 - latin-ext_latin */
  6. @font-face {
  7. font-family: 'Exo';
  8. font-style: normal;
  9. font-weight: 300;
  10. src: local('Exo Light'), local('Exo-Light'),
  11. url('/webfonts/exo-v8-latin-ext_latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  12. url('/webfonts/exo-v8-latin-ext_latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  13. font-display: swap;
  14. }
  15. /* exo-300italic - latin-ext_latin */
  16. @font-face {
  17. font-family: 'Exo';
  18. font-style: italic;
  19. font-weight: 300;
  20. src: local('Exo Light Italic'), local('Exo-LightItalic'),
  21. url('/webfonts/exo-v8-latin-ext_latin-300italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  22. url('/webfonts/exo-v8-latin-ext_latin-300italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  23. font-display: swap;
  24. }
  25. /* exo-regular - latin-ext_latin */
  26. @font-face {
  27. font-family: 'Exo';
  28. font-style: normal;
  29. font-weight: 400;
  30. src: local('Exo Regular'), local('Exo-Regular'),
  31. url('/webfonts/exo-v8-latin-ext_latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  32. url('/webfonts/exo-v8-latin-ext_latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  33. font-display: swap;
  34. }
  35. /* exo-italic - latin-ext_latin */
  36. @font-face {
  37. font-family: 'Exo';
  38. font-style: italic;
  39. font-weight: 400;
  40. src: local('Exo Italic'), local('Exo-Italic'),
  41. url('/webfonts/exo-v8-latin-ext_latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  42. url('/webfonts/exo-v8-latin-ext_latin-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  43. font-display: swap;
  44. }
  45. /* exo-500 - latin-ext_latin */
  46. @font-face {
  47. font-family: 'Exo';
  48. font-style: normal;
  49. font-weight: 500;
  50. src: local('Exo Medium'), local('Exo-Medium'),
  51. url('/webfonts/exo-v8-latin-ext_latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  52. url('/webfonts/exo-v8-latin-ext_latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  53. font-display: swap;
  54. }
  55. /* exo-500italic - latin-ext_latin */
  56. @font-face {
  57. font-family: 'Exo';
  58. font-style: italic;
  59. font-weight: 500;
  60. src: local('Exo Medium Italic'), local('Exo-MediumItalic'),
  61. url('/webfonts/exo-v8-latin-ext_latin-500italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  62. url('/webfonts/exo-v8-latin-ext_latin-500italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  63. font-display: swap;
  64. }
  65. /* exo-600 - latin-ext_latin */
  66. @font-face {
  67. font-family: 'Exo';
  68. font-style: normal;
  69. font-weight: 600;
  70. src: local('Exo SemiBold'), local('Exo-SemiBold'),
  71. url('/webfonts/exo-v8-latin-ext_latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  72. url('/webfonts/exo-v8-latin-ext_latin-600.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  73. font-display: swap;
  74. }
  75. /* exo-600italic - latin-ext_latin */
  76. @font-face {
  77. font-family: 'Exo';
  78. font-style: italic;
  79. font-weight: 600;
  80. src: local('Exo SemiBold Italic'), local('Exo-SemiBoldItalic'),
  81. url('/webfonts/exo-v8-latin-ext_latin-600italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  82. url('/webfonts/exo-v8-latin-ext_latin-600italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  83. font-display: swap;
  84. }
  85. /* exo-700 - latin-ext_latin */
  86. @font-face {
  87. font-family: 'Exo';
  88. font-style: normal;
  89. font-weight: 700;
  90. src: local('Exo Bold'), local('Exo-Bold'),
  91. url('/webfonts/exo-v8-latin-ext_latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  92. url('/webfonts/exo-v8-latin-ext_latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  93. font-display: swap;
  94. }
  95. /* exo-700italic - latin-ext_latin */
  96. @font-face {
  97. font-family: 'Exo';
  98. font-style: italic;
  99. font-weight: 700;
  100. src: local('Exo Bold Italic'), local('Exo-BoldItalic'),
  101. url('/webfonts/exo-v8-latin-ext_latin-700italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
  102. url('/webfonts/exo-v8-latin-ext_latin-700italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  103. font-display: swap;
  104. }
  105. /* ==========================================================================
  106. Define Inconsolata font family
  107. Console font
  108. ========================================================================== */
  109. /* Inconsolata-bold - latin */
  110. @font-face {
  111. font-family: 'Inconsolata';
  112. src: local('Inconsolata Bold'), local('Inconsolata-Bold'),
  113. url('/webfonts/Inconsolata-Bold.woff2') format('woff2'),
  114. url('/webfonts/Inconsolata-Bold.woff') format('woff');
  115. font-weight: bold;
  116. font-style: normal;
  117. font-display: swap;
  118. }
  119. /* Inconsolata - latin */
  120. @font-face {
  121. font-family: 'Inconsolata';
  122. src: local('Inconsolata Regular'), local('Inconsolata-Regular'),
  123. url('/webfonts/Inconsolata-Regular.woff2') format('woff2'),
  124. url('/webfonts/Inconsolata-Regular.woff') format('woff');
  125. font-weight: normal;
  126. font-style: normal;
  127. font-display: swap;
  128. }
  129. /* Base
  130. ========================================================================== */
  131. html {
  132. height: 100%;
  133. box-sizing: border-box;
  134. font-family: sans-serif;
  135. }
  136. *,
  137. *::before,
  138. *::after {
  139. box-sizing: inherit;
  140. }
  141. html,
  142. input,
  143. textarea,
  144. select,
  145. button {
  146. -webkit-font-smoothing: antialiased;
  147. -moz-osx-font-smoothing: grayscale;
  148. }
  149. body {
  150. font-family: Exo, Arial, Helvetica, sans-serif;
  151. font-size: 0.9rem;
  152. line-height: 1.5;
  153. height: 100%;
  154. color: #7c7c7c;
  155. background-color: #fff;
  156. }
  157. :focus { outline: none; }
  158. h1,
  159. h2,
  160. h3,
  161. p,
  162. pre {
  163. margin: 0;
  164. }
  165. dialog {
  166. position: fixed;
  167. padding: 0;
  168. }
  169. dialog::backdrop {
  170. background-color: rgb(0 0 0 / 60%);
  171. }
  172. summary {
  173. list-style: none;
  174. }
  175. summary::-webkit-details-marker {
  176. display: none;
  177. }
  178. ol,
  179. ul {
  180. list-style: none;
  181. margin: 0;
  182. padding: 0;
  183. }
  184. a {
  185. text-decoration: none;
  186. color: #7c7c7c;
  187. }
  188. button {
  189. cursor: pointer;
  190. line-height: inherit;
  191. }
  192. table {
  193. border-collapse: collapse;
  194. border-spacing: 0;
  195. }
  196. .check-label {
  197. display: inline-block;
  198. cursor: pointer;
  199. position: relative;
  200. line-height: 16px;
  201. padding-left: 26px;
  202. }
  203. .check-label::before {
  204. content: "";
  205. width: 16px;
  206. height: 16px;
  207. position: absolute;
  208. left: 0;
  209. top: 0;
  210. display: inline-block;
  211. z-index: 99;
  212. }
  213. .clicked-on.check-label::before,
  214. .selected .check-label::before {
  215. content: "";
  216. display: inline-block;
  217. width: 27px;
  218. height: 27px;
  219. background-position: -225px -42px;
  220. left: -6px;
  221. top: -6px;
  222. }
  223. .l-center {
  224. margin: 0 auto;
  225. max-width: 1020px;
  226. }
  227. .l-logo {
  228. background-image: url("/images/logo-header.svg");
  229. background-repeat: no-repeat;
  230. width: 54px;
  231. height: 28px;
  232. }
  233. .l-header {
  234. background: linear-gradient(to bottom, rgb(104 145 196 / 100%) 0%, rgb(69 114 181 / 100%) 50%, rgb(65 90 149 / 100%) 100%);
  235. background-color: #5070a6;
  236. overflow: hidden;
  237. position: fixed;
  238. width: 100%;
  239. height: 39px;
  240. z-index: 900;
  241. font-size: 0.8rem;
  242. text-shadow: 1px 1px rgb(0 0 0 / 25%);
  243. box-shadow: 0 4px 10px rgb(100 100 100 / 40%);
  244. border-bottom: 1px solid #fff;
  245. }
  246. .l-header__inner {
  247. display: flex;
  248. height: 100%;
  249. justify-content: space-between;
  250. }
  251. .l-header__left {
  252. display: flex;
  253. align-items: center;
  254. }
  255. .l-menu__item.l-menu__item--active a {
  256. color: #4686b8;
  257. font-size: 0.8rem;
  258. background: linear-gradient(to bottom, rgb(255 255 255 / 60%) 0%, rgb(255 255 255 / 75%) 30%, rgb(255 255 255 / 100%) 95%);
  259. text-shadow: 0 1px rgb(255 255 255 / 80%);
  260. border-left: 1px solid rgb(255 255 255 / 98%);
  261. border-right: 1px solid rgb(255 255 255 / 98%);
  262. }
  263. .l-menu__item.l-menu__item--active:hover {
  264. box-shadow: none;
  265. }
  266. .l-menu {
  267. display: flex;
  268. align-self: stretch;
  269. margin-left: 16px;
  270. }
  271. .l-menu__item {
  272. display: flex;
  273. align-self: stretch;
  274. font-weight: 600;
  275. }
  276. .l-menu__item a {
  277. color: #f7f7f7;
  278. display: flex;
  279. align-items: center;
  280. position: relative;
  281. padding-left: 10px;
  282. padding-right: 10px;
  283. border-left: 1px solid transparent;
  284. border-right: 1px solid transparent;
  285. }
  286. .l-menu__item a:hover {
  287. border: 0;
  288. box-shadow: inset 0 0 6px rgb(255 255 255 / 60%) !important;
  289. transition: 0.2s;
  290. border-left: 1px solid rgb(0 0 0 / 10%);
  291. border-right: 1px solid rgb(0 0 0 / 10%);
  292. color: #4686b8 !important;
  293. background: linear-gradient(to bottom, rgb(255 255 255 / 60%) 0%, rgb(255 255 255 / 75%) 30%, rgb(255 255 255 / 100%) 95%);
  294. text-shadow: 0 1px rgb(255 255 255 / 80%);
  295. }
  296. .l-menu__item a:active {
  297. border: 0;
  298. background: linear-gradient(to bottom, rgb(255 255 255 / 50%) 0%, rgb(255 255 255 / 60%) 30%, rgb(255 255 255 / 95%) 95%);
  299. color: #046c98 !important;
  300. text-shadow: 0 -1px 1px rgb(255 255 255 / 50%) !important;
  301. box-shadow:
  302. inset 0 0 1px #fff,
  303. inset -1px -1px 4px rgb(220 220 220 / 40%) !important;
  304. transition: 0.2s;
  305. border-left: 1px solid rgb(0 0 0 / 15%);
  306. border-right: 1px solid rgb(0 0 0 / 15%);
  307. }
  308. .l-menu.active .l-menu__item.focus a {
  309. text-decoration: underline;
  310. color: #5edad0;
  311. }
  312. .l-menu.active .l-menu__item.focus a:hover {
  313. background-color: #f79b44;
  314. color: #fff;
  315. }
  316. .panel-icon {
  317. font-size: 1rem;
  318. margin-right: 8px;
  319. }
  320. .l-profile {
  321. display: flex;
  322. align-items: center;
  323. overflow: hidden;
  324. }
  325. .l-profile__username,
  326. .l-profile__logout,
  327. .l-profile__help,
  328. .l-profile__serversettings {
  329. font-size: 1.1rem !important;
  330. }
  331. .l-profile__logout {
  332. color: #dbf94e !important;
  333. }
  334. .l-profile__notifications {
  335. color: #fff;
  336. cursor: pointer;
  337. font-weight: 600;
  338. font-size: 1.2rem;
  339. line-height: 0.95rem;
  340. }
  341. .l-profile__notifications.active.l-profile__notifications.updates:active {
  342. background: linear-gradient(to bottom, rgb(255 255 255 / 60%) 0%, rgb(255 255 255 / 75%) 30%, rgb(255 255 255 / 100%) 95%) !important;
  343. color: #046c98 !important;
  344. text-shadow: 0 -1px 1px rgb(255 255 255 / 50%) !important;
  345. box-shadow:
  346. 0 1px 3px rgb(0 0 0 / 15%),
  347. inset 0 0 1px #fff,
  348. inset -1px -1px 4px rgb(220 220 220 / 40%) !important;
  349. transition: 0.2s;
  350. }
  351. .l-profile__notifications:hover,
  352. .l-profile__notifications.updates:hover {
  353. color: #3b9de8 !important;
  354. text-shadow: 1px 1px rgb(255 255 255 / 50%) !important;
  355. background: linear-gradient(to bottom, rgb(255 255 255 / 75%) 0%, rgb(255 255 255 / 87%) 30%, rgb(255 255 255 / 100%) 95%) !important;
  356. transition: 0.2s;
  357. }
  358. .notification-container {
  359. background-color: rgb(255 255 255 / 95%);
  360. box-shadow: 0 3px 20px 0 rgb(0 0 0 / 40%);
  361. margin: 0 18px;
  362. max-height: 90%;
  363. overflow-y: auto;
  364. position: fixed;
  365. top: 34px;
  366. width: 390px;
  367. z-index: 300;
  368. font-size: 0.8rem;
  369. color: #6f6f6f;
  370. border-bottom-left-radius: 6px;
  371. border-bottom-right-radius: 6px;
  372. border: 1px solid #fff;
  373. border-top: none;
  374. }
  375. .notification-container .empty {
  376. text-align: center;
  377. font-size: 1.2rem;
  378. font-weight: normal;
  379. padding: 4rem;
  380. }
  381. .notification-container .empty {
  382. color: #54a6e5;
  383. }
  384. .notification-container .unseen {
  385. color: #6f6f6f;
  386. }
  387. .notification-container li {
  388. border-bottom: 1px solid #e9e4e4;
  389. padding: 1rem;
  390. }
  391. .notification-container li:last-child {
  392. border-bottom: none;
  393. }
  394. .notification-container .mark-seen {
  395. background-color: #c36;
  396. border: 1px solid #c41650;
  397. border-radius: 10px;
  398. cursor: pointer;
  399. display: none;
  400. float: right;
  401. height: 7px;
  402. margin-right: -5px;
  403. margin-top: 9px;
  404. width: 7px;
  405. }
  406. .notification-container .mark-seen:hover {
  407. background-color: #fff;
  408. border-color: #e83b75;
  409. }
  410. .notification-container .mark-seen:active {
  411. background-color: #777;
  412. border-color: #777;
  413. }
  414. .notification-container .unseen .mark-seen {
  415. display: inline-block;
  416. }
  417. .notification-container .notification-title {
  418. color: #9e9e9e;
  419. font-weight: 600;
  420. line-height: 30px;
  421. padding: 0;
  422. text-transform: none;
  423. float: none;
  424. display: block;
  425. }
  426. .notification-container .notification-title a {
  427. color: #9e9e9e;
  428. }
  429. .notification-container .unseen .notification-title a,
  430. .notification-container .unseen .notification-title {
  431. color: #c36;
  432. }
  433. .notification-container .unseen .notification-title a:hover {
  434. color: #e83b75;
  435. }
  436. .notification-container .unseen .notification-title a:active {
  437. color: #e83b75;
  438. }
  439. .notification-container a {
  440. font-weight: 600;
  441. color: #1a4492;
  442. }
  443. .notification-container a:hover {
  444. color: #4a87fb;
  445. }
  446. .notification-container a:active {
  447. color: #1a4492;
  448. }
  449. .notification-container .icon {
  450. display: inline-block;
  451. width: 0;
  452. }
  453. .notification-container .icon.starred {
  454. display: inline-block;
  455. width: 21px;
  456. }
  457. .notification-container .time {
  458. font-size: 0.9em;
  459. display: block;
  460. text-align: right;
  461. padding-top: 0.6rem;
  462. }
  463. .alert {
  464. border-radius: 4px;
  465. font-weight: 400;
  466. padding: 0.8rem;
  467. position: relative;
  468. text-align: left;
  469. box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
  470. text-shadow: 0 1px rgb(0 0 0 / 45%);
  471. border: 1px solid #fff;
  472. }
  473. .alert i.fas {
  474. border-radius: 1rem;
  475. font-size: 1.4rem;
  476. font-weight: 600;
  477. height: 2rem;
  478. left: 0.6rem;
  479. line-height: 2rem;
  480. position: absolute;
  481. text-align: center;
  482. top: 0.8rem;
  483. width: 2rem;
  484. }
  485. .alert.alert-with-icon {
  486. padding-left: 3.2rem;
  487. min-height: 3.5rem;
  488. }
  489. .alert.alert-info {
  490. color: #fff;
  491. background-color: #618ecc;
  492. }
  493. .alert.alert-info i.fas {
  494. color: #618ecc;
  495. background-color: white;
  496. }
  497. .alert.alert-danger {
  498. color: #fff;
  499. background-color: #ec6c6c;
  500. }
  501. .alert.alert-danger i.fas {
  502. color: #ec6c6c;
  503. background-color: white;
  504. }
  505. .alert.alert-success {
  506. color: #fff;
  507. background-color: #5ea64c;
  508. }
  509. .alert.alert-success i.fas {
  510. color: #5ea64c;
  511. background-color: white;
  512. }
  513. .alert a {
  514. font-weight: bold;
  515. color: #fff;
  516. }
  517. .alert a:hover {
  518. text-decoration: underline;
  519. }
  520. .cards {
  521. display: flex;
  522. flex-wrap: wrap;
  523. justify-content: center;
  524. }
  525. .card {
  526. overflow: hidden;
  527. background-color: #f5f5f5;
  528. border: 1px solid #d3d3d3;
  529. width: 200px;
  530. min-height: 260px;
  531. margin: 0 1em 2em;
  532. padding-bottom: 0.5em;
  533. box-shadow: 0 1px 4px rgb(0 0 0 / 20%);
  534. color: #353535;
  535. border-radius: 4px;
  536. }
  537. .card.disable {
  538. color: #b6b6b6;
  539. }
  540. .card.disable .card-thumb {
  541. filter: grayscale(100%);
  542. opacity: 0.3;
  543. }
  544. .card .card-details {
  545. font-size: 0.8rem;
  546. padding: 0.5em 0.8em;
  547. border-top: 1px solid #e6e6e6;
  548. text-align: center;
  549. }
  550. .card .card-details p {
  551. margin: 0 0 0.3em;
  552. font-size: 1em;
  553. }
  554. .card p.card-title {
  555. font-size: 1.1em;
  556. font-weight: 600;
  557. }
  558. .card .card-thumb {
  559. background-color: #fff;
  560. display: flex;
  561. align-items: center;
  562. justify-content: center;
  563. width: 200px;
  564. height: 180px;
  565. padding: 20px;
  566. }
  567. .card .card-thumb img {
  568. max-width: 100%;
  569. max-height: 100%;
  570. }
  571. .l-stat {
  572. margin: 34px auto;
  573. position: fixed;
  574. background-color: #fff;
  575. z-index: 100;
  576. padding-top: 36px;
  577. overflow: hidden;
  578. text-align: center;
  579. display: flex;
  580. width: 100%;
  581. max-width: 1020px;
  582. }
  583. .l-stat__col {
  584. display: inline-block;
  585. vertical-align: top;
  586. flex: 1;
  587. }
  588. .l-stat__col a {
  589. display: inline-block;
  590. padding-bottom: 36px;
  591. min-height: 113px;
  592. width: 136px;
  593. border-bottom: 4px solid #fff;
  594. overflow: hidden;
  595. background-color: #fff;
  596. padding-top: 3px;
  597. margin-top: -3px;
  598. padding-left: 5px;
  599. }
  600. .l-stat__col a:hover {
  601. border-bottom: 4px solid #e83b75;
  602. transition: 0.3s;
  603. }
  604. .l-stat__col a:active {
  605. border-bottom: 4px solid #d53067;
  606. }
  607. .l-stat__col--active a {
  608. border-bottom: 4px solid #c36;
  609. }
  610. .l-stat.active .l-stat__col.focus a {
  611. border-bottom: 4px solid #5edad0;
  612. }
  613. .l-stat.active .l-stat__col.focus a .l-stat__col-title {
  614. color: #36b3a9;
  615. }
  616. .l-stat__col a:hover .l-stat__col-title {
  617. color: #e83b75;
  618. }
  619. .l-stat__col a:active .l-stat__col-title {
  620. color: #d53067;
  621. }
  622. .l-stat__col ul {
  623. font-size: 0.75rem;
  624. padding-left: 0;
  625. line-height: 14px;
  626. margin-top: 12px;
  627. margin-bottom: 12px;
  628. }
  629. .l-stat__col li {
  630. color: #7b7b7b;
  631. margin-bottom: 8px;
  632. text-transform: lowercase;
  633. }
  634. .l-stat__col-title {
  635. text-transform: uppercase;
  636. font-weight: 600;
  637. color: #5b5b5b;
  638. min-height: 21px;
  639. font-size: 16px;
  640. }
  641. .l-stat__col--active .l-stat__col-title {
  642. color: #c36;
  643. font-size: 16px;
  644. }
  645. .l-stat__col .fas {
  646. color: #999;
  647. padding: 4px;
  648. }
  649. .l-stat__col--active .fas {
  650. color: #c36;
  651. }
  652. .l-separator.selected,
  653. .l-separator {
  654. height: 1px;
  655. border-top: 1px solid #ddd;
  656. }
  657. div.l-content > div.l-separator:nth-of-type(2) {
  658. margin-top: 180px;
  659. width: 100%;
  660. position: fixed;
  661. z-index: 120;
  662. }
  663. div.l-content > div.l-separator:nth-of-type(4) {
  664. margin-top: 225px;
  665. width: 100%;
  666. position: fixed;
  667. z-index: 110;
  668. border-top: none;
  669. border-bottom: 1px solid #ddd;
  670. }
  671. .l-sort {
  672. position: fixed;
  673. display: flex;
  674. justify-content: space-between;
  675. align-items: center;
  676. width: 100%;
  677. max-width: 1020px;
  678. background-color: #fff;
  679. z-index: 120;
  680. margin-top: 181px;
  681. height: 44px;
  682. }
  683. .l-sort__create-btn {
  684. background-position: -331px -107px;
  685. background-repeat: no-repeat;
  686. bottom: -23px;
  687. display: inline-block;
  688. height: 45px;
  689. left: 30px;
  690. position: absolute;
  691. width: 45px;
  692. z-index: 3;
  693. }
  694. .l-sort__create-btn:hover {
  695. background-position: -378px -107px;
  696. }
  697. .l-sort__create-btn:active {
  698. background-position: -425px -107px;
  699. }
  700. .l-sort__create-btn--active {
  701. background-position: -425px -107px;
  702. }
  703. .l-sort__create-btn.restore {
  704. background-position: -331px -250px;
  705. bottom: -22px;
  706. }
  707. .l-sort__create-btn.restore:hover {
  708. background-position: -331px -250px;
  709. }
  710. .l-sort__create-btn.restore:active {
  711. background-position: -331px -250px;
  712. }
  713. .l-sort__create-btn.edit {
  714. background-position: -331px -154px;
  715. bottom: -22px;
  716. }
  717. .l-sort__create-btn.edit:hover {
  718. background-position: -378px -154px;
  719. }
  720. .l-sort__create-btn.edit:active {
  721. background-position: -425px -154px;
  722. }
  723. .context-menu.sort-order {
  724. display: inline-block;
  725. position: absolute;
  726. z-index: 3;
  727. left: 397px;
  728. overflow: hidden;
  729. top: 42px;
  730. background-color: rgb(255 255 255 / 95%);
  731. box-shadow: 0 2px 14px 0 rgb(20 20 20 / 35%);
  732. border-radius: 4px;
  733. border: 1px solid rgb(255 255 255 / 100%);
  734. }
  735. .context-menu.sort-order li {
  736. padding: 0;
  737. }
  738. .context-menu li {
  739. border-bottom: 1px solid #ddd;
  740. color: #2e2e2e;
  741. cursor: pointer;
  742. font-size: 0.8rem;
  743. padding: 12px;
  744. }
  745. .context-menu.sort-order span.name {
  746. display: inline-block;
  747. padding: 12px;
  748. width: 141px;
  749. font-weight: 500;
  750. }
  751. .context-menu.sort-order span.up {
  752. display: inline-block;
  753. padding: 12px 14px;
  754. width: 44px;
  755. }
  756. .context-menu.sort-order span.active {
  757. background-color: #4f8bbc !important;
  758. color: #4686b8;
  759. font-size: 0.8rem;
  760. background: linear-gradient(to bottom, rgb(255 255 255 / 60%) 0%, rgb(255 255 255 / 75%) 50%, rgb(255 255 255 / 95%) 95%);
  761. text-shadow: 0 1px rgb(255 255 255 / 80%);
  762. }
  763. .context-menu.sort-order span:hover {
  764. color: #3b9de8;
  765. text-shadow: 1px 1px rgb(255 255 255 / 50%);
  766. background: linear-gradient(to bottom, rgb(241 248 253 / 100%) 0%, rgb(218 236 250 / 100%) 50%, rgb(190 221 246 / 100%) 51%, rgb(227 240 251 / 100%) 100%);
  767. box-shadow:
  768. inset 0 0 1px #fff,
  769. inset 0 0 6px rgb(255 255 255 / 60%);
  770. transition: 0.2s;
  771. }
  772. .context-menu.sort-order span:active,
  773. .context-menu.sort-order span:focus {
  774. background: linear-gradient(to bottom, rgb(210 232 250 / 100%) 0%, rgb(187 220 247 / 100%) 50%, rgb(162 207 244 / 100%) 51%, rgb(194 224 248 / 100%) 100%);
  775. color: #046c98;
  776. text-shadow: 0 -1px 1px rgb(255 255 255 / 50%);
  777. box-shadow:
  778. inset 0 0 1px #fff,
  779. inset -1px -1px 4px rgb(220 220 220 / 40%);
  780. }
  781. .context-menu.sort-order span.name i.fas.fa-sort-amount-down,
  782. .context-menu.sort-order span.name i.fas.fa-sort-alpha-down {
  783. float: right;
  784. margin-top: 2px;
  785. }
  786. .context-menu.sort-order li:last-child {
  787. border-bottom: none;
  788. }
  789. .l-sort-toolbar {
  790. display: flex;
  791. text-transform: uppercase;
  792. font-size: 0.8rem;
  793. }
  794. .l-sort-toolbar td.toggle-all {
  795. padding-top: 7px;
  796. padding-right: 10px;
  797. }
  798. .l-sort-toolbar .sort-by {
  799. cursor: pointer;
  800. padding-top: 7px;
  801. padding-left: 10px;
  802. }
  803. .l-sort-toolbar .sort-by:hover {
  804. color: #4b4b4b;
  805. }
  806. .l-sort-toolbar .sort-by:hover b {
  807. color: #4b4b4b;
  808. }
  809. .l-sort-toolbar .sort-by:active {
  810. color: #3b9de8;
  811. }
  812. .l-sort-toolbar .sort-by:active b {
  813. color: #3b9de8;
  814. }
  815. .l-sort-toolbar .sort-by b {
  816. text-transform: uppercase;
  817. padding-left: 3px;
  818. font-size: 0.8rem;
  819. }
  820. .l-sort-toolbar .toggle-all:hover {
  821. color: #4b4b4b;
  822. }
  823. .l-sort-toolbar .toggle-all:active {
  824. color: #3b9de8;
  825. }
  826. .l-sort-toolbar .l-select {
  827. float: left;
  828. }
  829. .l-sort-toolbar td {
  830. vertical-align: middle;
  831. }
  832. .l-sort-toolbar__filter-apply {
  833. float: left;
  834. width: 32px;
  835. height: 30px;
  836. border: 1px solid #ddd;
  837. background-color: rgb(255 255 255 / 90%);
  838. border-radius: 4px;
  839. border-bottom-left-radius: 0;
  840. border-top-left-radius: 0;
  841. border-left: 0;
  842. box-shadow: inset 0 0 1px rgb(41 90 152 / 10%), inset 0 0 2px rgb(255 255 255 / 100%);
  843. text-shadow: 1px 1px rgb(255 255 255 / 90%);
  844. color: #069;
  845. padding: 0;
  846. font-size: 0.9em;
  847. }
  848. .l-sort-toolbar__filter-apply:hover {
  849. color: #39c;
  850. background-color: #fff;
  851. }
  852. .l-sort-toolbar__filter-apply:active {
  853. color: #409fd5;
  854. box-shadow: inset 1px 1px 0 rgb(0 0 0 / 10%);
  855. }
  856. .l-sort-toolbar__search {
  857. float: left;
  858. width: 25px;
  859. height: 25px;
  860. background-position: -333px -37px;
  861. border: none;
  862. }
  863. .l-sort-toolbar__search:hover {
  864. background-position: -368px -37px;
  865. border-color: #afafac;
  866. }
  867. .l-sort-toolbar__search:active {
  868. background-position: -404px -37px;
  869. border-color: #50bdb5;
  870. }
  871. .l-sort-toolbar__search--active {
  872. background-position: -404px -37px;
  873. border-color: #50bdb5;
  874. }
  875. .l-sort-toolbar .vst {
  876. padding: 0 12px;
  877. color: #777;
  878. text-transform: uppercase;
  879. font-size: 0.8rem;
  880. font-weight: 600;
  881. line-height: 30px;
  882. }
  883. .l-sort-toolbar .vst:hover {
  884. color: #c36;
  885. }
  886. .l-sort-toolbar .vst:active {
  887. color: #3b9de8;
  888. }
  889. .l-sort-toolbar .vst.selected {
  890. color: #c36;
  891. }
  892. .l-unit-toolbar__buttonstrip {
  893. display: flex;
  894. }
  895. .l-unit-toolbar__buttonstrip .button {
  896. min-width: 0;
  897. padding: 2px 10px;
  898. margin-right: 8px;
  899. }
  900. .l-unit-toolbar__buttonstrip .button:last-child {
  901. margin-right: 0;
  902. }
  903. .body-user .l-unit.animated.fadeIn {
  904. line-height: 2rem;
  905. }
  906. .body-user .actions-panel {
  907. line-height: 2rem;
  908. }
  909. .l-select {
  910. width: 178px;
  911. border: 1px solid #ddd;
  912. border-top-left-radius: 4px;
  913. border-bottom-left-radius: 4px;
  914. overflow-x: hidden;
  915. position: relative;
  916. display: inline-block;
  917. border-style: solid none solid solid;
  918. font-weight: 400;
  919. }
  920. .body-firewall.lang-bg .l-select {
  921. width: 120px;
  922. }
  923. .body-firewall.lang-el .l-select {
  924. max-width: 90px;
  925. }
  926. .body-mail.lang-el .l-select {
  927. max-width: 80px;
  928. }
  929. .body-mail.lang-el td.l-sort-toolbar__search-box {
  930. display: none;
  931. }
  932. .body-cron.lang-el .search-input {
  933. max-width: 80px;
  934. }
  935. .body-cron.lang-el .l-select {
  936. max-width: 120px;
  937. }
  938. .lang-ru .l-select {
  939. width: 170px;
  940. }
  941. .body-firewall.lang-ru .l-select {
  942. max-width: 125px;
  943. }
  944. .body-firewall.lang-ru .l-select {
  945. max-width: 125px;
  946. }
  947. .body-firewall.lang-es .l-select {
  948. max-width: 135px;
  949. }
  950. .lang-bg .l-stat__col-title {
  951. font-size: 0.75rem;
  952. font-weight: bold;
  953. }
  954. .lang-bg .l-stat__col .fas,
  955. .lang-bg .l-stat__col--active .fas {
  956. font-size: 0.85rem;
  957. }
  958. .l-select::after {
  959. pointer-events: none;
  960. width: 7px;
  961. height: 4px;
  962. margin-top: -2px;
  963. content: "";
  964. position: absolute;
  965. right: 10px;
  966. top: 50%;
  967. }
  968. .l-select select {
  969. border: 0;
  970. background-color: transparent;
  971. color: inherit;
  972. height: 28px;
  973. min-width: 175px;
  974. padding-left: 10px;
  975. background-image: url(/images/arrow.svg);
  976. background-repeat: no-repeat;
  977. background-size: 14px auto;
  978. background-position: right 7px center;
  979. appearance: none;
  980. }
  981. .l-select select:focus {
  982. border: 0;
  983. outline: 0;
  984. }
  985. .lang-ru .l-select select {
  986. min-width: 215px;
  987. }
  988. .l-select select option {
  989. padding: 7px;
  990. }
  991. .l-sort-toolbar .l-select {
  992. float: left;
  993. border: 1px solid #ddd;
  994. background-color: rgb(255 255 255 / 90%);
  995. border-radius: 4px;
  996. border-bottom-right-radius: 0;
  997. border-top-right-radius: 0;
  998. border-right: 0;
  999. text-shadow: 1px 1px rgb(255 255 255 / 90%);
  1000. }
  1001. .l-unit {
  1002. color: #707070;
  1003. padding: 0 0 0 14px;
  1004. overflow: hidden;
  1005. font-size: 0.8rem;
  1006. border-radius: 0;
  1007. border-left: 1px solid transparent;
  1008. border-right: 1px solid transparent;
  1009. }
  1010. .table-header {
  1011. font-size: 0.95em !important;
  1012. background: linear-gradient(to bottom, rgb(247 247 247 / 100%) 0%, rgb(255 255 255 / 100%) 100%) !important;
  1013. background-color: #fff;
  1014. border-left: 1px solid #d0d0d0 !important;
  1015. border-right: 1px solid #d0d0d0 !important;
  1016. border-bottom: 1px solid #d0d0d0 !important;
  1017. border-top: 1px solid #d0d0d0 !important;
  1018. text-shadow: 0 1px rgb(255 255 255 / 100%);
  1019. box-shadow: inset 0 1px 1px rgb(255 255 255 / 100%), inset 0 0 1px rgb(255 255 255 / 100%), inset 0 0 4px rgb(255 255 255 / 80%), 0 1px 4px rgb(140 140 140 / 35%) !important;
  1020. border-top-left-radius: 0;
  1021. border-top-right-radius: 0;
  1022. border-bottom-left-radius: 6px;
  1023. border-bottom-right-radius: 6px;
  1024. min-height: 28px;
  1025. color: #707070;
  1026. padding: 0 0 0 14px;
  1027. overflow: hidden;
  1028. line-height: 1rem;
  1029. margin-top: 1px;
  1030. position: sticky;
  1031. top: 145px;
  1032. z-index: 100;
  1033. padding-top: 4px;
  1034. padding-bottom: 4px;
  1035. }
  1036. .table-header:hover {
  1037. background-color: linear-gradient(to bottom, rgb(247 247 247 / 100%) 0%, rgb(255 255 255 / 100%) 100%) !important;
  1038. border-left: 1px solid #d0d0d0 !important;
  1039. border-right: 1px solid #d0d0d0 !important;
  1040. }
  1041. .table-header .fas {
  1042. font-size: 1rem;
  1043. }
  1044. .units .l-unit {
  1045. border-bottom: 1px solid #ddd;
  1046. border-left: 1px solid transparent;
  1047. border-right: 1px solid transparent;
  1048. }
  1049. .l-unit:hover,
  1050. .units .l-unit:hover {
  1051. box-shadow: 0 2px 10px rgb(150 150 150 / 20%);
  1052. background-color: #f8f8f8;
  1053. text-shadow: 0 1px rgb(255 255 255 / 50%);
  1054. border-left: 1px solid #ddd;
  1055. border-right: 1px solid #ddd;
  1056. }
  1057. .units .l-unit.l-unit--starred {
  1058. border-left: 2px solid #c36;
  1059. }
  1060. .units.active .l-unit.focus {
  1061. border-left: 2px solid #5edad0;
  1062. background-color: #eff5fc;
  1063. }
  1064. .units.active .l-unit.focus .l-unit__name {
  1065. color: #36b3a9;
  1066. }
  1067. .units.active .l-unit.focus .l-unit-toolbar__col--right {
  1068. display: block;
  1069. }
  1070. .units > div:last-child {
  1071. border-bottom: none;
  1072. }
  1073. .l-unit-ft {
  1074. color: #7c7c7c;
  1075. padding: 0 0 0 15px;
  1076. }
  1077. .l-unit:hover .l-unit-toolbar__col--right {
  1078. display: block;
  1079. }
  1080. .l-unit--blue {
  1081. border-left: 2px solid #3b9de8;
  1082. }
  1083. .l-unit--suspended {
  1084. background-color: #eaeaea !important;
  1085. color: #c0c0c0;
  1086. }
  1087. .l-unit--suspended a {
  1088. color: #c0c0c0 !important;
  1089. }
  1090. .units .l-unit.l-unit--outdated {
  1091. background-color: #ffcaca;
  1092. color: #4b4b4b;
  1093. }
  1094. .body-updates .units .l-unit.l-unit--outdated .fas.fa-box-open {
  1095. color: #da1010;
  1096. }
  1097. .l-unit--suspended .l-unit__name,
  1098. .l-unit--suspended b,
  1099. .l-unit--outdated .l-unit__name,
  1100. .l-unit--outdated b {
  1101. color: #c0c0c0;
  1102. }
  1103. .l-unit--outdated .l-unit__name {
  1104. color: #333;
  1105. }
  1106. .l-unit--outdated b {
  1107. color: #4b4b4b;
  1108. }
  1109. .l-unit--suspended .l-percent {
  1110. border-color: #fff;
  1111. }
  1112. .l-unit--suspended .l-percent__fill {
  1113. background-color: #fff;
  1114. }
  1115. .l-unit--suspended .l-unit__name,
  1116. .l-unit--suspended .l-unit__name span {
  1117. color: #adadad;
  1118. }
  1119. .l-unit--suspended.selected .l-unit__name,
  1120. .l-unit--suspended.selected .l-unit__name span {
  1121. color: #777;
  1122. }
  1123. .l-unit--suspended.selected {
  1124. background-color: #f2eab8 !important;
  1125. color: #b2ac87 !important;
  1126. }
  1127. .l-unit--outdated.selected {
  1128. background: #ff9494 !important;
  1129. color: #333 !important;
  1130. text-shadow: none !important;
  1131. }
  1132. .l-unit--suspended.selected .l-unit__name,
  1133. .l-unit--suspended.selected b,
  1134. .l-unit--outdated.selected .l-unit__name,
  1135. .l-unit--outdated.selected b,
  1136. .l-unit--suspended.selected .l-percent,
  1137. .l-unit--suspended.selected .l-percent__fill,
  1138. .l-unit--suspended.selected .l-unit__name,
  1139. .l-unit--suspended.selected .l-unit__name span {
  1140. color: #333 !important;
  1141. }
  1142. .l-unit.selected .l-percent {
  1143. border-bottom: 1px dotted #777;
  1144. }
  1145. .l-unit--selected {
  1146. background-color: #d1eddc;
  1147. }
  1148. .l-unit-toolbar {
  1149. display: none;
  1150. }
  1151. .l-unit label {
  1152. margin-bottom: 20px;
  1153. }
  1154. .l-unit__columns {
  1155. display: table;
  1156. width: 100%;
  1157. }
  1158. .l-unit__col {
  1159. display: table-cell;
  1160. padding-top: 12px;
  1161. vertical-align: top;
  1162. padding-bottom: 10px;
  1163. cursor: default;
  1164. }
  1165. .l-unit__col--left {
  1166. width: 110px;
  1167. padding-right: 10px;
  1168. }
  1169. .units.compact .l-unit__col--left {
  1170. vertical-align: top;
  1171. }
  1172. .l-unit__col--right.total {
  1173. padding-left: 16px;
  1174. }
  1175. .l-unit__col--right.back {
  1176. padding-left: 78px;
  1177. }
  1178. .l-unit__date {
  1179. font-size: 11px;
  1180. margin-top: 10px;
  1181. padding-bottom: 30px;
  1182. text-transform: uppercase;
  1183. }
  1184. .l-unit__suspended {
  1185. display: none;
  1186. font-size: 0.8rem;
  1187. font-weight: 600;
  1188. margin-top: 36px;
  1189. text-transform: uppercase;
  1190. margin-bottom: 14px;
  1191. }
  1192. .units.compact .l-unit__suspended {
  1193. margin-top: 1px;
  1194. }
  1195. .l-unit--outdated .l-unit__suspended,
  1196. .l-unit--suspended .l-unit__suspended {
  1197. display: block;
  1198. }
  1199. .l-unit.l-unit--outdated .l-unit__date {
  1200. color: #d24c4c;
  1201. font-size: 10px;
  1202. text-transform: uppercase;
  1203. font-weight: 600;
  1204. }
  1205. .l-unit__name {
  1206. color: #414141;
  1207. font-size: 22px;
  1208. margin-top: 10px;
  1209. margin-bottom: 10px;
  1210. font-weight: 500;
  1211. letter-spacing: -0.02em;
  1212. }
  1213. .l-unit__servername {
  1214. color: #414141;
  1215. font-size: 28px;
  1216. margin-bottom: 10px;
  1217. font-weight: 300;
  1218. letter-spacing: -0.02em;
  1219. }
  1220. .l-unit__stats.separate,
  1221. .l-unit__name.separate {
  1222. padding-bottom: 15px;
  1223. }
  1224. .body-stats .l-unit__name {
  1225. margin-left: -42px;
  1226. margin-top: 12px;
  1227. color: #606060;
  1228. }
  1229. .l-unit__name.small {
  1230. font-size: 16px;
  1231. }
  1232. .l-unit__name.small-2 {
  1233. font-size: 20px;
  1234. }
  1235. .l-unit__name span {
  1236. color: #999;
  1237. margin-left: 30px;
  1238. font-size: 0.85rem;
  1239. font-style: italic;
  1240. }
  1241. .l-unit__name span:first-of-type {
  1242. margin-left: 39px;
  1243. }
  1244. .l-unit__name b {
  1245. font-weight: normal;
  1246. font-style: italic;
  1247. }
  1248. .l-unit__ip {
  1249. margin-bottom: 26px;
  1250. font-size: 0.8rem;
  1251. color: #383838;
  1252. }
  1253. .l-unit__ip span {
  1254. padding-left: 3px;
  1255. padding-right: 3px;
  1256. }
  1257. .display-ip {
  1258. font-size: 0.8rem;
  1259. }
  1260. .display-ip span {
  1261. padding-left: 3px;
  1262. padding-right: 3px;
  1263. }
  1264. .l-unit__stats {
  1265. margin-bottom: 10px;
  1266. margin-left: 15%;
  1267. border-left: 1px solid transparent !important;
  1268. border-right: 1px solid transparent !important;
  1269. }
  1270. .lang-ar .l-unit__stats {
  1271. margin-left: 20%;
  1272. }
  1273. .l-unit__stats:hover {
  1274. border-left: 1px solid transparent !important;
  1275. border-right: 1px solid transparent !important;
  1276. box-shadow: none !important;
  1277. background: none !important;
  1278. }
  1279. .l-unit__stats table {
  1280. width: 100%;
  1281. table-layout: fixed;
  1282. margin-top: -54px;
  1283. margin-left: -20px;
  1284. }
  1285. .l-unit__stats td {
  1286. height: 32px;
  1287. padding-bottom: 4px;
  1288. vertical-align: middle;
  1289. }
  1290. .body-stats .l-unit__stat-col--left {
  1291. width: 130px;
  1292. }
  1293. .l-unit__stat-col.l-unit__stat-col--left.icon-pad-right {
  1294. width: 180px;
  1295. }
  1296. .body-stats .l-unit__stat-col--right {
  1297. float: right;
  1298. }
  1299. .l-unit__stat-col--left a,
  1300. .l-unit__stat-col--left a:visited {
  1301. color: #353535;
  1302. }
  1303. .l-unit__stat-col--left a:hover {
  1304. color: #4c8bbe;
  1305. }
  1306. .l-unit__stat-col--left {
  1307. float: left;
  1308. width: 110px;
  1309. }
  1310. .l-unit__stat-col--left.border {
  1311. border-left: 1px solid #ebebeb;
  1312. }
  1313. .l-unit__stat-col--left.border-clear {
  1314. border-left: 1px solid transparent;
  1315. }
  1316. .l-unit__stat-col--left.truncate {
  1317. overflow: hidden;
  1318. text-overflow: ellipsis;
  1319. white-space: nowrap;
  1320. }
  1321. .l-unit__stat-col--left.super-compact {
  1322. width: 50px;
  1323. white-space: nowrap;
  1324. }
  1325. .l-unit__stat-col--left.compact {
  1326. width: 60px;
  1327. }
  1328. .l-unit__stat-col--left.compact-1 {
  1329. width: 70px;
  1330. }
  1331. .l-unit__stat-col--left.compact-2 {
  1332. width: 80px;
  1333. }
  1334. .l-unit__stat-col--left.compact-3 {
  1335. width: 90px;
  1336. }
  1337. .l-unit__stat-col--left.compact-4 {
  1338. width: 130px;
  1339. }
  1340. .l-unit__stat-col--left.compact-5 {
  1341. width: 160px;
  1342. }
  1343. .l-unit__stat-col--left.wide {
  1344. width: 190px;
  1345. }
  1346. .l-unit__stat-col--left.wide-2 {
  1347. width: 230px;
  1348. }
  1349. .l-unit__stat-col--left.wide-3 {
  1350. width: 250px;
  1351. }
  1352. .l-unit__stat-col--left.wide-4 {
  1353. width: 320px;
  1354. }
  1355. .l-unit__stat-col--left.wide-5 {
  1356. width: 350px;
  1357. }
  1358. .l-unit__stat-col--left.wide-6 {
  1359. width: 440px;
  1360. }
  1361. .l-unit__stat-col--left.wide-7 {
  1362. width: 550px;
  1363. }
  1364. .l-unit__stat-col--left.small-2 {
  1365. line-height: 11px;
  1366. }
  1367. .l-unit__stat-col--left.tiny {
  1368. font-size: 0.8rem;
  1369. }
  1370. .l-unit__stat-col--left.tiny b {
  1371. font-size: 18px;
  1372. }
  1373. .l-unit__stat-col--right {
  1374. float: left;
  1375. max-width: 170px;
  1376. }
  1377. .l-unit-toolbar__col--left {
  1378. float: left;
  1379. margin-left: -15px;
  1380. margin-top: 0;
  1381. padding-bottom: 0;
  1382. padding-left: 15px;
  1383. padding-top: 15px;
  1384. width: 30px;
  1385. cursor: pointer;
  1386. display: none;
  1387. }
  1388. .l-unit-toolbar__col--right {
  1389. float: right;
  1390. }
  1391. body.mobile .l-unit-toolbar__col--right {
  1392. display: block;
  1393. }
  1394. .l-unit-toolbar .shortcut {
  1395. display: none;
  1396. }
  1397. .units.active .l-unit.focus .l-unit-toolbar .shortcut {
  1398. display: block;
  1399. background-color: #69a298;
  1400. border-radius: 13px;
  1401. color: #fff;
  1402. cursor: pointer;
  1403. font-size: 0.8rem;
  1404. font-weight: 600;
  1405. line-height: 25px;
  1406. padding-left: 7px;
  1407. padding-right: 9px;
  1408. position: absolute;
  1409. right: 3px;
  1410. top: 3px;
  1411. }
  1412. .units.active .l-unit.focus .l-unit-toolbar .shortcut.delete {
  1413. font-size: 10px;
  1414. padding-left: 2px;
  1415. padding-right: 5px;
  1416. text-transform: capitalize;
  1417. }
  1418. .units.active .l-unit.focus .l-unit-toolbar .shortcut.enter {
  1419. font-size: 17px;
  1420. padding-left: 1px;
  1421. padding-right: 7px;
  1422. }
  1423. .units.active .l-unit.focus .l-unit-toolbar i {
  1424. background: none;
  1425. }
  1426. .l-unit__stat-col.volume {
  1427. font-size: 0.8rem;
  1428. line-height: 17px;
  1429. float: right;
  1430. }
  1431. .actions-panel {
  1432. line-height: 1.1rem;
  1433. }
  1434. .actions-panel__col {
  1435. display: inline-block;
  1436. min-width: 18px;
  1437. text-transform: uppercase;
  1438. }
  1439. .actions-panel__col a {
  1440. color: #777;
  1441. font-weight: 600;
  1442. font-size: 0.9rem;
  1443. display: inline-block;
  1444. cursor: pointer;
  1445. }
  1446. .lang-ru .actions-panel__col a {
  1447. font-size: 0.9rem;
  1448. padding-top: 1px;
  1449. }
  1450. .lang-tw .actions-panel__col a {
  1451. font-size: 0.9rem;
  1452. font-weight: normal;
  1453. }
  1454. .lang-ar .actions-panel__col a {
  1455. font-size: 0.9rem;
  1456. font-weight: normal;
  1457. }
  1458. .l-unit__col .actions-panel .fas {
  1459. display: none;
  1460. }
  1461. .l-unit__col:hover .actions-panel .fas {
  1462. display: inline-block;
  1463. }
  1464. .icon-pad-left {
  1465. margin-right: 6px;
  1466. }
  1467. .icon-pad-right {
  1468. margin-right: 6px;
  1469. }
  1470. .l-unit__stat-cols {
  1471. padding-right: 10px;
  1472. }
  1473. .l-unit__stat-cols.last {
  1474. padding-right: 0;
  1475. }
  1476. .l-unit__stat-cols.graph {
  1477. width: 242px;
  1478. }
  1479. .l-unit__stat-cols.tiny {
  1480. font-size: 12px;
  1481. line-height: 18px;
  1482. }
  1483. .l-percent {
  1484. border-bottom: 3px solid #e6e6e6;
  1485. margin-top: 2px;
  1486. width: 242px;
  1487. }
  1488. .l-percent__fill {
  1489. background-color: #54e000;
  1490. height: 3px;
  1491. position: relative;
  1492. bottom: -3px;
  1493. }
  1494. .statistics-count {
  1495. min-width: 24px;
  1496. text-align: right;
  1497. border-bottom: 1px dotted #ddd;
  1498. border-right: 1px dotted #ddd;
  1499. padding-right: 4px;
  1500. }
  1501. #vstobjects .l-center {
  1502. padding-top: 20px;
  1503. padding-bottom: 30px;
  1504. font-size: 0.8rem;
  1505. }
  1506. .timer-container {
  1507. height: 30px;
  1508. }
  1509. .timer-button {
  1510. cursor: pointer;
  1511. text-decoration: underline;
  1512. margin: 6px 0 2px 2px;
  1513. width: 20px;
  1514. float: left;
  1515. }
  1516. .spinner {
  1517. -webkit-mask-box-image:
  1518. radial-gradient(
  1519. center,
  1520. ellipse cover,
  1521. rgb(0 0 0 / 100%) 68%,
  1522. rgb(0 0 0 / 0%) 69.5%
  1523. );
  1524. background: #eee;
  1525. width: 20px;
  1526. height: 20px;
  1527. position: relative;
  1528. margin: 4px 0 2px 2px;
  1529. clip-path: ellipse(10px 10px at 50% 50%);
  1530. }
  1531. .spinner-inner {
  1532. position: absolute;
  1533. top: 0;
  1534. left: 0;
  1535. background: transparent;
  1536. border-width: 10px;
  1537. width: 0;
  1538. height: 0;
  1539. border-style: solid;
  1540. border-color: transparent;
  1541. border-top-color: rgb(124 124 124 / 100%);
  1542. transform: rotate(-45deg);
  1543. animation: inner 15s linear infinite;
  1544. }
  1545. .spinner-mask {
  1546. position: absolute;
  1547. top: 0;
  1548. left: 0;
  1549. background: transparent;
  1550. border-width: 10px;
  1551. width: 0;
  1552. height: 0;
  1553. border-style: solid;
  1554. border-color: transparent;
  1555. border-top-color: #eee;
  1556. transform: rotate(-45deg);
  1557. animation: mask 15s linear infinite;
  1558. }
  1559. .spinner-mask::after,
  1560. .spinner-mask-two {
  1561. display: block;
  1562. content: "";
  1563. opacity: 0;
  1564. position: absolute;
  1565. top: 0;
  1566. left: 0;
  1567. background: transparent;
  1568. border-width: 10px;
  1569. width: 0;
  1570. height: 0;
  1571. border-style: solid;
  1572. border-color: transparent;
  1573. border-top-color: rgb(124 124 124 / 100%);
  1574. transform: rotate(45deg);
  1575. animation: mask-two 15s linear infinite;
  1576. }
  1577. @keyframes inner {
  1578. 0% {
  1579. transform: rotate(-45deg);
  1580. }
  1581. 25% { border-left-color: transparent; }
  1582. 26% {
  1583. border-left-color: rgb(124 124 124 / 100%);
  1584. }
  1585. 50% { border-bottom-color: transparent; }
  1586. 51% {
  1587. border-bottom-color: rgb(124 124 124 / 100%);
  1588. }
  1589. 75% { border-right-color: transparent; }
  1590. 76% {
  1591. border-right-color: rgb(124 124 124 / 100%);
  1592. }
  1593. 100% {
  1594. transform: rotate(315deg);
  1595. border-left-color: rgb(124 124 124 / 100%);
  1596. border-bottom-color: rgb(124 124 124 / 100%);
  1597. border-right-color: rgb(124 124 124 / 100%);
  1598. }
  1599. }
  1600. @keyframes mask {
  1601. 0% {
  1602. transform: rotate(-45deg);
  1603. }
  1604. 75% {
  1605. transform: rotate(-45deg);
  1606. }
  1607. 100% {
  1608. transform: rotate(45deg);
  1609. }
  1610. }
  1611. @keyframes mask-two {
  1612. 0% {
  1613. opacity: 0;
  1614. }
  1615. 25% {
  1616. opacity: 0;
  1617. }
  1618. 26% {
  1619. opacity: 1;
  1620. }
  1621. 100% {
  1622. opacity: 1;
  1623. }
  1624. }
  1625. @keyframes whee {
  1626. from {
  1627. transform: rotate(0deg);
  1628. filter: sepia() hue-rotate(0deg) contrast(95%);
  1629. }
  1630. to {
  1631. transform: rotate(360deg);
  1632. filter: sepia() hue-rotate(360deg) contrast(95%);
  1633. }
  1634. }
  1635. .paused div {
  1636. animation-play-state: paused;
  1637. }
  1638. /* form styles */
  1639. .form-container {
  1640. font-size: 0.85rem;
  1641. padding: 1em 1em 2em 9rem;
  1642. }
  1643. .vst-error {
  1644. color: #f33;
  1645. font-weight: 600;
  1646. overflow: hidden;
  1647. max-width: 500px;
  1648. text-overflow: ellipsis;
  1649. white-space: nowrap;
  1650. }
  1651. .vst-ok {
  1652. color: #53ba55;
  1653. font-weight: 600;
  1654. overflow: hidden;
  1655. max-width: 500px;
  1656. text-overflow: ellipsis;
  1657. white-space: nowrap;
  1658. font-size: 0.8rem;
  1659. }
  1660. .l-unit-toolbar__buttonstrip .vst-ok,
  1661. .l-unit-toolbar__buttonstrip .vst-error {
  1662. margin-right: 20px;
  1663. }
  1664. .vst-ok a {
  1665. color: #326b9b;
  1666. }
  1667. .vst-ok a:hover {
  1668. color: #c36;
  1669. }
  1670. .vst-ok a:active {
  1671. color: #d53067;
  1672. }
  1673. .jump-top {
  1674. margin-top: -60px;
  1675. }
  1676. .jump-small-top {
  1677. margin-top: -12px;
  1678. }
  1679. .form-label {
  1680. margin-bottom: 5px;
  1681. display: inline-block;
  1682. }
  1683. .form-label,
  1684. .form-check label {
  1685. color: #4b4b4b;
  1686. font-weight: 600;
  1687. }
  1688. .form-control {
  1689. background-color: #fff;
  1690. border: 1px solid #cfcfcf;
  1691. display: block;
  1692. width: 100%;
  1693. padding: 8px 12px;
  1694. font-size: 0.8rem;
  1695. font-weight: normal;
  1696. color: #4e4e4e;
  1697. border-radius: 4px;
  1698. line-height: 1.5;
  1699. appearance: none;
  1700. box-shadow: 0 1px 4px rgb(0 0 0 / 15%);
  1701. }
  1702. .form-control:hover {
  1703. border: 1px solid #94c8f0;
  1704. }
  1705. .form-control:focus {
  1706. border: 1px solid #008fee;
  1707. background-color: #d7f9ff;
  1708. color: #333;
  1709. }
  1710. .form-control.list-editor {
  1711. border: none;
  1712. box-shadow: none;
  1713. position: absolute;
  1714. padding-top: 7px;
  1715. padding-bottom: 7px;
  1716. width: auto;
  1717. top: 2px;
  1718. left: 2px;
  1719. right: 23px;
  1720. }
  1721. .form-control.list-editor:focus {
  1722. background-color: #fff;
  1723. }
  1724. .form-select {
  1725. display: block;
  1726. width: 100%;
  1727. font-weight: normal;
  1728. font-size: 0.8rem;
  1729. padding: 8px 30px 8px 12px;
  1730. line-height: 1.5;
  1731. border-radius: 4px;
  1732. background-color: #fff;
  1733. border: 1px solid #ccc;
  1734. color: #4e4e4e;
  1735. appearance: none;
  1736. background-image: url(/images/arrow.svg);
  1737. background-size: 16px auto;
  1738. background-repeat: no-repeat;
  1739. background-position: right 9px center;
  1740. text-shadow: 0 0 0 #4b4b4b;
  1741. box-shadow: 0 1px 4px rgb(0 0 0 / 15%);
  1742. }
  1743. .form-select:hover {
  1744. border: 1px solid #94c8f0;
  1745. }
  1746. .form-select:focus {
  1747. border: 1px solid #008fee;
  1748. }
  1749. .form-check {
  1750. position: relative;
  1751. padding-left: 20px;
  1752. margin-left: 3px;
  1753. min-height: 24px;
  1754. }
  1755. .form-check-input {
  1756. position: absolute;
  1757. margin-top: 3px;
  1758. margin-left: -20px;
  1759. }
  1760. .form-control:disabled,
  1761. .form-select:disabled {
  1762. background-color: #e7e7e7;
  1763. text-shadow: 1px 1px rgb(255 255 255 / 100%);
  1764. color: #686868;
  1765. }
  1766. .form-control:focus:disabled {
  1767. border-color: #dedede;
  1768. background-color: #f1f1f1;
  1769. }
  1770. .form-control:disabled:hover,
  1771. .form-select:disabled:hover {
  1772. border-color: #cfcfcf;
  1773. }
  1774. #advanced-options .u-console {
  1775. width: 833px;
  1776. height: 600px !important;
  1777. }
  1778. .generate {
  1779. color: #326b9b;
  1780. text-decoration: underline;
  1781. cursor: pointer;
  1782. margin-left: -3px;
  1783. padding: 0 3px;
  1784. }
  1785. .generate:hover {
  1786. background-color: #c36;
  1787. border-color: #c36;
  1788. color: #fff;
  1789. }
  1790. .generate:active {
  1791. background-color: #f7d616;
  1792. border-color: #f7d616;
  1793. }
  1794. .lets-encrypt-note {
  1795. color: #89a40a !important;
  1796. font-style: italic;
  1797. font-weight: normal !important;
  1798. height: 30px;
  1799. padding-top: 10px;
  1800. vertical-align: top;
  1801. }
  1802. .toggle-password {
  1803. color: #aaa;
  1804. z-index: 1;
  1805. position: absolute;
  1806. top: 9px;
  1807. right: 12px;
  1808. }
  1809. .toggle-psw-visibility-icon {
  1810. cursor: pointer;
  1811. opacity: 1;
  1812. margin: -2px;
  1813. }
  1814. .show-passwords-enabled-action {
  1815. opacity: 0.4;
  1816. }
  1817. .ftp-path-value,
  1818. .hint {
  1819. color: #777;
  1820. font-size: 0.8rem;
  1821. font-style: italic;
  1822. font-weight: normal;
  1823. }
  1824. .ftp-path-prefix {
  1825. padding-top: 12px;
  1826. font-size: 0.8rem;
  1827. color: #555;
  1828. }
  1829. .dialog {
  1830. display: none;
  1831. }
  1832. /* Hide the default close button in dialog header */
  1833. .ui-dialog-titlebar-close {
  1834. display: none;
  1835. }
  1836. /* Set high z-index for dialog to override .l-header */
  1837. .ui-front {
  1838. z-index: 1000;
  1839. }
  1840. /* Buttons
  1841. ========================================================================== */
  1842. .button {
  1843. cursor: pointer;
  1844. display: inline-block;
  1845. line-height: 1.5;
  1846. font-size: 0.85rem;
  1847. font-weight: 500;
  1848. padding: 3px 25px;
  1849. user-select: none;
  1850. color: #30659d;
  1851. min-width: 100px;
  1852. text-align: center;
  1853. text-shadow: 0 1px 1px rgb(255 255 255 / 85%);
  1854. border: 1px solid #0083db;
  1855. border-radius: 3px;
  1856. background-color: #3b9de8;
  1857. background: linear-gradient(to bottom, rgb(235 243 249 / 100%) 0%, rgb(192 216 236 / 100%) 51%, rgb(223 235 245 / 100%) 100%);
  1858. box-shadow:
  1859. 0 1px 3px rgb(0 0 0 / 25%),
  1860. inset 0 0 1px #fff,
  1861. inset 0 0 3px rgb(255 255 255 / 50%);
  1862. }
  1863. .button .fas {
  1864. margin-right: 6px;
  1865. }
  1866. .button:hover {
  1867. color: #0077c6;
  1868. text-shadow: 1px 1px rgb(255 255 255 / 50%);
  1869. border-color: #54a6e5;
  1870. background: linear-gradient(to bottom, rgb(241 248 253 / 100%) 0%, rgb(190 221 246 / 100%) 51%, rgb(227 240 251 / 100%) 100%);
  1871. box-shadow:
  1872. 0 1px 3px rgb(0 0 0 / 25%),
  1873. inset 0 0 1px #fff,
  1874. inset 0 0 6px rgb(255 255 255 / 60%);
  1875. transition: 0.2s;
  1876. }
  1877. .button:active,
  1878. .button:focus {
  1879. color: #517bab;
  1880. text-shadow: 0 -1px 2px rgb(255 255 255 / 85%);
  1881. border-color: #0066b4;
  1882. background: linear-gradient(to bottom, rgb(194 224 248 / 100%) 0%, rgb(162 207 244 / 100%) 51%, rgb(210 232 250 / 100%) 100%);
  1883. box-shadow:
  1884. 0 1px 2px rgb(0 0 0 / 20%),
  1885. inset 0 0 1px #fff,
  1886. inset -1px -1px 4px rgb(220 220 220 / 40%);
  1887. }
  1888. .button-secondary {
  1889. color: #717171;
  1890. border-color: #aaa;
  1891. background: linear-gradient(to bottom, rgb(250 250 250 / 100%) 0%, rgb(230 230 230 / 100%) 51%, rgb(242 242 242 / 100%) 100%);
  1892. }
  1893. .button-secondary:hover {}
  1894. .button-secondary:active,
  1895. .button-secondary:focus {}
  1896. .button-danger:hover {
  1897. background: linear-gradient(to bottom, #fbf2f1 0%, #f6b4ac 51%, #fde6e3 100%);
  1898. color: #f4301a;
  1899. text-shadow: 0 1px rgb(255 255 255 / 50%);
  1900. border-color: #f27e71;
  1901. }
  1902. .button-danger:active,
  1903. .button-danger:focus {
  1904. background: linear-gradient(to bottom, #fcd0ca 0%, #f5a69d 50%, #f9e3df 100%);
  1905. color: #ce1500;
  1906. text-shadow:
  1907. 0 1px 1px rgb(255 255 255 / 20%),
  1908. 0 -1px 1px rgb(255 255 255 / 60%);
  1909. border-color: #f4301a;
  1910. }
  1911. .to-top,
  1912. .to-shortcuts {
  1913. display: flex;
  1914. position: fixed;
  1915. border-radius: 50%;
  1916. background-color: #eee;
  1917. justify-content: center;
  1918. align-items: center;
  1919. z-index: 200;
  1920. width: 34px;
  1921. height: 34px;
  1922. text-shadow: 1px 1px #fff;
  1923. box-shadow:
  1924. 0 2px 4px rgb(120 120 120 / 25%),
  1925. inset 0 0 1px rgb(255 255 255 / 90%);
  1926. top: 90%;
  1927. color: #717171;
  1928. border: 1px solid #aaa;
  1929. background: linear-gradient(to bottom, rgb(250 250 250 / 100%) 0%, rgb(230 230 230 / 100%) 51%, rgb(242 242 242 / 100%) 100%);
  1930. }
  1931. .to-top {
  1932. right: 4%;
  1933. }
  1934. .to-shortcuts {
  1935. right: 8%;
  1936. }
  1937. .to-top:hover,
  1938. .to-shortcuts:hover {
  1939. color: #0077c6;
  1940. text-shadow: 1px 1px rgb(255 255 255 / 50%);
  1941. border: 1px solid #54a6e5;
  1942. background: linear-gradient(to bottom, rgb(241 248 253 / 100%) 0%, rgb(190 221 246 / 100%) 51%, rgb(227 240 251 / 100%) 100%);
  1943. box-shadow:
  1944. 0 1px 3px rgb(0 0 0 / 25%),
  1945. inset 0 0 1px #fff,
  1946. inset 0 0 6px rgb(255 255 255 / 60%);
  1947. transition: 0.2s;
  1948. }
  1949. .to-top:focus,
  1950. .to-shortcuts:focus {
  1951. border: 1px solid #0066b4;
  1952. background: linear-gradient(to bottom, rgb(194 224 248 / 100%) 0%, rgb(162 207 244 / 100%) 51%, rgb(210 232 250 / 100%) 100%);
  1953. color: #517bab;
  1954. text-shadow: 0 -1px 2px rgb(255 255 255 / 85%);
  1955. box-shadow:
  1956. 0 1px 2px rgb(0 0 0 / 20%),
  1957. inset 0 0 1px #fff,
  1958. inset -1px -1px 4px rgb(220 220 220 / 40%);
  1959. }
  1960. .to-top:active,
  1961. .to-shortcuts:active {
  1962. border: 1px solid #378ccd;
  1963. background-color: #378ccd;
  1964. }
  1965. .additional-control {
  1966. color: #326b9b;
  1967. border-bottom: 0 solid #326b9b;
  1968. font-size: 0.8rem;
  1969. cursor: pointer;
  1970. text-transform: uppercase;
  1971. font-weight: 600;
  1972. padding: 2px 2px 0;
  1973. text-decoration: none;
  1974. }
  1975. .additional-control:hover {
  1976. background-color: #c36;
  1977. border-color: #c36;
  1978. color: #fff;
  1979. }
  1980. .additional-control:active {
  1981. color: #fff;
  1982. background-color: #aaa;
  1983. }
  1984. .additional-control.add:hover {
  1985. background-color: #3b9de8;
  1986. border-color: #3b9de8;
  1987. }
  1988. .additional-control.add:active {
  1989. background-color: #54a6e5;
  1990. border-color: #54a6e5;
  1991. }
  1992. .unlim-trigger {
  1993. cursor: pointer;
  1994. position: absolute;
  1995. top: 13px;
  1996. right: 12px;
  1997. z-index: 1;
  1998. font-size: 0.8rem;
  1999. }
  2000. .optional {
  2001. font-size: 0.8rem;
  2002. padding: 0 0 0 6px;
  2003. font-weight: normal;
  2004. }
  2005. .mail-infoblock-td {
  2006. vertical-align: top;
  2007. }
  2008. .mail-infoblock {
  2009. font-size: 0.85rem;
  2010. color: #777;
  2011. border: 1px solid #d9d9d9;
  2012. padding: 6px 6px 6px 18px;
  2013. margin-right: 50px;
  2014. min-width: 320px;
  2015. overflow: hidden;
  2016. box-shadow: 0 1px 4px rgb(0 0 0 / 15%);
  2017. border-radius: 4px;
  2018. }
  2019. .mail-infoblock:hover {
  2020. overflow: visible;
  2021. }
  2022. .mail-infoblock td {
  2023. color: #505050;
  2024. font-size: 0.75rem;
  2025. height: 20px;
  2026. font-weight: normal;
  2027. padding-bottom: 4px;
  2028. }
  2029. .mail-infoblock td:first-child {
  2030. padding-right: 14px;
  2031. font-weight: 600;
  2032. }
  2033. .mail-infoblock div {
  2034. white-space: nowrap;
  2035. }
  2036. .mail-infoblock a {
  2037. color: #326b9b;
  2038. }
  2039. .mail-infoblock a:hover {
  2040. color: #c36;
  2041. }
  2042. #v_password {
  2043. white-space: inherit;
  2044. word-break: break-word;
  2045. }
  2046. .additional-info {
  2047. margin-top: 12px;
  2048. width: 400px;
  2049. }
  2050. .additional-info td {
  2051. font-size: 0.75rem;
  2052. height: 20px;
  2053. font-weight: normal;
  2054. line-height: 0.95rem;
  2055. min-width: 70px;
  2056. }
  2057. .additional-info td.details {
  2058. padding-left: 20px !important;
  2059. }
  2060. .body-login,
  2061. .body-reset {
  2062. display: flex;
  2063. align-items: center;
  2064. justify-content: center;
  2065. background: rgb(102 158 231);
  2066. background: radial-gradient(circle, rgb(102 158 231 / 100%) 0%, rgb(43 86 177 / 100%) 100%);
  2067. }
  2068. .body-login .debug-panel-header,
  2069. .body-login .debug-panel-contents,
  2070. .body-reset .debug-panel-header,
  2071. .body-reset .debug-panel-contents {
  2072. display: none;
  2073. }
  2074. .login {
  2075. font-size: 0.85rem;
  2076. padding: 60px 50px;
  2077. min-width: 320px;
  2078. margin-bottom: 20%;
  2079. background-color: rgb(255 255 255 / 70%);
  2080. border-radius: 6px;
  2081. box-shadow:
  2082. 0 8px 25px rgb(0 0 0 / 30%),
  2083. inset 0 0 2px rgb(255 255 255 / 100%);
  2084. }
  2085. @media screen and (min-width: 768px) {
  2086. .login {
  2087. display: flex;
  2088. align-items: flex-end;
  2089. width: 100%;
  2090. max-width: 500px;
  2091. }
  2092. .login form {
  2093. flex-grow: 1;
  2094. }
  2095. }
  2096. .login-title {
  2097. color: #4b4b4b;
  2098. font-size: 1.05rem;
  2099. font-weight: 500;
  2100. margin-bottom: 30px;
  2101. }
  2102. .login .error {
  2103. color: #be5abf;
  2104. margin-bottom: 20px;
  2105. }
  2106. .login .label-link {
  2107. color: #326b9b;
  2108. text-transform: uppercase;
  2109. }
  2110. .login .label-link:hover {
  2111. color: #0077c6;
  2112. }
  2113. .form-title {
  2114. color: #4b4b4b;
  2115. font-size: 1.4rem;
  2116. font-weight: 500;
  2117. padding-bottom: 30px;
  2118. letter-spacing: -0.01em;
  2119. }
  2120. .section-title {
  2121. display: flex;
  2122. color: #4b4b4b;
  2123. cursor: pointer;
  2124. justify-content: space-between;
  2125. align-items: center;
  2126. font-size: 1.05rem;
  2127. font-weight: 600;
  2128. padding-top: 28px;
  2129. padding-bottom: 12px;
  2130. letter-spacing: -0.01em;
  2131. border-bottom: 1px solid #ccc;
  2132. }
  2133. .section-toggle-icon {
  2134. font-size: 13.6px;
  2135. }
  2136. .qr-code {
  2137. border: 1px solid #cfcfcf;
  2138. border-radius: 4px;
  2139. box-shadow: 0 1px 4px rgb(0 0 0 / 15%);
  2140. }
  2141. .l-unit.selected {
  2142. background-color: #f8f8f8;
  2143. color: #4b4b4b;
  2144. box-shadow: 0 2px 10px rgb(150 150 150 / 20%);
  2145. text-shadow: 0 1px rgb(255 255 255 / 50%);
  2146. border-left: 1px solid #ddd;
  2147. border-right: 1px solid #ddd;
  2148. }
  2149. .l-unit.selected:hover {
  2150. background-color: #fff5ce;
  2151. color: #4b4b4b;
  2152. box-shadow: 0 2px 14px rgb(150 150 150 / 25%);
  2153. text-shadow: 0 1px rgb(255 255 255 / 60%);
  2154. }
  2155. .l-unit.selected b,
  2156. .l-unit.selected strong {
  2157. color: #4b4b4b;
  2158. }
  2159. /* MAIN MENU COLLAPSED */
  2160. .collapsed .l-stat {
  2161. padding-top: 20px;
  2162. }
  2163. .collapsed .l-stat__col a {
  2164. height: 0;
  2165. min-height: 0;
  2166. overflow: hidden;
  2167. }
  2168. .collapsed .l-stat__col-title {
  2169. padding-top: 2px;
  2170. }
  2171. div.l-content.collapsed > div.l-separator:nth-of-type(2) {
  2172. margin-top: 93px;
  2173. position: fixed;
  2174. }
  2175. div.l-content.collapsed > div.l-separator:nth-of-type(4) {
  2176. margin-top: 138px;
  2177. position: fixed;
  2178. }
  2179. div.l-content.collapsed .l-sort {
  2180. margin-top: 94px;
  2181. }
  2182. .l-content > .units.l-center::before {
  2183. content: "";
  2184. display: block;
  2185. height: 224px;
  2186. }
  2187. .console-output {
  2188. font-family: Inconsolata, "Lucida Console", Monaco, monospace;
  2189. font-size: 0.92rem;
  2190. color: #202020;
  2191. }
  2192. form#vstobjects {
  2193. padding-top: 240px;
  2194. }
  2195. form#vstobjects.suspended {
  2196. background-color: #fff;
  2197. padding-bottom: 30px;
  2198. }
  2199. #add-icon {
  2200. width: 45px;
  2201. height: 45px;
  2202. display: inline-block;
  2203. z-index: 3;
  2204. }
  2205. .l-sort__create-btn.restore #add-icon {
  2206. background-position: -378px -250px;
  2207. }
  2208. .l-sort__create-btn.edit #add-icon {
  2209. background-position: -378px -154px;
  2210. }
  2211. #tooltip {
  2212. background-color: #3b9de8;
  2213. border-radius: 15px;
  2214. bottom: 6px;
  2215. color: #fff;
  2216. font-size: 0.8rem;
  2217. font-weight: 600;
  2218. height: 26px;
  2219. left: 12px;
  2220. letter-spacing: 0;
  2221. line-height: 25px;
  2222. margin-left: 12px;
  2223. margin-top: 7px;
  2224. padding: 3px 14px 3px 27px;
  2225. position: absolute;
  2226. text-transform: uppercase;
  2227. white-space: nowrap;
  2228. word-break: keep-all;
  2229. z-index: -1;
  2230. }
  2231. .l-sort__create-btn:active #add-icon {
  2232. background-position: -425px -107px;
  2233. }
  2234. .l-sort__create-btn.restore:active #add-icon {
  2235. background-position: -425px -250px !important;
  2236. }
  2237. .l-sort__create-btn.edit:active #add-icon {
  2238. background-position: -425px -154px !important;
  2239. }
  2240. .l-sort__create-btn.edit:hover #tooltip {
  2241. background-color: #3b9de8;
  2242. }
  2243. .l-sort__create-btn.edit:active #tooltip {
  2244. background-color: #3bf0e6 !important;
  2245. }
  2246. .l-sort__create-btn:active #tooltip {
  2247. background-color: #54a6e5;
  2248. }
  2249. .usage-pill {
  2250. border-radius: 12px;
  2251. display: flex;
  2252. font-size: 0.75rem;
  2253. padding: 4px;
  2254. padding-left: 8px;
  2255. padding-right: 8px;
  2256. margin-right: 10px;
  2257. line-height: 0.75rem;
  2258. box-shadow: 0 1px 1px rgb(0 0 0 / 20%), inset 0 1px 0 rgb(0 0 0 / 8%);
  2259. background-color: rgb(255 255 255 / 75%);
  2260. font-weight: 500;
  2261. border: 1px solid rgb(255 255 255 / 75%);
  2262. text-shadow: 0 1px 1px rgb(255 255 255 / 60%);
  2263. color: #30659d;
  2264. }
  2265. .usage-pill b {
  2266. color: #30659d;
  2267. }
  2268. .usage-pill__item {
  2269. margin-right: 11px;
  2270. }
  2271. .usage-pill__item:last-child {
  2272. margin-right: 0;
  2273. }
  2274. .badge {
  2275. display: inline-block;
  2276. min-width: 24px;
  2277. min-height: 24px;
  2278. line-height: 24px;
  2279. border-radius: 50%;
  2280. font-weight: 700;
  2281. font-size: 0.75rem;
  2282. box-shadow:
  2283. 0 1px 2px rgb(70 70 70 / 50%),
  2284. inset 0 2px 2px #fff;
  2285. text-shadow: 0 1px 2px rgb(0 0 0 / 50%);
  2286. border: 1px solid #b8b8b8 !important;
  2287. }
  2288. .badge.large {
  2289. min-width: 48px;
  2290. min-height: 48px;
  2291. line-height: 48px;
  2292. }
  2293. .badge.raised {
  2294. background: radial-gradient(ellipse at center, rgb(255 255 255 / 20%) 0%, rgb(255 255 255 / 5%) 100%);
  2295. }
  2296. .l-unit--suspended .badge {
  2297. background: #eaeaea !important;
  2298. color: #c0c0c0 !important;
  2299. text-shadow: 0 -1px #fafafa !important;
  2300. box-shadow: 0 1px 2px rgb(120 120 120 / 30%) !important;
  2301. }
  2302. .badge.gray {
  2303. border: 1px solid #fff;
  2304. background-color: #eaeaea;
  2305. color: #6c6c6c;
  2306. text-shadow: 0 1px #fafafa !important;
  2307. }
  2308. .badge.blue {
  2309. border: 1px solid #fff;
  2310. background-color: #316198;
  2311. color: #fff;
  2312. }
  2313. .badge.purple {
  2314. border: 1px solid #fff;
  2315. background-color: #8e2fca;
  2316. color: #fff;
  2317. }
  2318. .badge.teal {
  2319. border: 1px solid #fff;
  2320. background-color: #3cc;
  2321. color: #fff;
  2322. }
  2323. .badge.maroon {
  2324. border: 1px solid #fff;
  2325. background-color: #c36;
  2326. color: #fff;
  2327. }
  2328. .badge.red {
  2329. border: 1px solid #fff;
  2330. background-color: #f33;
  2331. color: #fff;
  2332. }
  2333. .badge.orange {
  2334. border: 1px solid #fff;
  2335. background-color: #f6a800;
  2336. color: #fff;
  2337. }
  2338. .badge.green {
  2339. border: 1px solid #fff;
  2340. background-color: #53ba55;
  2341. color: #fff;
  2342. }
  2343. .badge.lightblue {
  2344. border: 1px solid #fff;
  2345. background-color: #6eb6f0;
  2346. color: #fff;
  2347. }
  2348. .status-icon.large {
  2349. font-size: 1rem;
  2350. }
  2351. .status-icon.yellow,
  2352. .status-icon.yellow:hover {
  2353. color: #f3e72c;
  2354. }
  2355. .status-icon.teal,
  2356. .status-icon.teal:hover {
  2357. color: #3cc;
  2358. }
  2359. .status-icon.purple,
  2360. .status-icon.purple:hover {
  2361. color: #8e2fca;
  2362. }
  2363. .status-icon.maroon,
  2364. .status-icon.maroon:hover {
  2365. color: #c36;
  2366. }
  2367. .status-icon.red,
  2368. .status-icon.red:hover {
  2369. color: #f33;
  2370. }
  2371. .status-icon.green,
  2372. .status-icon.green:hover {
  2373. color: #53ba55;
  2374. }
  2375. .status-icon.orange,
  2376. .status-icon.orange:hover {
  2377. color: #ffc043;
  2378. }
  2379. .status-icon.lightblue,
  2380. .status-icon.lightblue:hover {
  2381. color: #6eb6f0;
  2382. }
  2383. .status-icon.highlight,
  2384. .status-icon.highlight:hover {
  2385. color: #323232;
  2386. }
  2387. .status-icon.blue,
  2388. .status-icon.blue:hover {
  2389. color: #326b9b;
  2390. }
  2391. .status-icon.dim {
  2392. color: #ddd;
  2393. text-shadow: 1px 1px rgb(255 255 255 / 30%);
  2394. }
  2395. .status-icon.dim {
  2396. color: #ddd;
  2397. text-shadow: 1px 1px rgb(255 255 255 / 30%);
  2398. }
  2399. .l-unit--suspended .status-icon.dim {
  2400. color: #c0c0c0 !important;
  2401. text-shadow: 0 !important;
  2402. }
  2403. .search-input {
  2404. color: inherit;
  2405. background-color: #fff;
  2406. border: 1px solid #ddd;
  2407. height: 30px;
  2408. line-height: 28px;
  2409. padding-left: 7px;
  2410. float: left;
  2411. width: 130px;
  2412. border-top-left-radius: 4px;
  2413. border-bottom-left-radius: 4px;
  2414. border-right: 0;
  2415. transition: width 0.2s ease-out;
  2416. }
  2417. .lang-ru .search-input {
  2418. width: 74px;
  2419. }
  2420. .lang-ru .search-input.activated {
  2421. width: 70px;
  2422. }
  2423. .search-input.activated {
  2424. width: 150px;
  2425. visibility: visible;
  2426. }
  2427. .lang-fr .search-input,
  2428. .lang-de .search-input,
  2429. .lang-nl .search-input {
  2430. width: 100px;
  2431. }
  2432. .lang-de .l-sort-toolbar .l-select {
  2433. max-width: 140px;
  2434. }
  2435. .footer-banner {
  2436. width: 100%;
  2437. text-align: center;
  2438. border-top: 1px solid rgb(255 255 255 / 25%);
  2439. box-shadow: 0 -2px 4px rgb(0 0 0 / 40%);
  2440. font-size: 0.75rem;
  2441. padding: 10px;
  2442. position: fixed;
  2443. bottom: 0;
  2444. }
  2445. .footer-banner b,
  2446. .footer-banner strong {
  2447. color: unset;
  2448. }
  2449. .footer-banner a {
  2450. font-weight: 500;
  2451. color: #fff;
  2452. }
  2453. .footer-banner a:hover {
  2454. color: #fff;
  2455. }
  2456. .footer-banner a:hover {
  2457. text-decoration: underline;
  2458. }
  2459. .footer-banner.alpha {
  2460. background-color: #222;
  2461. color: #fff;
  2462. }
  2463. .footer-banner.alpha a {
  2464. color: #fff;
  2465. }
  2466. .footer-banner.alpha a:hover {
  2467. color: #fff;
  2468. }
  2469. .footer-banner.beta {
  2470. background-color: #eaeaea;
  2471. color: #404040;
  2472. }
  2473. .footer-banner.beta a {
  2474. color: #404040;
  2475. }
  2476. .footer-banner.developer {
  2477. background-color: yellow;
  2478. color: #000;
  2479. }
  2480. .footer-banner.developer a {
  2481. font-weight: 500;
  2482. color: #000;
  2483. }
  2484. .footer-banner.updates {
  2485. background-color: green;
  2486. color: #fff;
  2487. }
  2488. .l-sort-toolbar table td {
  2489. float: left;
  2490. margin-left: 10px;
  2491. }
  2492. .l-sort-toolbar__search-box {
  2493. float: right !important;
  2494. padding-right: 0 !important;
  2495. }
  2496. .ui-dialog .ui-dialog-buttonpane {
  2497. border-color: #fff;
  2498. box-shadow: inset 0 0 2px rgb(0 0 0 / 25%);
  2499. margin-top: 0;
  2500. padding: 0;
  2501. }
  2502. .ui-dialog .ui-dialog-buttonpane button {
  2503. margin: .5em .5em .5em 0;
  2504. box-shadow:
  2505. 0 1px 4px rgb(0 0 0 / 20%),
  2506. inset 0 0 1px #fff,
  2507. inset 0 0 3px rgb(255 255 255 / 50%);
  2508. }
  2509. .shortcuts {
  2510. background: rgb(50 50 50 / 93%);
  2511. color: #eee;
  2512. border: 1px solid rgb(255 255 255 / 70%);
  2513. font-size: 0.8rem;
  2514. border-radius: 6px;
  2515. box-shadow: 0 4px 30px rgb(0 0 0 / 50%);
  2516. }
  2517. .shortcuts-header {
  2518. display: flex;
  2519. align-items: center;
  2520. justify-content: space-between;
  2521. border-bottom: 1px solid #606060;
  2522. padding: 10px 10px 10px 20px;
  2523. }
  2524. .shortcuts-title {
  2525. text-transform: uppercase;
  2526. color: #ff3478;
  2527. font-size: 0.85rem;
  2528. letter-spacing: -0.01em;
  2529. font-weight: 600;
  2530. }
  2531. .shortcuts-close {
  2532. cursor: pointer;
  2533. padding: 5px 10px;
  2534. }
  2535. .shortcuts-close:hover {
  2536. color: #db0000;
  2537. }
  2538. .shortcuts-close:active {
  2539. color: #a60000;
  2540. }
  2541. .shortcuts-inner {}
  2542. @media screen and (min-width: 768px) {
  2543. .shortcuts-inner {
  2544. display: flex;
  2545. }
  2546. }
  2547. .shortcuts-list {
  2548. flex-grow: 1;
  2549. padding: 40px;
  2550. }
  2551. .shortcuts li {
  2552. padding: 5px 20px;
  2553. }
  2554. .shortcuts .key {
  2555. color: #ff3478;
  2556. display: inline-block;
  2557. font-weight: 600;
  2558. padding-right: 20px;
  2559. }
  2560. .shortcuts .key.bigger {
  2561. font-size: 18px;
  2562. }
  2563. .ui-dialog {
  2564. font-family: Exo, Arial, Helvetica, sans-serif;
  2565. font-weight: 500;
  2566. background-color: rgb(255 255 255 / 90%);
  2567. box-shadow:
  2568. inset 0 1px 3px rgb(0 0 0 / 25%),
  2569. 0 8px 40px 0 rgb(0 0 0 / 35%);
  2570. border-radius: 6px;
  2571. border: 1px solid rgb(255 255 255 / 98%);
  2572. text-align: center;
  2573. }
  2574. .ui-dialog .ui-dialog-content {
  2575. color: #535353;
  2576. padding: 20px 26px 30px;
  2577. }
  2578. .ui-dialog .ui-dialog-title {
  2579. margin: 0;
  2580. color: #305ba9;
  2581. font-size: 1.2em;
  2582. text-transform: none;
  2583. letter-spacing: -0.01em;
  2584. text-align: center;
  2585. float: none;
  2586. font-weight: 500;
  2587. }
  2588. .ui-widget {
  2589. font-size: 0.85rem;
  2590. }
  2591. .ui-widget-overlay {
  2592. background-color: rgb(0 0 0 / 60%);
  2593. }
  2594. .helper-container {
  2595. float: right;
  2596. margin-bottom: -450px;
  2597. margin-top: 425px;
  2598. margin-right: 14px;
  2599. padding-top: 0;
  2600. width: 610px;
  2601. box-shadow: 0 1px 4px rgb(0 0 0 / 15%);
  2602. border: 1px solid #cfcfcf;
  2603. border-radius: 4px;
  2604. }
  2605. .context-helper {
  2606. text-transform: uppercase;
  2607. color: #777;
  2608. font-size: 0.8rem;
  2609. cursor: pointer;
  2610. font-weight: 600;
  2611. float: right;
  2612. }
  2613. .context-helper:hover {
  2614. color: #3b9de8;
  2615. }
  2616. .context-helper:active {
  2617. color: #c36;
  2618. }
  2619. .cron-helper-tabs {
  2620. border: none !important;
  2621. font-family: Exo, Arial, Helvetica, sans-serif !important;
  2622. }
  2623. .cron-helper-tabs a {
  2624. color: #777;
  2625. font-size: 0.8rem;
  2626. font-weight: 600;
  2627. line-height: 30px;
  2628. padding: 0 12px;
  2629. text-transform: uppercase;
  2630. }
  2631. .cron-helper-tabs a:hover {
  2632. color: #c36;
  2633. }
  2634. .cron-helper-tabs a:active {
  2635. color: #3b9de8;
  2636. }
  2637. .cron-helper-tabs .ui-tabs-selected a,
  2638. li[aria-expanded="true"] a {
  2639. color: #c36;
  2640. }
  2641. .cron-helper-tabs p {
  2642. color: #777;
  2643. font-size: 0.8rem;
  2644. }
  2645. .cron-helper-tabs .form-label {
  2646. padding-right: 15px;
  2647. padding-left: 25px;
  2648. }
  2649. .cron-helper-tabs .form-label.first {
  2650. display: inline-block;
  2651. width: 120px;
  2652. padding-left: 0;
  2653. }
  2654. .cron-helper-tabs .form-select {
  2655. display: inline-block;
  2656. width: 384px;
  2657. }
  2658. .context-helper-close {
  2659. cursor: pointer;
  2660. float: right;
  2661. height: 32px;
  2662. padding-top: 11px;
  2663. width: 46px;
  2664. filter: contrast(50%);
  2665. }
  2666. .context-helper-close:hover {
  2667. background-color: #aaa;
  2668. filter: none;
  2669. }
  2670. .context-helper-close:active {
  2671. background-color: #999;
  2672. filter: none;
  2673. }
  2674. .server-info-output {
  2675. color: #c36;
  2676. padding: 10px 0 20px 20px;
  2677. background: #fff;
  2678. }
  2679. .server-info-data {
  2680. margin-left: 100px;
  2681. margin-top: -20px;
  2682. }
  2683. .server-info-name {
  2684. margin-top: 8px;
  2685. margin-bottom: 24px;
  2686. font-weight: 400;
  2687. }
  2688. .server-info-output {
  2689. color: #c36;
  2690. padding: 10px 0 20px 20px;
  2691. background: #fff;
  2692. }
  2693. .icon-server-info {
  2694. font-size: 5.4em;
  2695. float: left;
  2696. margin-right: 32px;
  2697. margin-left: 2px;
  2698. }
  2699. .userlist-email {
  2700. font-size: 0.75rem;
  2701. white-space: nowrap;
  2702. text-overflow: ellipsis;
  2703. }
  2704. .userlist-username {
  2705. font-size: 1em;
  2706. margin-top: -2px;
  2707. line-height: 1.2rem;
  2708. }
  2709. .lang-es .userlist-email {
  2710. width: 270px;
  2711. }
  2712. .debug-panel-header {
  2713. text-align: center;
  2714. border-bottom: 1px solid rgb(255 255 255 / 25%);
  2715. box-shadow: 0 -2px 4px rgb(0 0 0 / 40%);
  2716. font-size: 0.75rem;
  2717. padding: 10px;
  2718. background-color: yellow;
  2719. color: #000;
  2720. position: sticky;
  2721. top: 0;
  2722. z-index: 3001;
  2723. }
  2724. .debug-panel-header a {
  2725. font-weight: 500;
  2726. color: #000;
  2727. }
  2728. .debug-panel-contents {
  2729. background-color: #fff;
  2730. font-size: 12px;
  2731. padding: 18px;
  2732. position: absolute;
  2733. top: 0;
  2734. z-index: 3000;
  2735. height: 250px;
  2736. overflow-x: hidden;
  2737. overflow-y: scroll;
  2738. border-bottom: 1px solid rgb(255 255 255 / 65%);
  2739. box-shadow: 0 2px 4px rgb(0 0 0 / 25%);
  2740. }
  2741. @media screen and (max-width: 950px) {
  2742. .helper-container {
  2743. display: none;
  2744. }
  2745. }
  2746. .password-meter {
  2747. appearance: none;
  2748. display: block;
  2749. width: auto;
  2750. background-color: #e7e7e7;
  2751. height: 3px;
  2752. margin-left: 3px;
  2753. margin-right: 3px;
  2754. border-bottom-left-radius: 3px;
  2755. border-bottom-right-radius: 3px;
  2756. box-shadow: 0 1px 2px rgb(0 0 0 / 25%);
  2757. }
  2758. .password-meter[value="1"] { background: red; }
  2759. .password-meter[value="2"] { background: orange; }
  2760. .password-meter[value="3"] { background: yellow; }
  2761. .password-meter[value="4"] { background: green; }
  2762. /* Webkit based browsers */
  2763. .password-meter[value="1"]::-webkit-meter-optimum-value { background: red; }
  2764. .password-meter[value="2"]::-webkit-meter-optimum-value { background: orange; }
  2765. .password-meter[value="3"]::-webkit-meter-optimum-value { background: yellow; }
  2766. .password-meter[value="4"]::-webkit-meter-optimum-value { background: green; }
  2767. /* Gecko based browsers */
  2768. .password-meter[value="1"]::-moz-meter-bar { background: red; }
  2769. .password-meter[value="2"]::-moz-meter-bar { background: orange; }
  2770. .password-meter[value="3"]::-moz-meter-bar { background: yellow; }
  2771. .password-meter[value="4"]::-moz-meter-bar { background: green; }
  2772. /* Collapse component
  2773. ========================================================================== */
  2774. .collapse {}
  2775. .collapse[open] .collapse-header::after {
  2776. transform: rotate(180deg);
  2777. }
  2778. .collapse-header {
  2779. background: linear-gradient(to bottom, rgb(247 247 247 / 100%) 0%, rgb(255 255 255 / 100%) 100%);
  2780. border: 1px solid #ddd;
  2781. text-shadow: 0 1px rgb(255 255 255 / 95%);
  2782. box-shadow: inset 0 0 1px rgb(255 255 255 / 100%), inset 0 0 4px rgb(255 255 255 / 80%), 0 4px 6px rgb(190 190 190 / 40%);
  2783. font-weight: 600;
  2784. color: #30659d;
  2785. cursor: pointer;
  2786. position: relative;
  2787. padding: 8px 18px;
  2788. }
  2789. .collapse-header:hover {
  2790. color: #ff3478;
  2791. }
  2792. .collapse-header::after {
  2793. content: "";
  2794. display: block;
  2795. background-image: url(/images/arrow.svg);
  2796. background-size: 22px auto;
  2797. background-repeat: no-repeat;
  2798. background-position: center;
  2799. width: 22px;
  2800. height: 100%;
  2801. position: absolute;
  2802. top: 0;
  2803. right: 15px;
  2804. }
  2805. .collapse-content {
  2806. box-sizing: border-box; /* Work around box-sizing not inheriting in <details> in many browsers */
  2807. padding: 20px 20px 10px;
  2808. }
  2809. /* Extend animate.css
  2810. ========================================================================== */
  2811. .animated {
  2812. -webkit-animation-duration: 0.3s;
  2813. animation-duration: 0.3s;
  2814. }
  2815. .animated.extended {
  2816. -webkit-animation-duration: 0.6s;
  2817. animation-duration: 0.6s;
  2818. }
  2819. /* Global utilities
  2820. ========================================================================== */
  2821. .clearfix::before,
  2822. .clearfix::after {
  2823. content: " ";
  2824. display: table;
  2825. }
  2826. .clearfix::after {
  2827. clear: both;
  2828. }
  2829. .u-block {
  2830. display: block !important;
  2831. }
  2832. .u-hidden {
  2833. display: none !important;
  2834. }
  2835. .u-noselect {
  2836. user-select: none !important;
  2837. }
  2838. .text-right {
  2839. text-align: right !important;
  2840. }
  2841. .text-center {
  2842. text-align: center !important;
  2843. }
  2844. .text-small {
  2845. font-size: 0.85em !important;
  2846. }
  2847. .text-italic {
  2848. font-style: italic !important;
  2849. }
  2850. .u-mt15 {
  2851. margin-top: 15px !important;
  2852. }
  2853. .u-mt10 {
  2854. margin-top: 10px !important;
  2855. }
  2856. .u-mt20 {
  2857. margin-top: 20px !important;
  2858. }
  2859. .u-ml5 {
  2860. margin-left: 5px !important;
  2861. }
  2862. .u-ml10 {
  2863. margin-left: 10px !important;
  2864. }
  2865. .u-mr5 {
  2866. margin-right: 5px !important;
  2867. }
  2868. .u-mr15 {
  2869. margin-right: 15px !important;
  2870. }
  2871. .u-mr30 {
  2872. margin-right: 30px !important;
  2873. }
  2874. .u-mb5 {
  2875. margin-bottom: 5px !important;
  2876. }
  2877. .u-mb10 {
  2878. margin-bottom: 10px !important;
  2879. }
  2880. .u-mb20 {
  2881. margin-bottom: 20px !important;
  2882. }
  2883. .u-mb40 {
  2884. margin-bottom: 40px !important;
  2885. }
  2886. .u-pt10 {
  2887. padding-top: 10px !important;
  2888. }
  2889. .u-pt18 {
  2890. padding-top: 18px !important;
  2891. }
  2892. .u-pl30 {
  2893. padding-left: 30px !important;
  2894. }
  2895. .u-pl50 {
  2896. padding-left: 50px !important;
  2897. }
  2898. .u-pos-relative {
  2899. position: relative !important;
  2900. }
  2901. .u-width-full {
  2902. width: 100% !important;
  2903. }
  2904. .u-input-width {
  2905. width: 400px !important;
  2906. }
  2907. .u-wide-input-width {
  2908. width: 600px !important;
  2909. }
  2910. .u-min-height100 {
  2911. min-height: 100px !important;
  2912. }
  2913. .u-min-height300 {
  2914. min-height: 300px !important;
  2915. }
  2916. .u-side-by-side {
  2917. display: flex !important;
  2918. justify-content: space-between !important;
  2919. align-items: center !important;
  2920. }
  2921. .u-list-bulleted {
  2922. list-style: disc !important;
  2923. padding-left: 40px !important;
  2924. }
  2925. .u-console {
  2926. font-family: Inconsolata, "Lucida Console", Monaco, monospace !important;
  2927. white-space: pre !important;
  2928. line-height: 1.2 !important;
  2929. }