default.css 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859
  1. @import url("normalize.css");
  2. @import url("@fortawesome/fontawesome-free/css/fontawesome");
  3. @import url("@fortawesome/fontawesome-free/css/brands");
  4. @import url("@fortawesome/fontawesome-free/css/solid");
  5. @import url("../dependencies/animate");
  6. @import url("../dependencies/jquery-ui");
  7. @import url("../media_queries");
  8. @import url("../fonts");
  9. @import url("../base");
  10. @import url("../utilities");
  11. :root {
  12. --animate-duration: 300ms;
  13. --font-family: "Exo", system-ui;
  14. --font-family-monospace: "Inconsolata", "Lucida Console", "Monaco", monospace;
  15. --color-text: #7c7c7c;
  16. --color-background: #fff;
  17. --alert-border-color: #fff;
  18. --alert-box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
  19. --alert-text-shadow: 0 1px rgb(0 0 0 / 45%);
  20. }
  21. .check-label {
  22. display: inline-block;
  23. cursor: pointer;
  24. position: relative;
  25. line-height: 16px;
  26. padding-left: 26px;
  27. &::before {
  28. content: "";
  29. size: 16px;
  30. position: absolute;
  31. left: 0;
  32. top: 0;
  33. display: inline-block;
  34. z-index: 2;
  35. }
  36. }
  37. .clicked-on.check-label::before,
  38. .selected .check-label::before {
  39. content: "";
  40. display: inline-block;
  41. size: 27px;
  42. background-position: -225px -42px;
  43. top: -6px;
  44. left: -6px;
  45. }
  46. .app-header {
  47. padding-top: 40px;
  48. }
  49. .container {
  50. margin-left: auto;
  51. margin-right: auto;
  52. max-width: 1024px;
  53. }
  54. /* Top bar
  55. ========================================================================== */
  56. .top-bar {
  57. background: linear-gradient(
  58. to bottom,
  59. rgb(104 145 196 / 100%) 0%,
  60. rgb(69 114 181 / 100%) 50%,
  61. rgb(65 90 149 / 100%) 100%
  62. );
  63. background-color: #5070a6;
  64. box-shadow: 0 4px 10px rgb(100 100 100 / 40%);
  65. border-bottom: 1px solid #fff;
  66. position: fixed;
  67. width: 100%;
  68. z-index: 2;
  69. top: 0;
  70. }
  71. .top-bar-inner {
  72. display: flex;
  73. height: 40px;
  74. padding-left: 20px;
  75. padding-right: 20px;
  76. justify-content: space-between;
  77. @media (--viewport-large) {
  78. padding-left: 0;
  79. padding-right: 0;
  80. }
  81. }
  82. .top-bar-left {
  83. display: flex;
  84. }
  85. .top-bar-logo {
  86. display: flex;
  87. align-items: center;
  88. margin-right: 30px;
  89. }
  90. .top-bar-usage {
  91. display: none;
  92. @media (--viewport-small) {
  93. display: flex;
  94. align-items: center;
  95. }
  96. }
  97. .top-bar-usage-inner {
  98. display: flex;
  99. color: #fff;
  100. text-shadow: 1px 1px rgb(0 0 0 / 25%);
  101. font-weight: 500;
  102. }
  103. .top-bar-usage-item {
  104. margin-right: 11px;
  105. &:last-child {
  106. margin-right: 0;
  107. }
  108. & .fas {
  109. margin-right: 3px;
  110. }
  111. }
  112. .top-bar-right {
  113. display: flex;
  114. }
  115. .top-bar-notifications {
  116. display: flex;
  117. position: relative;
  118. }
  119. .top-bar-notifications-list {
  120. background-color: #fff;
  121. box-shadow: 0 3px 20px 0 rgb(0 0 0 / 40%);
  122. max-height: 500px;
  123. overflow-y: auto;
  124. position: absolute;
  125. top: 100%;
  126. right: 0;
  127. width: 280px;
  128. z-index: 1;
  129. border-bottom-left-radius: 6px;
  130. border-bottom-right-radius: 6px;
  131. border: 1px solid #fff;
  132. border-top: none;
  133. @media (--viewport-small) {
  134. width: 320px;
  135. }
  136. @media (--viewport-medium) {
  137. width: 400px;
  138. }
  139. }
  140. .top-bar-notification-item {
  141. color: #6f6f6f;
  142. font-size: 0.8rem;
  143. border-bottom: 1px solid #e9e4e4;
  144. padding: 15px;
  145. &:last-child {
  146. border-bottom: none;
  147. }
  148. &.empty {
  149. text-align: center;
  150. font-size: 1.2rem;
  151. font-weight: normal;
  152. padding: 4rem;
  153. & .fas {
  154. font-size: 4rem;
  155. margin-bottom: 20px;
  156. }
  157. }
  158. &.unseen {
  159. & .top-bar-notification-title {
  160. color: #c36;
  161. & a {
  162. color: #c36;
  163. &:hover,
  164. &:active {
  165. color: #e83b75;
  166. }
  167. }
  168. }
  169. & .top-bar-notification-delete {
  170. display: block;
  171. }
  172. }
  173. & a {
  174. color: #1a4492;
  175. font-weight: 600;
  176. &:hover {
  177. color: #4a87fb;
  178. }
  179. &:active {
  180. color: #1a4492;
  181. }
  182. }
  183. }
  184. .top-bar-notification-timestamp {
  185. font-size: 0.75rem;
  186. font-weight: 600;
  187. text-align: right;
  188. margin-top: 10px;
  189. }
  190. .top-bar-notification-header {
  191. display: flex;
  192. align-items: center;
  193. justify-content: space-between;
  194. margin-bottom: 10px;
  195. }
  196. .top-bar-notification-title {
  197. color: #9e9e9e;
  198. font-size: 0.85rem;
  199. font-weight: 600;
  200. & a {
  201. color: #9e9e9e;
  202. }
  203. }
  204. .top-bar-notification-delete {
  205. display: none;
  206. padding-left: 5px;
  207. padding-right: 5px;
  208. & .fas {
  209. color: #c36;
  210. font-size: 0.9rem;
  211. }
  212. &:hover .fas {
  213. opacity: 0.8;
  214. }
  215. }
  216. .top-bar-notification-mark-all {
  217. display: block;
  218. text-align: center;
  219. padding: 10px 15px;
  220. &:hover {
  221. background-color: rgb(0 0 0 / 5%);
  222. }
  223. & .fas {
  224. color: #c36;
  225. margin-right: 5px;
  226. }
  227. }
  228. .top-bar-menu {
  229. display: flex;
  230. position: relative;
  231. }
  232. .top-bar-menu-list {
  233. display: none;
  234. background-color: #4673b6;
  235. box-shadow: 0 3px 20px 0 rgb(0 0 0 / 40%);
  236. position: absolute;
  237. top: 100%;
  238. right: 0;
  239. @media (--viewport-medium) {
  240. display: flex !important; /* NOTE: Overrides inline style set by JS */
  241. background-color: transparent;
  242. box-shadow: none;
  243. position: static;
  244. }
  245. }
  246. .top-bar-menu-item {
  247. @media (--viewport-medium) {
  248. display: flex;
  249. }
  250. }
  251. .top-bar-menu-link {
  252. color: #f7f7f7;
  253. display: flex;
  254. align-items: center;
  255. font-size: 0.8rem;
  256. font-weight: 600;
  257. text-shadow: 1px 1px rgb(0 0 0 / 25%);
  258. background-color: transparent;
  259. border: 0;
  260. border-left: 1px solid transparent;
  261. border-right: 1px solid transparent;
  262. padding: 10px;
  263. &:hover {
  264. box-shadow: inset 0 0 6px rgb(255 255 255 / 60%);
  265. transition: 0.2s;
  266. color: #4686b8;
  267. border-left: 1px solid rgb(0 0 0 / 10%);
  268. border-right: 1px solid rgb(0 0 0 / 10%);
  269. background: linear-gradient(
  270. to bottom,
  271. rgb(255 255 255 / 60%) 0%,
  272. rgb(255 255 255 / 75%) 30%,
  273. rgb(255 255 255 / 100%) 95%
  274. );
  275. text-shadow: 0 1px rgb(255 255 255 / 80%);
  276. }
  277. &:active {
  278. color: #046c98;
  279. border-left: 1px solid rgb(0 0 0 / 15%);
  280. border-right: 1px solid rgb(0 0 0 / 15%);
  281. text-shadow: 0 -1px 1px rgb(255 255 255 / 50%);
  282. background: linear-gradient(
  283. to bottom,
  284. rgb(255 255 255 / 50%) 0%,
  285. rgb(255 255 255 / 60%) 30%,
  286. rgb(255 255 255 / 95%) 95%
  287. );
  288. box-shadow: inset 0 0 1px #fff, inset -1px -1px 4px rgb(220 220 220 / 40%);
  289. transition: 0.2s;
  290. }
  291. &.active {
  292. color: #4686b8;
  293. background: linear-gradient(
  294. to bottom,
  295. rgb(255 255 255 / 60%) 0%,
  296. rgb(255 255 255 / 75%) 30%,
  297. rgb(255 255 255 / 100%) 95%
  298. );
  299. text-shadow: 0 1px rgb(255 255 255 / 80%);
  300. border-left: 1px solid rgb(255 255 255 / 98%);
  301. border-right: 1px solid rgb(255 255 255 / 98%);
  302. }
  303. & .fas {
  304. font-size: 1.1rem;
  305. }
  306. }
  307. .top-bar-menu-link-logout {
  308. color: #dbf94e;
  309. }
  310. .top-bar-menu-link-label {
  311. margin-left: 6px;
  312. white-space: nowrap;
  313. @media (--viewport-medium) {
  314. display: none;
  315. }
  316. @media (--viewport-large) {
  317. display: inline;
  318. }
  319. }
  320. /* Main menu
  321. ========================================================================== */
  322. .main-menu {
  323. @media (--viewport-medium) {
  324. padding-top: 10px;
  325. }
  326. }
  327. .main-menu-toggle {
  328. border: 0;
  329. background-color: transparent;
  330. padding: 10px;
  331. display: block;
  332. width: 100%;
  333. &:hover {
  334. background-color: rgb(0 0 0 / 5%);
  335. & .main-menu-toggle-label {
  336. color: #c36;
  337. }
  338. }
  339. & .fas {
  340. color: #999;
  341. margin-right: 5px;
  342. }
  343. @media (--viewport-small) {
  344. display: none;
  345. }
  346. }
  347. .main-menu-toggle-label {
  348. color: #5b5b5b;
  349. font-weight: 600;
  350. }
  351. .main-menu-list {
  352. display: none;
  353. border-top: 1px solid #ddd;
  354. @media (--viewport-small) {
  355. border-top: 0;
  356. display: flex !important; /* NOTE: Overrides inline style set by JS */
  357. justify-content: space-evenly;
  358. }
  359. }
  360. .main-menu-item {
  361. @media (--viewport-small) {
  362. flex-grow: 1;
  363. }
  364. @media (--viewport-medium) {
  365. flex-grow: 0;
  366. display: flex;
  367. &.focus {
  368. & .main-menu-item-link {
  369. border-bottom-color: #5edad0;
  370. }
  371. & .main-menu-item-label {
  372. color: #5edad0;
  373. }
  374. }
  375. }
  376. }
  377. .main-menu-item-link {
  378. display: block;
  379. text-align: center;
  380. padding: 10px;
  381. &:hover {
  382. background-color: rgb(0 0 0 / 5%);
  383. & .main-menu-item-label {
  384. color: #c36;
  385. }
  386. }
  387. &.active {
  388. & .main-menu-item-label {
  389. color: #c36;
  390. & .fas {
  391. color: #c36;
  392. }
  393. }
  394. }
  395. @media (--viewport-small) {
  396. padding-top: 20px;
  397. padding-bottom: 20px;
  398. }
  399. @media (--viewport-medium) {
  400. border-bottom: 4px solid #fff;
  401. &:hover,
  402. &.active {
  403. background-color: transparent;
  404. border-bottom-color: #c36;
  405. transition: 0.3s;
  406. }
  407. }
  408. @media (--viewport-large) {
  409. padding-left: 30px;
  410. padding-right: 30px;
  411. }
  412. }
  413. .main-menu-item-label {
  414. color: #5b5b5b;
  415. font-weight: 600;
  416. & .fas {
  417. color: #999;
  418. margin-left: 5px;
  419. }
  420. @media (--viewport-medium) {
  421. font-size: 1rem;
  422. & .fas {
  423. margin-left: 10px;
  424. }
  425. }
  426. }
  427. .main-menu-stats {
  428. display: none;
  429. @media (--viewport-medium) {
  430. display: block;
  431. font-size: 0.75rem;
  432. text-transform: lowercase;
  433. line-height: 1.8;
  434. padding-top: 10px;
  435. padding-bottom: 10px;
  436. }
  437. }
  438. /* Alerts
  439. ========================================================================== */
  440. .alert {
  441. border-radius: 4px;
  442. border: 1px solid var(--alert-border-color);
  443. font-weight: 400;
  444. padding: 0.8rem;
  445. position: relative;
  446. text-align: left;
  447. box-shadow: var(--alert-box-shadow);
  448. text-shadow: var(--alert-text-shadow);
  449. & a {
  450. font-weight: bold;
  451. color: #fff;
  452. &:hover {
  453. text-decoration: underline;
  454. }
  455. }
  456. & .fas {
  457. border-radius: 1rem;
  458. font-size: 1.3rem;
  459. font-weight: 600;
  460. position: absolute;
  461. top: 0.8rem;
  462. left: 0.6rem;
  463. size: 2rem;
  464. line-height: 2rem;
  465. text-align: center;
  466. }
  467. }
  468. .alert-with-icon {
  469. padding-left: 3.2rem;
  470. min-height: 3.5rem;
  471. }
  472. .alert-info {
  473. color: #fff;
  474. background-color: #618ecc;
  475. & .fas {
  476. color: #618ecc;
  477. background-color: #fff;
  478. }
  479. }
  480. .alert-danger {
  481. color: #fff;
  482. background-color: #ec6c6c;
  483. & .fas {
  484. color: #ec6c6c;
  485. background-color: #fff;
  486. }
  487. }
  488. .alert-success {
  489. color: #fff;
  490. background-color: #5ea64c;
  491. & .fas {
  492. color: #5ea64c;
  493. background-color: #fff;
  494. }
  495. }
  496. /* Cards
  497. ========================================================================== */
  498. .cards {
  499. @media (--viewport-small) {
  500. display: grid;
  501. gap: 25px;
  502. grid-template-columns: repeat(2, 1fr);
  503. }
  504. @media (--viewport-medium) {
  505. grid-template-columns: repeat(4, 1fr);
  506. }
  507. }
  508. .card {
  509. overflow: hidden;
  510. background-color: #f5f5f5;
  511. border: 1px solid #d3d3d3;
  512. box-shadow: 0 1px 4px rgb(0 0 0 / 20%);
  513. color: #353535;
  514. border-radius: 4px;
  515. margin-bottom: 20px;
  516. @media (--viewport-small) {
  517. margin-bottom: 0;
  518. }
  519. &.disable {
  520. color: #b6b6b6;
  521. & .card-thumb {
  522. filter: grayscale(100%);
  523. opacity: 0.3;
  524. }
  525. }
  526. }
  527. .card-details {
  528. padding: 10px;
  529. border-top: 1px solid #e6e6e6;
  530. text-align: center;
  531. }
  532. .card-title {
  533. font-size: 1rem;
  534. font-weight: 600;
  535. }
  536. .card-thumb {
  537. background-color: #fff;
  538. display: flex;
  539. align-items: center;
  540. justify-content: center;
  541. height: 180px;
  542. padding: 20px;
  543. & img {
  544. max-width: 100%;
  545. max-height: 100%;
  546. }
  547. }
  548. .toolbar {
  549. background-color: #fff;
  550. border-top: 1px solid #ddd;
  551. border-bottom: 1px solid #ddd;
  552. & .form-select {
  553. color: inherit;
  554. padding-top: 4px;
  555. padding-bottom: 4px;
  556. box-shadow: none;
  557. border-color: #ddd;
  558. border-right-color: transparent;
  559. border-top-right-radius: 0;
  560. border-bottom-right-radius: 0;
  561. &:focus {
  562. box-shadow: none;
  563. }
  564. }
  565. & .form-control {
  566. padding-top: 4px;
  567. padding-bottom: 4px;
  568. box-shadow: none;
  569. border-color: #ddd;
  570. border-right-color: transparent;
  571. border-top-right-radius: 0;
  572. border-bottom-right-radius: 0;
  573. &:hover {
  574. border-right-color: #94c8f0;
  575. }
  576. &:focus {
  577. border-right-color: #008fee;
  578. }
  579. &.activated {
  580. }
  581. }
  582. @media (--viewport-medium) {
  583. position: sticky;
  584. z-index: 1;
  585. top: 39px;
  586. height: 45px;
  587. display: flex;
  588. justify-content: center;
  589. align-items: center;
  590. &.active {
  591. box-shadow: 0 4px 6px rgb(0 0 0 / 10%);
  592. }
  593. }
  594. }
  595. .toolbar-inner {
  596. padding: 10px 20px;
  597. @media (--viewport-medium) {
  598. display: flex;
  599. justify-content: space-between;
  600. align-items: center;
  601. flex-grow: 1;
  602. max-width: 1024px;
  603. padding-top: 5px;
  604. padding-bottom: 5px;
  605. }
  606. @media (--viewport-large) {
  607. padding-left: 0;
  608. padding-right: 0;
  609. }
  610. }
  611. .toolbar-right {
  612. & form {
  613. display: flex;
  614. }
  615. @media (--viewport-medium) {
  616. display: flex;
  617. }
  618. }
  619. .toolbar-sorting {
  620. position: relative;
  621. font-size: 0.8rem;
  622. padding-bottom: 5px;
  623. & form {
  624. flex-grow: 1;
  625. }
  626. @media (--viewport-small) {
  627. display: flex;
  628. align-items: center;
  629. & form {
  630. margin-left: 10px;
  631. }
  632. }
  633. @media (--viewport-medium) {
  634. padding-bottom: 0;
  635. }
  636. }
  637. .toolbar-sorting-toggle {
  638. display: block;
  639. padding-bottom: 5px;
  640. text-transform: uppercase;
  641. &:hover {
  642. color: #4b4b4b;
  643. & b {
  644. color: #4b4b4b;
  645. }
  646. }
  647. &:active {
  648. color: #3b9de8;
  649. & b {
  650. color: #3b9de8;
  651. }
  652. }
  653. & b {
  654. padding-left: 3px;
  655. }
  656. @media (--viewport-small) {
  657. padding-bottom: 0;
  658. }
  659. }
  660. .toolbar-sorting-menu {
  661. position: absolute;
  662. top: 25px;
  663. left: 0;
  664. z-index: 1;
  665. overflow: hidden;
  666. border-radius: 4px;
  667. border: 1px solid rgb(255 255 255 / 100%);
  668. background-color: rgb(255 255 255 / 95%);
  669. box-shadow: 0 2px 14px 0 rgb(20 20 20 / 35%);
  670. & li {
  671. border-bottom: 1px solid #ddd;
  672. color: #2e2e2e;
  673. cursor: pointer;
  674. &:last-child {
  675. border-bottom: none;
  676. }
  677. }
  678. & span {
  679. &.name {
  680. display: inline-block;
  681. padding: 11px;
  682. width: 141px;
  683. font-weight: 500;
  684. & .fas.fa-arrow-down-a-z {
  685. float: right;
  686. margin-top: 2px;
  687. }
  688. }
  689. &.up {
  690. display: inline-block;
  691. padding: 11px 14px;
  692. width: 44px;
  693. }
  694. &.active {
  695. background-color: #4f8bbc;
  696. color: #4686b8;
  697. background: linear-gradient(
  698. to bottom,
  699. rgb(255 255 255 / 60%) 0%,
  700. rgb(255 255 255 / 75%) 50%,
  701. rgb(255 255 255 / 95%) 95%
  702. );
  703. text-shadow: 0 1px rgb(255 255 255 / 80%);
  704. }
  705. &:hover {
  706. color: #3b9de8;
  707. text-shadow: 1px 1px rgb(255 255 255 / 50%);
  708. background: linear-gradient(
  709. to bottom,
  710. rgb(241 248 253 / 100%) 0%,
  711. rgb(218 236 250 / 100%) 50%,
  712. rgb(190 221 246 / 100%) 51%,
  713. rgb(227 240 251 / 100%) 100%
  714. );
  715. box-shadow: inset 0 0 1px #fff, inset 0 0 6px rgb(255 255 255 / 60%);
  716. transition: 0.2s;
  717. }
  718. &:active,
  719. &:focus {
  720. background: linear-gradient(
  721. to bottom,
  722. rgb(210 232 250 / 100%) 0%,
  723. rgb(187 220 247 / 100%) 50%,
  724. rgb(162 207 244 / 100%) 51%,
  725. rgb(194 224 248 / 100%) 100%
  726. );
  727. color: #046c98;
  728. text-shadow: 0 -1px 1px rgb(255 255 255 / 50%);
  729. box-shadow: inset 0 0 1px #fff, inset -1px -1px 4px rgb(220 220 220 / 40%);
  730. }
  731. }
  732. @media (--viewport-small) {
  733. top: 35px;
  734. }
  735. }
  736. .toolbar-input-submit {
  737. display: flex;
  738. align-items: center;
  739. border: 1px solid #ddd;
  740. border-left: 0;
  741. background-color: rgb(255 255 255 / 90%);
  742. border-radius: 0 4px 4px 0;
  743. box-shadow: inset 0 0 1px rgb(41 90 152 / 10%), inset 0 0 2px rgb(255 255 255 / 100%);
  744. text-shadow: 1px 1px rgb(255 255 255 / 90%);
  745. color: #069;
  746. min-width: 32px;
  747. padding: 0 10px;
  748. font-size: 0.75rem;
  749. &:hover {
  750. color: #39c;
  751. background-color: #fff;
  752. }
  753. &:active {
  754. color: #409fd5;
  755. box-shadow: inset 1px 1px 0 rgb(0 0 0 / 10%);
  756. }
  757. }
  758. .toolbar-link {
  759. display: block;
  760. padding: 6px 12px;
  761. color: #777;
  762. text-transform: uppercase;
  763. font-weight: 600;
  764. &.selected {
  765. color: #c36;
  766. }
  767. &:hover {
  768. color: #c36;
  769. }
  770. &:active {
  771. color: #3b9de8;
  772. }
  773. }
  774. .toolbar-buttons {
  775. padding-bottom: 10px;
  776. &:last-child {
  777. padding-bottom: 0;
  778. }
  779. & .button {
  780. min-width: 0;
  781. width: 100%;
  782. margin-bottom: 5px;
  783. padding: 2px 10px;
  784. &:last-child {
  785. margin-bottom: 0;
  786. }
  787. }
  788. @media (--viewport-medium) {
  789. display: flex;
  790. align-items: center;
  791. padding-bottom: 0;
  792. & .inline-success,
  793. & .inline-danger {
  794. margin-right: 20px;
  795. }
  796. & .button {
  797. width: auto;
  798. margin-bottom: 0;
  799. margin-right: 8px;
  800. &:last-child {
  801. margin-right: 0;
  802. }
  803. }
  804. }
  805. }
  806. .body-user .l-unit.animate__animated.animate__fadeIn {
  807. line-height: 2rem;
  808. }
  809. .body-user .actions-panel {
  810. line-height: 2rem;
  811. }
  812. .l-unit {
  813. color: #707070;
  814. padding: 0 0 0 14px;
  815. overflow: hidden;
  816. font-size: 0.8rem;
  817. border-radius: 0;
  818. border-left: 1px solid transparent;
  819. border-right: 1px solid transparent;
  820. }
  821. .table-header {
  822. font-size: 0.8rem;
  823. background: linear-gradient(to bottom, rgb(247 247 247 / 100%) 0%, rgb(255 255 255 / 100%) 100%);
  824. background-color: #fff;
  825. border-left: 1px solid #d0d0d0;
  826. border-right: 1px solid #d0d0d0;
  827. border-bottom: 1px solid #d0d0d0;
  828. text-shadow: 0 1px rgb(255 255 255 / 100%);
  829. box-shadow: inset 0 1px 1px rgb(255 255 255 / 100%), inset 0 0 1px rgb(255 255 255 / 100%),
  830. inset 0 0 4px rgb(255 255 255 / 80%), 0 1px 4px rgb(140 140 140 / 35%);
  831. border-radius: 0 0 6px 6px;
  832. min-height: 28px;
  833. color: #707070;
  834. padding: 0 0 0 14px;
  835. overflow: hidden;
  836. width: 1024px;
  837. line-height: 1rem;
  838. padding-top: 4px;
  839. padding-bottom: 4px;
  840. & .fas {
  841. font-size: 1rem;
  842. }
  843. @media (--viewport-large) {
  844. &.active {
  845. position: fixed;
  846. top: 84px;
  847. z-index: 1;
  848. }
  849. }
  850. }
  851. .units {
  852. overflow-x: auto;
  853. padding-left: 20px;
  854. padding-right: 20px;
  855. padding-bottom: 20px;
  856. @media (--viewport-large) {
  857. padding-left: 0;
  858. padding-right: 0;
  859. padding-bottom: 0;
  860. }
  861. }
  862. .units .l-unit {
  863. border-bottom: 1px solid #ddd;
  864. border-left: 1px solid transparent;
  865. border-right: 1px solid transparent;
  866. width: 1024px;
  867. }
  868. .l-unit:hover,
  869. .units .l-unit:hover {
  870. box-shadow: 0 2px 10px rgb(150 150 150 / 20%);
  871. background-color: #f8f8f8;
  872. text-shadow: 0 1px rgb(255 255 255 / 50%);
  873. border-left: 1px solid #ddd;
  874. border-right: 1px solid #ddd;
  875. }
  876. .units .l-unit.l-unit--starred {
  877. border-left: 2px solid #c36;
  878. }
  879. .units.active .l-unit.focus {
  880. border-left: 2px solid #5edad0;
  881. background-color: #eff5fc;
  882. }
  883. .units.active .l-unit.focus .l-unit__name {
  884. color: #36b3a9;
  885. }
  886. .units.active .l-unit.focus .l-unit-toolbar__col--right {
  887. display: block;
  888. }
  889. .units > div:last-child {
  890. border-bottom: none;
  891. }
  892. .l-unit-ft {
  893. color: #7c7c7c;
  894. padding: 0 0 0 15px;
  895. }
  896. .l-unit:hover .l-unit-toolbar__col--right {
  897. display: block;
  898. }
  899. .l-unit--blue {
  900. border-left: 2px solid #3b9de8;
  901. }
  902. .l-unit--suspended {
  903. background-color: #eaeaea !important;
  904. color: #c0c0c0;
  905. }
  906. .l-unit--suspended a {
  907. color: #c0c0c0 !important;
  908. }
  909. .units .l-unit.l-unit--outdated {
  910. background-color: #ffcaca;
  911. color: #4b4b4b;
  912. }
  913. .body-updates .units .l-unit.l-unit--outdated .fas.fa-box-open {
  914. color: #da1010;
  915. }
  916. .l-unit--suspended .l-unit__name,
  917. .l-unit--suspended b,
  918. .l-unit--outdated .l-unit__name,
  919. .l-unit--outdated b {
  920. color: #c0c0c0;
  921. }
  922. .l-unit--outdated .l-unit__name {
  923. color: #333;
  924. }
  925. .l-unit--outdated b {
  926. color: #4b4b4b;
  927. }
  928. .l-unit--suspended .l-percent {
  929. border-color: #fff;
  930. }
  931. .l-unit--suspended .l-percent__fill {
  932. background-color: #fff;
  933. }
  934. .l-unit--suspended .l-unit__name,
  935. .l-unit--suspended .l-unit__name span {
  936. color: #adadad;
  937. }
  938. .l-unit--suspended.selected {
  939. background-color: #f2eab8 !important;
  940. color: #b2ac87 !important;
  941. }
  942. .l-unit--outdated.selected {
  943. background: #ff9494 !important;
  944. color: #333 !important;
  945. text-shadow: none !important;
  946. }
  947. .l-unit--suspended.selected b,
  948. .l-unit--outdated.selected .l-unit__name,
  949. .l-unit--outdated.selected b,
  950. .l-unit--suspended.selected .l-percent,
  951. .l-unit--suspended.selected .l-percent__fill,
  952. .l-unit--suspended.selected .l-unit__name,
  953. .l-unit--suspended.selected .l-unit__name span {
  954. color: #333 !important;
  955. }
  956. .l-unit.selected .l-percent {
  957. border-bottom: 1px dotted #777;
  958. }
  959. .l-unit--selected {
  960. background-color: #d1eddc;
  961. }
  962. .l-unit-toolbar {
  963. display: none;
  964. }
  965. .l-unit label {
  966. margin-bottom: 20px;
  967. }
  968. .l-unit__columns {
  969. display: table;
  970. width: 100%;
  971. }
  972. .l-unit__col {
  973. display: table-cell;
  974. padding-top: 12px;
  975. vertical-align: top;
  976. padding-bottom: 10px;
  977. }
  978. .l-unit__col--left {
  979. width: 110px;
  980. padding-right: 10px;
  981. }
  982. .units.compact .l-unit__col--left {
  983. vertical-align: top;
  984. }
  985. .l-unit__col--right.total {
  986. padding-left: 16px;
  987. }
  988. .l-unit__col--right.back {
  989. padding-left: 78px;
  990. }
  991. .l-unit__suspended {
  992. display: none;
  993. font-size: 0.8rem;
  994. font-weight: 600;
  995. margin-top: 36px;
  996. text-transform: uppercase;
  997. margin-bottom: 14px;
  998. }
  999. .units.compact .l-unit__suspended {
  1000. margin-top: 1px;
  1001. }
  1002. .l-unit--outdated .l-unit__suspended,
  1003. .l-unit--suspended .l-unit__suspended {
  1004. display: block;
  1005. }
  1006. .l-unit__name {
  1007. color: #414141;
  1008. font-size: 1.4rem;
  1009. margin-top: 10px;
  1010. margin-bottom: 10px;
  1011. font-weight: 500;
  1012. letter-spacing: -0.02em;
  1013. }
  1014. .l-unit__servername {
  1015. color: #414141;
  1016. font-size: 1.7rem;
  1017. margin-bottom: 10px;
  1018. font-weight: 300;
  1019. letter-spacing: -0.02em;
  1020. }
  1021. .l-unit__stats.separate,
  1022. .l-unit__name.separate {
  1023. padding-bottom: 15px;
  1024. }
  1025. .body-stats .l-unit__name {
  1026. margin-left: -42px;
  1027. margin-top: 12px;
  1028. color: #606060;
  1029. }
  1030. .l-unit__name span {
  1031. color: #999;
  1032. margin-left: 30px;
  1033. font-style: italic;
  1034. &:first-of-type {
  1035. margin-left: 39px;
  1036. }
  1037. }
  1038. .l-unit__name b {
  1039. font-weight: normal;
  1040. font-style: italic;
  1041. }
  1042. .l-unit__stats {
  1043. margin-bottom: 10px;
  1044. margin-left: 15%;
  1045. border-left: 1px solid transparent !important;
  1046. border-right: 1px solid transparent !important;
  1047. &:hover {
  1048. border-left: 1px solid transparent !important;
  1049. border-right: 1px solid transparent !important;
  1050. box-shadow: none !important;
  1051. background: none !important;
  1052. }
  1053. }
  1054. .l-unit__stats table {
  1055. table-layout: fixed;
  1056. margin-top: -54px;
  1057. margin-left: -20px;
  1058. }
  1059. .l-unit__stats td {
  1060. height: 32px;
  1061. padding-bottom: 4px;
  1062. vertical-align: middle;
  1063. }
  1064. .body-stats .l-unit__stat-col--left {
  1065. width: 130px;
  1066. }
  1067. .l-unit__stat-col.l-unit__stat-col--left.icon-pad-right {
  1068. width: 180px;
  1069. }
  1070. .body-stats .l-unit__stat-col--right {
  1071. float: right;
  1072. }
  1073. .l-unit__stat-col--left a,
  1074. .l-unit__stat-col--left a:visited {
  1075. color: #353535;
  1076. }
  1077. .l-unit__stat-col--left a:hover {
  1078. color: #4c8bbe;
  1079. }
  1080. .l-unit__stat-col--left {
  1081. float: left;
  1082. width: 110px;
  1083. }
  1084. .l-unit__stat-col--left.border {
  1085. border-left: 1px solid #ebebeb;
  1086. }
  1087. .l-unit__stat-col--left.border-clear {
  1088. border-left: 1px solid transparent;
  1089. }
  1090. .l-unit__stat-col--left.super-compact {
  1091. width: 50px;
  1092. white-space: nowrap;
  1093. }
  1094. .l-unit__stat-col--left.compact {
  1095. width: 60px;
  1096. }
  1097. .l-unit__stat-col--left.compact-1 {
  1098. width: 70px;
  1099. }
  1100. .l-unit__stat-col--left.compact-2 {
  1101. width: 80px;
  1102. }
  1103. .l-unit__stat-col--left.compact-3 {
  1104. width: 90px;
  1105. }
  1106. .l-unit__stat-col--left.compact-4 {
  1107. width: 130px;
  1108. }
  1109. .l-unit__stat-col--left.compact-5 {
  1110. width: 160px;
  1111. }
  1112. .l-unit__stat-col--left.wide {
  1113. width: 190px;
  1114. }
  1115. .l-unit__stat-col--left.wide-2 {
  1116. width: 230px;
  1117. }
  1118. .l-unit__stat-col--left.wide-3 {
  1119. width: 250px;
  1120. }
  1121. .l-unit__stat-col--left.wide-4 {
  1122. width: 320px;
  1123. }
  1124. .l-unit__stat-col--left.wide-5 {
  1125. width: 350px;
  1126. }
  1127. .l-unit__stat-col--left.wide-6 {
  1128. width: 440px;
  1129. }
  1130. .l-unit__stat-col--left.wide-7 {
  1131. width: 550px;
  1132. }
  1133. .l-unit__stat-col--right {
  1134. float: left;
  1135. max-width: 170px;
  1136. }
  1137. .l-unit-toolbar__col--left {
  1138. float: left;
  1139. margin-left: -15px;
  1140. margin-top: 0;
  1141. padding-bottom: 0;
  1142. padding-left: 15px;
  1143. padding-top: 15px;
  1144. width: 30px;
  1145. cursor: pointer;
  1146. display: none;
  1147. }
  1148. .l-unit-toolbar__col--right {
  1149. float: right;
  1150. }
  1151. .l-unit-toolbar .shortcut {
  1152. display: none;
  1153. }
  1154. .units.active .l-unit.focus .l-unit-toolbar .shortcut {
  1155. display: block;
  1156. background-color: #69a298;
  1157. border-radius: 13px;
  1158. color: #fff;
  1159. cursor: pointer;
  1160. font-size: 0.8rem;
  1161. font-weight: 600;
  1162. line-height: 25px;
  1163. padding-left: 7px;
  1164. padding-right: 9px;
  1165. position: absolute;
  1166. right: 3px;
  1167. top: 3px;
  1168. }
  1169. .units.active .l-unit.focus .l-unit-toolbar .shortcut.delete {
  1170. font-size: 10px;
  1171. padding-left: 2px;
  1172. padding-right: 5px;
  1173. text-transform: capitalize;
  1174. }
  1175. .units.active .l-unit.focus .l-unit-toolbar .shortcut.enter {
  1176. font-size: 17px;
  1177. padding-left: 1px;
  1178. padding-right: 7px;
  1179. }
  1180. .units.active .l-unit.focus .l-unit-toolbar i {
  1181. background: none;
  1182. }
  1183. .actions-panel {
  1184. line-height: 1.1rem;
  1185. }
  1186. .actions-panel__col {
  1187. display: inline-block;
  1188. margin-left: 3px;
  1189. text-transform: uppercase;
  1190. & a {
  1191. color: #777;
  1192. font-weight: 600;
  1193. font-size: 0.9rem;
  1194. display: inline-block;
  1195. cursor: pointer;
  1196. }
  1197. }
  1198. .l-unit__col .actions-panel .fas {
  1199. display: none;
  1200. }
  1201. .l-unit__col:hover .actions-panel .fas {
  1202. display: inline-block;
  1203. }
  1204. .icon-pad-right {
  1205. margin-right: 6px;
  1206. }
  1207. .l-unit__stat-cols {
  1208. padding-right: 10px;
  1209. }
  1210. .l-unit__stat-cols.last {
  1211. padding-right: 0;
  1212. }
  1213. .l-unit__stat-cols.graph {
  1214. width: 242px;
  1215. }
  1216. .l-percent {
  1217. border-bottom: 3px solid #e6e6e6;
  1218. margin-top: 2px;
  1219. width: 242px;
  1220. }
  1221. .l-percent__fill {
  1222. background-color: #54e000;
  1223. height: 3px;
  1224. position: relative;
  1225. bottom: -3px;
  1226. }
  1227. .statistics-count {
  1228. min-width: 24px;
  1229. text-align: right;
  1230. border-bottom: 1px dotted #ddd;
  1231. border-right: 1px dotted #ddd;
  1232. padding-right: 4px;
  1233. }
  1234. .spinner {
  1235. -webkit-mask-box-image: radial-gradient(
  1236. center,
  1237. ellipse farthest-corner,
  1238. rgb(0 0 0 / 100%) 68%,
  1239. rgb(0 0 0 / 0%) 69.5%
  1240. );
  1241. background: #eee;
  1242. size: 20px;
  1243. position: relative;
  1244. margin: 4px 0 2px 2px;
  1245. clip-path: ellipse(10px 10px at 50% 50%);
  1246. }
  1247. .spinner-inner {
  1248. position: absolute;
  1249. top: 0;
  1250. left: 0;
  1251. background: transparent;
  1252. border-width: 10px;
  1253. size: 0;
  1254. border-style: solid;
  1255. border-color: transparent;
  1256. border-top-color: rgb(124 124 124 / 100%);
  1257. transform: rotate(-45deg);
  1258. animation: inner 15s linear infinite;
  1259. }
  1260. .spinner-mask {
  1261. position: absolute;
  1262. top: 0;
  1263. left: 0;
  1264. background: transparent;
  1265. border-width: 10px;
  1266. size: 0;
  1267. border-style: solid;
  1268. border-color: transparent;
  1269. border-top-color: #eee;
  1270. transform: rotate(-45deg);
  1271. animation: mask 15s linear infinite;
  1272. }
  1273. .spinner-mask::after,
  1274. .spinner-mask-two {
  1275. display: block;
  1276. content: "";
  1277. opacity: 0;
  1278. position: absolute;
  1279. top: 0;
  1280. left: 0;
  1281. background: transparent;
  1282. border-width: 10px;
  1283. size: 0;
  1284. border-style: solid;
  1285. border-color: transparent;
  1286. border-top-color: rgb(124 124 124 / 100%);
  1287. transform: rotate(45deg);
  1288. animation: mask-two 15s linear infinite;
  1289. }
  1290. @keyframes inner {
  1291. 0% {
  1292. transform: rotate(-45deg);
  1293. }
  1294. 25% {
  1295. border-left-color: transparent;
  1296. }
  1297. 26% {
  1298. border-left-color: rgb(124 124 124 / 100%);
  1299. }
  1300. 50% {
  1301. border-bottom-color: transparent;
  1302. }
  1303. 51% {
  1304. border-bottom-color: rgb(124 124 124 / 100%);
  1305. }
  1306. 75% {
  1307. border-right-color: transparent;
  1308. }
  1309. 76% {
  1310. border-right-color: rgb(124 124 124 / 100%);
  1311. }
  1312. 100% {
  1313. transform: rotate(315deg);
  1314. border-left-color: rgb(124 124 124 / 100%);
  1315. border-bottom-color: rgb(124 124 124 / 100%);
  1316. border-right-color: rgb(124 124 124 / 100%);
  1317. }
  1318. }
  1319. @keyframes mask {
  1320. 0% {
  1321. transform: rotate(-45deg);
  1322. }
  1323. 75% {
  1324. transform: rotate(-45deg);
  1325. }
  1326. 100% {
  1327. transform: rotate(45deg);
  1328. }
  1329. }
  1330. @keyframes mask-two {
  1331. 0% {
  1332. opacity: 0;
  1333. }
  1334. 25% {
  1335. opacity: 0;
  1336. }
  1337. 26% {
  1338. opacity: 1;
  1339. }
  1340. 100% {
  1341. opacity: 1;
  1342. }
  1343. }
  1344. .paused div {
  1345. animation-play-state: paused;
  1346. }
  1347. /* form styles */
  1348. .form-container {
  1349. max-width: 640px;
  1350. margin-left: auto;
  1351. margin-right: auto;
  1352. padding: 30px 20px;
  1353. }
  1354. .form-container-wide {
  1355. max-width: 920px;
  1356. }
  1357. @media (--viewport-medium) {
  1358. .sidebar-container {
  1359. display: grid;
  1360. gap: 50px;
  1361. grid-template-columns: 2fr 1.3fr;
  1362. }
  1363. }
  1364. .inline-danger {
  1365. color: #f33;
  1366. font-weight: 600;
  1367. text-overflow: ellipsis;
  1368. white-space: nowrap;
  1369. & .fas {
  1370. margin-right: 3px;
  1371. }
  1372. }
  1373. .inline-success {
  1374. color: #53ba55;
  1375. font-weight: 600;
  1376. text-overflow: ellipsis;
  1377. white-space: nowrap;
  1378. & .fas {
  1379. margin-right: 3px;
  1380. }
  1381. & a {
  1382. color: #326b9b;
  1383. &:hover {
  1384. color: #c36;
  1385. }
  1386. &:active {
  1387. color: #d53067;
  1388. }
  1389. }
  1390. }
  1391. .form-label {
  1392. margin-bottom: 5px;
  1393. display: inline-block;
  1394. }
  1395. .form-label,
  1396. .form-check label {
  1397. color: #4b4b4b;
  1398. font-weight: 600;
  1399. }
  1400. .form-control {
  1401. background-color: #fff;
  1402. border: 1px solid #cfcfcf;
  1403. display: block;
  1404. width: 100%;
  1405. padding: 8px 12px;
  1406. font-size: 0.8rem;
  1407. font-weight: normal;
  1408. color: #4e4e4e;
  1409. border-radius: 4px;
  1410. line-height: 1.5;
  1411. appearance: none;
  1412. box-shadow: 0 1px 4px rgb(0 0 0 / 15%);
  1413. &:hover {
  1414. border-color: #94c8f0;
  1415. }
  1416. &:focus {
  1417. border-color: #008fee;
  1418. background-color: #d7f9ff;
  1419. color: #333;
  1420. }
  1421. &.list-editor {
  1422. border-color: transparent;
  1423. box-shadow: none;
  1424. position: absolute;
  1425. padding-top: 7px;
  1426. padding-bottom: 7px;
  1427. width: auto;
  1428. top: 1px;
  1429. left: 1px;
  1430. right: 30px;
  1431. &:hover {
  1432. border-color: transparent;
  1433. }
  1434. &:focus {
  1435. background-color: #fff;
  1436. }
  1437. }
  1438. }
  1439. .form-select {
  1440. display: block;
  1441. width: 100%;
  1442. font-weight: normal;
  1443. font-size: 0.8rem;
  1444. padding: 8px 30px 8px 12px;
  1445. line-height: 1.5;
  1446. border-radius: 4px;
  1447. background-color: #fff;
  1448. border: 1px solid #ccc;
  1449. color: #4e4e4e;
  1450. appearance: none;
  1451. background-image: url("/images/arrow.svg");
  1452. background-size: 16px auto;
  1453. background-repeat: no-repeat;
  1454. background-position: right 9px center;
  1455. text-shadow: 0 0 0 #4b4b4b;
  1456. box-shadow: 0 1px 4px rgb(0 0 0 / 15%);
  1457. &:hover {
  1458. border-color: #94c8f0;
  1459. }
  1460. &:focus {
  1461. border-color: #008fee;
  1462. }
  1463. }
  1464. .form-check {
  1465. position: relative;
  1466. padding-left: 20px;
  1467. margin-left: 3px;
  1468. min-height: 24px;
  1469. }
  1470. .form-check-input {
  1471. position: absolute;
  1472. margin-top: 3px;
  1473. margin-left: -20px;
  1474. }
  1475. .form-control:disabled,
  1476. .form-select:disabled {
  1477. background-color: #e7e7e7;
  1478. text-shadow: 1px 1px rgb(255 255 255 / 100%);
  1479. color: #686868;
  1480. }
  1481. .form-control:focus:disabled {
  1482. border-color: #dedede;
  1483. background-color: #f1f1f1;
  1484. }
  1485. .form-control:disabled:hover,
  1486. .form-select:disabled:hover {
  1487. border-color: #cfcfcf;
  1488. }
  1489. #advanced-options .u-console {
  1490. min-height: 600px;
  1491. }
  1492. .generate {
  1493. color: #326b9b;
  1494. text-decoration: underline;
  1495. cursor: pointer;
  1496. margin-left: -3px;
  1497. padding: 0 3px;
  1498. &:hover {
  1499. background-color: #c36;
  1500. border-color: #c36;
  1501. color: #fff;
  1502. }
  1503. &:active {
  1504. background-color: #f7d616;
  1505. border-color: #f7d616;
  1506. }
  1507. }
  1508. .lets-encrypt-note {
  1509. color: #89a40a !important;
  1510. font-style: italic;
  1511. font-weight: normal !important;
  1512. height: 30px;
  1513. padding-top: 10px;
  1514. vertical-align: top;
  1515. }
  1516. .toggle-password {
  1517. color: #aaa;
  1518. z-index: 1;
  1519. position: absolute;
  1520. top: 9px;
  1521. right: 12px;
  1522. }
  1523. .toggle-psw-visibility-icon {
  1524. cursor: pointer;
  1525. opacity: 1;
  1526. margin: -2px;
  1527. }
  1528. .show-passwords-enabled-action {
  1529. opacity: 0.4;
  1530. }
  1531. .password-meter {
  1532. appearance: none;
  1533. display: block;
  1534. width: auto;
  1535. height: 3px;
  1536. background-color: #e7e7e7;
  1537. margin-left: 3px;
  1538. margin-right: 3px;
  1539. border-bottom-left-radius: 3px;
  1540. border-bottom-right-radius: 3px;
  1541. box-shadow: 0 1px 2px rgb(0 0 0 / 25%);
  1542. }
  1543. .password-meter[value="1"] {
  1544. background: red;
  1545. }
  1546. .password-meter[value="2"] {
  1547. background: orange;
  1548. }
  1549. .password-meter[value="3"] {
  1550. background: yellow;
  1551. }
  1552. .password-meter[value="4"] {
  1553. background: green;
  1554. }
  1555. /* Webkit based browsers */
  1556. .password-meter[value="1"]::-webkit-meter-optimum-value {
  1557. background: red;
  1558. }
  1559. .password-meter[value="2"]::-webkit-meter-optimum-value {
  1560. background: orange;
  1561. }
  1562. .password-meter[value="3"]::-webkit-meter-optimum-value {
  1563. background: yellow;
  1564. }
  1565. .password-meter[value="4"]::-webkit-meter-optimum-value {
  1566. background: green;
  1567. }
  1568. /* Gecko based browsers */
  1569. .password-meter[value="1"]::-moz-meter-bar {
  1570. background: red;
  1571. }
  1572. .password-meter[value="2"]::-moz-meter-bar {
  1573. background: orange;
  1574. }
  1575. .password-meter[value="3"]::-moz-meter-bar {
  1576. background: yellow;
  1577. }
  1578. .password-meter[value="4"]::-moz-meter-bar {
  1579. background: green;
  1580. }
  1581. .hint {
  1582. color: #777;
  1583. font-size: 0.8rem;
  1584. font-style: italic;
  1585. font-weight: normal;
  1586. }
  1587. .hint-prefix {
  1588. color: #555;
  1589. font-size: 0.8rem;
  1590. }
  1591. .dialog {
  1592. display: none;
  1593. }
  1594. /* Hide the default close button in dialog header */
  1595. .ui-dialog-titlebar-close {
  1596. display: none;
  1597. }
  1598. /* Set dialog z-index */
  1599. .ui-front {
  1600. z-index: 2;
  1601. }
  1602. /* Buttons
  1603. ========================================================================== */
  1604. .button {
  1605. cursor: pointer;
  1606. display: inline-block;
  1607. line-height: 1.5;
  1608. font-size: 0.85rem;
  1609. font-weight: 500;
  1610. padding: 3px 25px;
  1611. user-select: none;
  1612. color: #30659d;
  1613. min-width: 100px;
  1614. text-align: center;
  1615. text-shadow: 0 1px 1px rgb(255 255 255 / 85%);
  1616. border: 1px solid #0083db;
  1617. border-radius: 3px;
  1618. background-color: #3b9de8;
  1619. background: linear-gradient(
  1620. to bottom,
  1621. rgb(235 243 249 / 100%) 0%,
  1622. rgb(192 216 236 / 100%) 51%,
  1623. rgb(223 235 245 / 100%) 100%
  1624. );
  1625. box-shadow: 0 1px 3px rgb(0 0 0 / 25%), inset 0 0 1px #fff, inset 0 0 3px rgb(255 255 255 / 50%);
  1626. &:hover {
  1627. color: #0077c6;
  1628. text-shadow: 1px 1px rgb(255 255 255 / 50%);
  1629. border-color: #54a6e5;
  1630. background: linear-gradient(
  1631. to bottom,
  1632. rgb(241 248 253 / 100%) 0%,
  1633. rgb(190 221 246 / 100%) 51%,
  1634. rgb(227 240 251 / 100%) 100%
  1635. );
  1636. box-shadow: 0 1px 3px rgb(0 0 0 / 25%), inset 0 0 1px #fff, inset 0 0 6px rgb(255 255 255 / 60%);
  1637. transition: 0.2s;
  1638. }
  1639. &:active,
  1640. &:focus {
  1641. color: #517bab;
  1642. text-shadow: 0 -1px 2px rgb(255 255 255 / 85%);
  1643. border-color: #0066b4;
  1644. background: linear-gradient(
  1645. to bottom,
  1646. rgb(194 224 248 / 100%) 0%,
  1647. rgb(162 207 244 / 100%) 51%,
  1648. rgb(210 232 250 / 100%) 100%
  1649. );
  1650. box-shadow: 0 1px 2px rgb(0 0 0 / 20%), inset 0 0 1px #fff,
  1651. inset -1px -1px 4px rgb(220 220 220 / 40%);
  1652. }
  1653. & .fas {
  1654. margin-right: 6px;
  1655. }
  1656. }
  1657. .button-secondary {
  1658. color: #717171;
  1659. border-color: #aaa;
  1660. background: linear-gradient(
  1661. to bottom,
  1662. rgb(250 250 250 / 100%) 0%,
  1663. rgb(230 230 230 / 100%) 51%,
  1664. rgb(242 242 242 / 100%) 100%
  1665. );
  1666. }
  1667. .button-danger:hover {
  1668. background: linear-gradient(to bottom, #fbf2f1 0%, #f6b4ac 51%, #fde6e3 100%);
  1669. color: #f4301a;
  1670. text-shadow: 0 1px rgb(255 255 255 / 50%);
  1671. border-color: #f27e71;
  1672. }
  1673. .button-danger:active,
  1674. .button-danger:focus {
  1675. background: linear-gradient(to bottom, #fcd0ca 0%, #f5a69d 50%, #f9e3df 100%);
  1676. color: #ce1500;
  1677. text-shadow: 0 1px 1px rgb(255 255 255 / 20%), 0 -1px 1px rgb(255 255 255 / 60%);
  1678. border-color: #f4301a;
  1679. }
  1680. .button-circle {
  1681. border-radius: 50%;
  1682. min-width: 28px;
  1683. padding: 3px;
  1684. & .fas {
  1685. margin-right: 0;
  1686. }
  1687. }
  1688. .button-floating {
  1689. display: none;
  1690. @media (--viewport-medium) {
  1691. display: block;
  1692. position: fixed;
  1693. z-index: 1;
  1694. bottom: 70px;
  1695. }
  1696. }
  1697. .button-floating-top {
  1698. right: 60px;
  1699. }
  1700. .button-floating-shortcuts {
  1701. right: 110px;
  1702. }
  1703. .additional-control {
  1704. color: #326b9b;
  1705. border-bottom: 0 solid #326b9b;
  1706. font-size: 0.8rem;
  1707. cursor: pointer;
  1708. text-transform: uppercase;
  1709. font-weight: 600;
  1710. padding: 2px 2px 0;
  1711. text-decoration: none;
  1712. &:hover {
  1713. background-color: #c36;
  1714. border-color: #c36;
  1715. color: #fff;
  1716. }
  1717. &:active {
  1718. color: #fff;
  1719. background-color: #aaa;
  1720. }
  1721. }
  1722. .additional-control.add:hover {
  1723. background-color: #3b9de8;
  1724. border-color: #3b9de8;
  1725. }
  1726. .additional-control.add:active {
  1727. background-color: #54a6e5;
  1728. border-color: #54a6e5;
  1729. }
  1730. .unlim-trigger {
  1731. cursor: pointer;
  1732. position: absolute;
  1733. top: 13px;
  1734. right: 12px;
  1735. z-index: 1;
  1736. font-size: 0.8rem;
  1737. }
  1738. .optional {
  1739. font-size: 0.8rem;
  1740. margin-left: 6px;
  1741. font-weight: normal;
  1742. }
  1743. .mail-infoblock {
  1744. color: #777;
  1745. border: 1px solid #d9d9d9;
  1746. padding: 20px;
  1747. box-shadow: 0 1px 4px rgb(0 0 0 / 15%);
  1748. border-radius: 4px;
  1749. & a {
  1750. color: #326b9b;
  1751. &:hover {
  1752. color: #c36;
  1753. }
  1754. }
  1755. & td {
  1756. color: #505050;
  1757. font-size: 0.75rem;
  1758. font-weight: normal;
  1759. padding-bottom: 5px;
  1760. }
  1761. }
  1762. .mail-infoblock td:first-child {
  1763. padding-right: 14px;
  1764. font-weight: 600;
  1765. }
  1766. .mail-infoblock div {
  1767. white-space: nowrap;
  1768. }
  1769. .additional-info {
  1770. margin-top: 12px;
  1771. width: 400px;
  1772. & td {
  1773. font-size: 0.75rem;
  1774. height: 20px;
  1775. font-weight: normal;
  1776. line-height: 0.95rem;
  1777. min-width: 70px;
  1778. &.details {
  1779. padding-left: 20px !important;
  1780. }
  1781. }
  1782. }
  1783. /* Login box
  1784. ========================================================================== */
  1785. .login {
  1786. flex-grow: 1;
  1787. padding: 30px;
  1788. margin-bottom: 20%;
  1789. & .form-label {
  1790. color: #fff;
  1791. }
  1792. & .error {
  1793. color: #be5abf;
  1794. margin-bottom: 20px;
  1795. }
  1796. @media (--viewport-small) {
  1797. border-radius: 6px;
  1798. background-color: rgb(255 255 255 / 70%);
  1799. box-shadow: 0 8px 25px rgb(0 0 0 / 30%), inset 0 0 2px rgb(255 255 255 / 100%);
  1800. padding: 70px 50px;
  1801. max-width: 370px;
  1802. & .form-label {
  1803. color: #4b4b4b;
  1804. }
  1805. }
  1806. @media (--viewport-medium) {
  1807. display: flex;
  1808. align-items: flex-end;
  1809. max-width: 500px;
  1810. & form {
  1811. flex-grow: 1;
  1812. }
  1813. }
  1814. }
  1815. .login-title {
  1816. color: #fff;
  1817. font-size: 1.05rem;
  1818. font-weight: 500;
  1819. margin-bottom: 30px;
  1820. @media (--viewport-small) {
  1821. color: #4b4b4b;
  1822. }
  1823. }
  1824. .login-label-link {
  1825. color: #fff;
  1826. text-transform: uppercase;
  1827. @media (--viewport-small) {
  1828. color: #326b9b;
  1829. &:hover {
  1830. color: #0077c6;
  1831. }
  1832. }
  1833. }
  1834. .body-login,
  1835. .body-reset {
  1836. display: flex;
  1837. align-items: center;
  1838. justify-content: center;
  1839. background: rgb(102 158 231);
  1840. background: radial-gradient(circle, rgb(102 158 231 / 100%) 0%, rgb(43 86 177 / 100%) 100%);
  1841. }
  1842. .body-login .debug-panel,
  1843. .body-reset .debug-panel {
  1844. display: none;
  1845. }
  1846. .form-title {
  1847. color: #4b4b4b;
  1848. font-size: 1.4rem;
  1849. font-weight: 500;
  1850. padding-bottom: 30px;
  1851. letter-spacing: -0.01em;
  1852. }
  1853. .section-title {
  1854. display: flex;
  1855. color: #4b4b4b;
  1856. cursor: pointer;
  1857. justify-content: space-between;
  1858. align-items: center;
  1859. font-size: 1.05rem;
  1860. font-weight: 600;
  1861. padding-top: 28px;
  1862. padding-bottom: 12px;
  1863. letter-spacing: -0.01em;
  1864. border-bottom: 1px solid #ccc;
  1865. }
  1866. .qr-code {
  1867. border: 1px solid #cfcfcf;
  1868. border-radius: 4px;
  1869. box-shadow: 0 1px 4px rgb(0 0 0 / 15%);
  1870. }
  1871. .l-unit.selected {
  1872. background-color: #f8f8f8;
  1873. color: #4b4b4b;
  1874. box-shadow: 0 2px 10px rgb(150 150 150 / 20%);
  1875. text-shadow: 0 1px rgb(255 255 255 / 50%);
  1876. border-left: 1px solid #ddd;
  1877. border-right: 1px solid #ddd;
  1878. & b,
  1879. & strong {
  1880. color: #4b4b4b;
  1881. }
  1882. &:hover {
  1883. background-color: #fff5ce;
  1884. color: #4b4b4b;
  1885. box-shadow: 0 2px 14px rgb(150 150 150 / 25%);
  1886. text-shadow: 0 1px rgb(255 255 255 / 60%);
  1887. }
  1888. }
  1889. .console-output {
  1890. font-family: var(--font-family-monospace);
  1891. font-size: 0.92rem;
  1892. color: #202020;
  1893. }
  1894. form#vstobjects.suspended {
  1895. background-color: #fff;
  1896. padding-bottom: 30px;
  1897. }
  1898. #add-icon {
  1899. size: 45px;
  1900. display: inline-block;
  1901. z-index: 3;
  1902. }
  1903. #tooltip {
  1904. background-color: #3b9de8;
  1905. border-radius: 15px;
  1906. bottom: 6px;
  1907. color: #fff;
  1908. font-size: 0.8rem;
  1909. font-weight: 600;
  1910. height: 26px;
  1911. left: 12px;
  1912. letter-spacing: 0;
  1913. line-height: 25px;
  1914. margin-left: 12px;
  1915. margin-top: 7px;
  1916. padding: 3px 14px 3px 27px;
  1917. position: absolute;
  1918. text-transform: uppercase;
  1919. white-space: nowrap;
  1920. word-break: keep-all;
  1921. z-index: -1;
  1922. }
  1923. .badge {
  1924. display: inline-block;
  1925. min-width: 24px;
  1926. min-height: 24px;
  1927. line-height: 24px;
  1928. border-radius: 50%;
  1929. font-weight: 700;
  1930. font-size: 0.75rem;
  1931. box-shadow: 0 1px 2px rgb(70 70 70 / 50%), inset 0 2px 2px #fff;
  1932. text-shadow: 0 1px 2px rgb(0 0 0 / 50%);
  1933. border: 1px solid #b8b8b8 !important;
  1934. }
  1935. .badge.large {
  1936. min-width: 48px;
  1937. min-height: 48px;
  1938. line-height: 48px;
  1939. }
  1940. .badge.raised {
  1941. background: radial-gradient(
  1942. ellipse at center,
  1943. rgb(255 255 255 / 20%) 0%,
  1944. rgb(255 255 255 / 5%) 100%
  1945. );
  1946. }
  1947. .l-unit--suspended .badge {
  1948. background: #eaeaea !important;
  1949. color: #c0c0c0 !important;
  1950. text-shadow: 0 -1px #fafafa !important;
  1951. box-shadow: 0 1px 2px rgb(120 120 120 / 30%) !important;
  1952. }
  1953. .badge.gray {
  1954. border: 1px solid #fff;
  1955. background-color: #eaeaea;
  1956. color: #6c6c6c;
  1957. text-shadow: 0 1px #fafafa !important;
  1958. }
  1959. .badge.blue {
  1960. border: 1px solid #fff;
  1961. background-color: #316198;
  1962. color: #fff;
  1963. }
  1964. .badge.purple {
  1965. border: 1px solid #fff;
  1966. background-color: #8e2fca;
  1967. color: #fff;
  1968. }
  1969. .badge.teal {
  1970. border: 1px solid #fff;
  1971. background-color: #3cc;
  1972. color: #fff;
  1973. }
  1974. .badge.maroon {
  1975. border: 1px solid #fff;
  1976. background-color: #c36;
  1977. color: #fff;
  1978. }
  1979. .badge.red {
  1980. border: 1px solid #fff;
  1981. background-color: #f33;
  1982. color: #fff;
  1983. }
  1984. .badge.orange {
  1985. border: 1px solid #fff;
  1986. background-color: #f6a800;
  1987. color: #fff;
  1988. }
  1989. .badge.green {
  1990. border: 1px solid #fff;
  1991. background-color: #53ba55;
  1992. color: #fff;
  1993. }
  1994. .badge.lightblue {
  1995. border: 1px solid #fff;
  1996. background-color: #6eb6f0;
  1997. color: #fff;
  1998. }
  1999. .status-icon.large {
  2000. font-size: 1rem;
  2001. }
  2002. .status-icon.yellow,
  2003. .status-icon.yellow:hover {
  2004. color: #f3e72c;
  2005. }
  2006. .status-icon.teal,
  2007. .status-icon.teal:hover {
  2008. color: #3cc;
  2009. }
  2010. .status-icon.purple,
  2011. .status-icon.purple:hover {
  2012. color: #8e2fca;
  2013. }
  2014. .status-icon.maroon,
  2015. .status-icon.maroon:hover {
  2016. color: #c36;
  2017. }
  2018. .status-icon.red,
  2019. .status-icon.red:hover {
  2020. color: #f33;
  2021. }
  2022. .status-icon.green,
  2023. .status-icon.green:hover {
  2024. color: #53ba55;
  2025. }
  2026. .status-icon.orange,
  2027. .status-icon.orange:hover {
  2028. color: #ffc043;
  2029. }
  2030. .status-icon.lightblue,
  2031. .status-icon.lightblue:hover {
  2032. color: #6eb6f0;
  2033. }
  2034. .status-icon.highlight,
  2035. .status-icon.highlight:hover {
  2036. color: #323232;
  2037. }
  2038. .status-icon.blue,
  2039. .status-icon.blue:hover {
  2040. color: #326b9b;
  2041. }
  2042. .status-icon.dim {
  2043. color: #ddd;
  2044. text-shadow: 1px 1px rgb(255 255 255 / 30%);
  2045. }
  2046. .l-unit--suspended .status-icon.dim {
  2047. color: #c0c0c0 !important;
  2048. text-shadow: 0 !important;
  2049. }
  2050. .footer-banner {
  2051. width: 100%;
  2052. text-align: center;
  2053. border-top: 1px solid rgb(255 255 255 / 25%);
  2054. box-shadow: 0 -2px 4px rgb(0 0 0 / 40%);
  2055. font-size: 0.75rem;
  2056. padding: 10px;
  2057. position: fixed;
  2058. bottom: 0;
  2059. }
  2060. .footer-banner b,
  2061. .footer-banner strong {
  2062. color: unset;
  2063. }
  2064. .footer-banner a {
  2065. font-weight: 500;
  2066. color: #fff;
  2067. &:hover {
  2068. color: #fff;
  2069. text-decoration: underline;
  2070. }
  2071. }
  2072. .footer-banner.alpha {
  2073. background-color: #222;
  2074. color: #fff;
  2075. }
  2076. .footer-banner.alpha a {
  2077. color: #fff;
  2078. &:hover {
  2079. color: #fff;
  2080. }
  2081. }
  2082. .footer-banner.beta {
  2083. background-color: #eaeaea;
  2084. color: #404040;
  2085. }
  2086. .footer-banner.beta a {
  2087. color: #404040;
  2088. }
  2089. .footer-banner.developer {
  2090. background-color: yellow;
  2091. color: #000;
  2092. }
  2093. .footer-banner.developer a {
  2094. font-weight: 500;
  2095. color: #000;
  2096. }
  2097. .footer-banner.updates {
  2098. background-color: green;
  2099. color: #fff;
  2100. }
  2101. .toolbar-search {
  2102. @media (--viewport-medium) {
  2103. margin-left: 12px;
  2104. }
  2105. }
  2106. .ui-dialog .ui-dialog-buttonpane {
  2107. border-color: #fff;
  2108. box-shadow: inset 0 0 2px rgb(0 0 0 / 25%);
  2109. margin-top: 0;
  2110. padding: 0;
  2111. }
  2112. .ui-dialog .ui-dialog-buttonpane button {
  2113. margin: 0.5em 0.5em 0.5em 0;
  2114. box-shadow: 0 1px 4px rgb(0 0 0 / 20%), inset 0 0 1px #fff, inset 0 0 3px rgb(255 255 255 / 50%);
  2115. }
  2116. .shortcuts {
  2117. background: rgb(50 50 50 / 93%);
  2118. color: #eee;
  2119. border: 1px solid rgb(255 255 255 / 70%);
  2120. border-radius: 6px;
  2121. box-shadow: 0 4px 30px rgb(0 0 0 / 50%);
  2122. }
  2123. .shortcuts-header {
  2124. display: flex;
  2125. align-items: center;
  2126. justify-content: space-between;
  2127. border-bottom: 1px solid #606060;
  2128. padding: 10px 10px 10px 20px;
  2129. }
  2130. .shortcuts-title {
  2131. text-transform: uppercase;
  2132. color: #ff3478;
  2133. letter-spacing: -0.01em;
  2134. font-weight: 600;
  2135. }
  2136. .shortcuts-close {
  2137. cursor: pointer;
  2138. padding: 5px 10px;
  2139. &:hover {
  2140. color: #db0000;
  2141. }
  2142. &:active {
  2143. color: #a60000;
  2144. }
  2145. }
  2146. .shortcuts-inner {
  2147. @media (--viewport-medium) {
  2148. display: flex;
  2149. }
  2150. }
  2151. .shortcuts-list {
  2152. flex-grow: 1;
  2153. padding: 40px;
  2154. }
  2155. .shortcuts li {
  2156. padding: 5px 20px;
  2157. }
  2158. .shortcuts .key {
  2159. color: #ff3478;
  2160. display: inline-block;
  2161. font-weight: 600;
  2162. padding-right: 20px;
  2163. }
  2164. .shortcuts .key.bigger {
  2165. font-size: 1.1rem;
  2166. }
  2167. .ui-dialog {
  2168. font-family: Exo, system-ui;
  2169. font-weight: 500;
  2170. background-color: rgb(255 255 255 / 90%);
  2171. box-shadow: inset 0 1px 3px rgb(0 0 0 / 25%), 0 8px 40px 0 rgb(0 0 0 / 35%);
  2172. border-radius: 6px;
  2173. border: 1px solid rgb(255 255 255 / 98%);
  2174. text-align: center;
  2175. }
  2176. .ui-dialog .ui-dialog-content {
  2177. color: #535353;
  2178. padding: 20px 26px 30px;
  2179. }
  2180. .ui-dialog .ui-dialog-title {
  2181. margin: 0;
  2182. color: #305ba9;
  2183. font-size: 1rem;
  2184. text-transform: none;
  2185. letter-spacing: -0.01em;
  2186. text-align: center;
  2187. float: none;
  2188. font-weight: 500;
  2189. }
  2190. .ui-widget-overlay {
  2191. background-color: rgb(0 0 0 / 60%);
  2192. }
  2193. .helper-container {
  2194. float: right;
  2195. margin-bottom: -450px;
  2196. margin-top: 202px;
  2197. margin-right: 70px;
  2198. padding-top: 0;
  2199. width: 610px;
  2200. box-shadow: 0 1px 4px rgb(0 0 0 / 15%);
  2201. border: 1px solid #cfcfcf;
  2202. border-radius: 4px;
  2203. @media (max-width: 950px) {
  2204. display: none;
  2205. }
  2206. }
  2207. .context-helper {
  2208. text-transform: uppercase;
  2209. color: #777;
  2210. font-size: 0.8rem;
  2211. cursor: pointer;
  2212. font-weight: 600;
  2213. float: right;
  2214. &:hover {
  2215. color: #3b9de8;
  2216. }
  2217. &:active {
  2218. color: #c36;
  2219. }
  2220. }
  2221. .cron-helper-tabs {
  2222. border: none !important;
  2223. font-family: Exo, system-ui !important;
  2224. }
  2225. .cron-helper-tabs a {
  2226. color: #777;
  2227. font-weight: 600;
  2228. line-height: 30px;
  2229. padding: 0 12px;
  2230. text-transform: uppercase;
  2231. }
  2232. .cron-helper-tabs a:hover {
  2233. color: #c36;
  2234. }
  2235. .cron-helper-tabs a:active {
  2236. color: #3b9de8;
  2237. }
  2238. .cron-helper-tabs .ui-tabs-selected a,
  2239. li[aria-expanded="true"] a {
  2240. color: #c36;
  2241. }
  2242. .cron-helper-tabs .form-label {
  2243. padding-right: 15px;
  2244. padding-left: 25px;
  2245. }
  2246. .cron-helper-tabs .form-label.first {
  2247. display: inline-block;
  2248. width: 120px;
  2249. padding-left: 0;
  2250. }
  2251. .cron-helper-tabs .form-select {
  2252. display: inline-block;
  2253. width: 384px;
  2254. }
  2255. .context-helper-close {
  2256. cursor: pointer;
  2257. float: right;
  2258. size: 46px 32px;
  2259. padding-top: 11px;
  2260. filter: contrast(50%);
  2261. &:hover {
  2262. background-color: #aaa;
  2263. filter: none;
  2264. }
  2265. &:active {
  2266. background-color: #999;
  2267. filter: none;
  2268. }
  2269. }
  2270. .server-info-data {
  2271. margin-left: 100px;
  2272. margin-top: -20px;
  2273. & table {
  2274. width: auto;
  2275. }
  2276. }
  2277. .server-info-name {
  2278. margin-top: 8px;
  2279. margin-bottom: 22px;
  2280. font-weight: 400;
  2281. }
  2282. .server-info-output {
  2283. color: #c36;
  2284. padding: 10px 0 20px 20px;
  2285. background: #fff;
  2286. }
  2287. .icon-server-info {
  2288. font-size: 4.6rem;
  2289. float: left;
  2290. margin-right: 32px;
  2291. margin-left: 2px;
  2292. }
  2293. .userlist-email {
  2294. font-size: 0.75rem;
  2295. white-space: nowrap;
  2296. text-overflow: ellipsis;
  2297. }
  2298. .userlist-username {
  2299. margin-top: -2px;
  2300. line-height: 1.2rem;
  2301. }
  2302. .app-footer {
  2303. border-top: 1px solid #ddd;
  2304. font-size: 0.8rem;
  2305. padding-top: 30px;
  2306. padding-bottom: 30px;
  2307. }
  2308. /* Collapse component
  2309. ========================================================================== */
  2310. .collapse {
  2311. }
  2312. .collapse[open] .collapse-header::after {
  2313. transform: rotate(180deg);
  2314. }
  2315. .collapse-header {
  2316. background: linear-gradient(to bottom, rgb(247 247 247 / 100%) 0%, rgb(255 255 255 / 100%) 100%);
  2317. border: 1px solid #ddd;
  2318. text-shadow: 0 1px rgb(255 255 255 / 95%);
  2319. box-shadow: inset 0 0 1px rgb(255 255 255 / 100%), inset 0 0 4px rgb(255 255 255 / 80%),
  2320. 0 4px 6px rgb(190 190 190 / 40%);
  2321. font-weight: 600;
  2322. color: #30659d;
  2323. cursor: pointer;
  2324. position: relative;
  2325. padding: 8px 18px;
  2326. &:hover {
  2327. color: #ff3478;
  2328. }
  2329. &::after {
  2330. content: "";
  2331. display: block;
  2332. background-image: url("/images/arrow.svg");
  2333. background-size: 22px auto;
  2334. background-repeat: no-repeat;
  2335. background-position: center;
  2336. size: 22px 100%;
  2337. position: absolute;
  2338. top: 0;
  2339. right: 15px;
  2340. }
  2341. }
  2342. .collapse-content {
  2343. box-sizing: border-box; /* Work around box-sizing not inheriting in <details> in many browsers */
  2344. padding: 20px 20px 10px;
  2345. @media (--viewport-medium) {
  2346. padding: 20px 50px 10px;
  2347. }
  2348. }
  2349. /* Debug panel
  2350. ========================================================================== */
  2351. .debug-panel {
  2352. position: fixed;
  2353. bottom: 0;
  2354. left: 0;
  2355. width: 100%;
  2356. z-index: 4;
  2357. box-shadow: 0 0 5px rgb(0 0 0 / 40%);
  2358. @media (--viewport-medium) {
  2359. width: auto;
  2360. }
  2361. }
  2362. .debug-panel-toggle {
  2363. display: block;
  2364. text-align: center;
  2365. font-size: 0.8rem;
  2366. font-weight: 500;
  2367. color: #000;
  2368. padding: 10px 15px;
  2369. background-color: #ff0;
  2370. &:hover {
  2371. background-color: #ee0;
  2372. }
  2373. }
  2374. .debug-panel-content {
  2375. background-color: #eee;
  2376. font-size: 0.75rem;
  2377. padding: 20px;
  2378. max-height: 300px;
  2379. overflow: auto;
  2380. }