| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367 |
- body {
- background-color: #282828;
- }
- b,
- strong {
- color: #cacaca;
- }
- button,
- select {
- text-shadow: 0 0 0 #d4d4d4 !important;
- }
- body {
- color: #cdcdcd;
- }
- .body-login, .body-reset {
- background: #303030 !important;
- background: radial-gradient(circle, rgba(77,77,77,1) 0%, rgba(31,31,31,1) 100%) !important;
- }
- a {
- color: #cdcdcd;
- }
- .disabled {
-
- }
- .clearfix:before,
- .clearfix:after {
-
- }
- .clearfix:after {
-
- }
- .text-right {
-
- }
- .text-center {
-
- }
- .text-small {
-
- }
- .check-label {
-
- }
- .check-label:before {
-
- }
- .clicked-on.check-label:before,
- .selected .check-label:before {
-
- }
- .l-center {
-
- }
- .l-logo {
-
- }
- .l-header {
- background: #454545;
- border-bottom: 1px solid #505050;
- text-shadow: 1px 1px rgba(0,0,0,0.5);
- box-shadow: 0px 8px 15px rgba(0,0,0,0.25);
- }
- .l-header a {
-
- }
- .l-menu__item--active {
-
- }
- .l-menu__item.l-menu__item--active a {
- color: #dadada;
- background: linear-gradient(to bottom, rgba(15,15,15,0.6) 0%,rgba(45,45,45,0.75) 30%,rgba(60,60,60,1) 95%);
- text-shadow: 0px 1px rgba(0,0,0,0.5);
- border-left-color: #353535;
- border-right-color: #353535;
- }
- .l-menu {
-
- }
- .l-menu__item {
-
- }
- .l-menu__item a {
- color: #e7e7e7;
- }
- .l-menu__item a:hover {
- color: #dadada !important;
- text-shadow: 1px 1px rgba(0,0,0,0.5) !important;
- background: linear-gradient(to bottom, rgba(15,15,15,0.6) 0%,rgba(45,45,45,0.75) 30%,rgba(60,60,60,1) 95%) !important;
- box-shadow: none !important;
- }
- .l-menu__item a:active {
- background: linear-gradient(to bottom, rgba(15,15,15,0.7) 0%,rgba(45,45,45,0.85) 30%,rgba(50,50,50,1) 95%) !important;
- color: #fff !important;
- text-shadow: 0px -1px 1px rgba(0,0,0,0.5) !important;
- }
- .l-menu__item.l-menu__item--active:hover {
- background: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%,rgba(255,255,255,0.15) 30%,rgba(255,255,255,0.15) 95%) !important;
- }
- .l-menu.active .l-menu__item.focus a {
-
- }
- .l-menu.active .l-menu__item.focus a:hover {
-
- }
- .lang-ua .l-menu__item a,
- .lang-nl .l-menu__item a,
- .lang-fr .l-menu__item a,
- .lang-ru .l-menu__item a {
-
- }
- .lang-el .l-menu__item a,
- .lang-tr .l-menu__item a {
- }
- .lang-ar .l-menu__item a {
- padding: 11px 11px;
- }
- .lang-ar .l-menu__item a {
- line-height: 35px;
- }
- .lang-de .l-menu__item a {
- padding: 11px 12px;
- }
- .lang-tw .l-menu__item a {
- padding: 13px 18px;
- }
- .l-profile {
- overflow: hidden;
- float: right;
- }
- .l-profile__logout {
- color: #e7e7e7 !important;
- }
- .l-profile__server {
- color: #ceefff;
- margin-top: 10px;
- float: left;
- }
- .l-profile__notifications {
- color: #fff;
- cursor: pointer;
- font-weight: 600;
- padding: 10px 5px 0;
- font-size: 1.2rem !important;
- line-height: 0.95rem;
- border-left: 1px solid transparent !important;
- border-right: 1px solid transparent !important;
- }
- .l-profile__notifications.active.l-profile__notifications.updates:active {
- background: linear-gradient(to bottom, rgba(15,15,15,0.6) 0%,rgba(45,45,45,0.75) 30%,rgba(60,60,60,1) 95%) !important;
- color: #046c98 !important;
- text-shadow: 0px -1px 1px rgba(0,0,0,0.5) !important;
- box-shadow: none !important;
- transition: 0.2s;
- border-left: 1px solid transparent !important;
- border-right: 1px solid transparent !important;
- }
- .l-profile__notifications:hover,.l-profile__notifications.updates:hover {
- text-shadow: 1px 1px rgba(0,0,0,0.5) !important;
- background: linear-gradient(to bottom, rgba(15,15,15,0.6) 0%,rgba(45,45,45,0.75) 30%,rgba(60,60,60,1) 95%) !important;
- border: none !important;
- border-left: 1px solid transparent !important;
- border-right: 1px solid transparent !important;
- box-shadow: none !important;
- }
- .notification-container {
- background-color: rgba(50,50,50,0.99);
- text-shadow: 0px 1px rgba(0,0,0,0.5);
- color: #dadada;
- border: 1px solid #404040;
- }
- .notification-container .empty {
- }
- .notification-container .empty .status-icon {
- color: #dadada;
- }
- .notification-container .unseen {
- color: #dadada;
- }
- .notification-container li {
- border-bottom: 1px solid #282828;
- }
- .notification-container li:last-child {
- }
- .notification-container .mark-seen {
- background-color: #ff3478;
- }
- .notification-container .mark-seen:hover {
- }
- .notification-container .mark-seen:active {
- }
- .notification-container .unseen .mark-seen{
- }
- .notification-container .title {
- }
- .notification-container .title a {
- }
- .notification-container .unseen .title a,
- .notification-container .unseen .title {
- color: #fff !important;
- }
- .notification-container .unseen .title a:hover {
- }
- .notification-container .unseen .title a:active {
- }
- .notification-container a {
- color: #4fabe9;
- }
- .notification-container a:hover {
- color: #0099ff;
- }
- .notification-container a:active {
- color: #0079cb;
- }
- .notification-container .icon {
- }
- .notification-container .icon.starred {
- }
- .notification-container .time {
- }
- .alert {
- border: 1px solid #212121;
- }
- .alert i.fas {
- }
- .alert.alert-with-icon {
- }
- .alert.alert-info {
- }
- .alert.alert-info i.fas {
- }
- .alert.alert-danger {
- background-color: #d13535;
- }
- .alert.alert-danger i.fas {
- color: #d13535;
- }
- .alert.alert-success {
- }
- .alert.alert-success i.fas {
- }
- form#vstobjects .alert {
- }
- .app-list.cards {
- }
- .app-form {
- }
- .app-form label {
- }
- .card {
- float: left;
- background: #454545;
- color: #fafafa;
- text-shadow: 0px 1px rgba(0,0,0,0.95) !important;
- border: 1px solid #606060;
- box-shadow: 0px 1px 4px rgba(0,0,0,0.2),
- inset 0px 0px 60px rgba(0,0,0,0.25);
- }
- .card.disable {
- }
- .card.disable .card-thumb {
- }
- .card .card-details {
- }
- .card .card-details p {
- color: #bdbdbd;
- }
- .card p.card-title {
- color: #fafafa;
- }
- .card .card-thumb {
- }
- .card .card-thumb img {
- }
- .card button {
- }
- .l-stat {
- background-color: #282828;
- }
- .l-stat__col {
- }
- .l-stat__col a {
- border-bottom: 4px solid #282828;
- background-color: #282828;
- }
- .l-stat__col a:hover {
- border-bottom: 4px solid #d7d7d7;
- }
- .l-stat__col a:active, .l-stat__col a:focus {
- border-bottom: 4px solid #d11755;
- }
- .l-stat__col--active a {
- border-bottom: 4px solid #e93b76;
- }
- .l-stat.active .l-stat__col.focus a {
- border-bottom: 4px solid #e93b76;
- }
- .l-stat.active .l-stat__col.focus a .l-stat__col-title {
- }
- .l-stat__col a:hover .l-stat__col-title {
- color: #d7d7d7;
- }
- .l-stat__col a:active .l-stat__col-title {
- }
- .l-stat__col ul {
- }
- .l-stat__col li {
- }
- .l-stat__col span {
- }
- .l-stat__col-title {
- font-weight: 500;
- color: #bcbcbc;
- text-shadow: 0px 1px rgba(0,0,0,0.4);
- }
- .l-stat__col--active .l-stat__col-title {
- color: #ff558f;
- }
- .l-stat__col .fas {
- color: #707070;
- padding: 4px;
- }
- .l-stat__col--active .fas {
- color: #aaaaaa;
- }
- .l-separator.selected,
- .l-separator {
- border-top: 1px solid #454545;
- }
- div.l-content > div.l-separator:nth-of-type(2) {
- }
- div.l-content > div.l-separator:nth-of-type(4) {
- border-bottom: 1px solid #454545;
- background-color: #282828;
- box-shadow: 0px 4px 6px rgba(0,0,0,0.25) !important;
- }
- .l-sort {
- background-color: #282828;
- }
- .l-sort__create-btn {
- }
- .l-sort__create-btn:hover {
- }
- .l-sort__create-btn:active {
- }
- .l-sort__create-btn--active {
- }
- .l-sort__create-btn.restore {
- }
- .l-sort__create-btn.restore:hover {
- }
- .l-sort__create-btn.restore:active {
- }
- .l-sort__create-btn.edit {
- }
- .l-sort__create-btn.edit:hover {
- }
- .l-sort__create-btn.edit:active {
- }
- .context-menu.sort-order {
- background-color: rgba(40,40,40,0.95);
- box-shadow: 0 2px 16px 0 rgba(20, 20, 20, 0.65);
- border-radius: 4px;
- border: 1px solid rgba(90,90,90,1);
- }
- .context-menu.sort-order li {
- }
- .context-menu li {
- border-bottom: 1px solid #454545;
- color: #dadada;
- }
- .context-menu.sort-order span.name {
- }
- .context-menu.sort-order span.up {
- }
- .context-menu.sort-order span.active {
- background-color: #454545 !important;
- color: #fff;
- background: linear-gradient(to bottom, rgba(15,15,15,0.6) 0%,rgba(45,45,45,0.75) 30%,rgba(60,60,60,1) 95%);
- text-shadow: 0px 1px rgba(0,0,0,0.8);
- }
- .context-menu.sort-order span:hover {
- color: #fff;
- background: linear-gradient(to bottom, rgba(25,25,25,0.6) 0%,rgba(55,55,55,0.75) 30%,rgba(70,70,70,1) 95%);
- text-shadow: 0px -1px 1px rgba(0,0,0,0.5);
- box-shadow: inset 0px 0px 1px rgba(0,0,0,0.4),
- inset -1px -1px 4px rgba(40,40,40,0.4);
- }
- .context-menu.sort-order span:active,.context-menu.sort-order span:focus {
- background: linear-gradient(to bottom, rgba(35,35,35,0.6) 0%,rgba(65,65,65,0.75) 30%,rgba(80,80,80,1) 95%);
- color: #fff;
- text-shadow: 0px -1px 1px rgba(0,0,0,0.5);
- box-shadow: inset 0px 0px 1px rgba(0,0,0,0.4),
- inset -1px -1px 4px rgba(40,40,40,0.4);
- }
- .context-menu.sort-order span.name i.fas.fa-sort-amount-down {
- }
- .context-menu.sort-order li:last-child {
- }
- .l-sort-toolbar {
- }
- .l-sort-toolbar table{
- }
- .l-sort-toolbar td.toggle-all {
- }
- .l-sort-toolbar .sort-by {
- }
- .l-sort-toolbar .sort-by:hover {
- color: #d4d4d4;
- }
- .l-sort-toolbar .sort-by:hover b {
- color: #d4d4d4;
- }
- .l-sort-toolbar .sort-by:active {
- }
- .l-sort-toolbar .sort-by:active b {
- }
- .l-sort-toolbar .sort-by b {
- }
- .l-sort-toolbar .toggle-all:hover {
- color: #d4d4d4;
- }
- .l-sort-toolbar .toggle-all:active {
- }
- .l-sort-toolbar .l-select {
- }
- .l-sort-toolbar td {
- }
- .l-sort-toolbar.subtitle {
- }
- .l-sort-toolbar td.step-right:first-of-type {
- }
- .l-sort-toolbar td:nth-of-type(2) {
- }
- .l-sort-toolbar td:last-of-type {
- }
- .l-sort-toolbar__filter-apply {
- border: 1px solid #454545;
- background-color: #424242;
- text-shadow: 1px 1px rgba(0,0,0,0.9) !important;
- box-shadow: 0px 1px 1px rgba(0,0,0,0.4) !important;
- color: #cacaca;
- font-size: 1em;
- }
- .l-sort-toolbar__filter-apply:hover {
- color: #0099ff;
- background-color: #454545;
- }
- .l-sort-toolbar__filter-apply:active {
- color: #0074c2;
- text-shadow: 0px -1px rgba(255,255,255,0.2);
- box-shadow: inset 1px 1px 0px rgba(0,0,0,0.2);
- }
- .l-sort-toolbar__search {
- }
- .l-sort-toolbar__search:hover {
- }
- .l-sort-toolbar__search:active {
- }
- .l-sort-toolbar__search--active {
- }
- .l-sort-toolbar .vst {
- color: #dadada;
- }
- .l-sort-toolbar .vst:hover {
- color: #ff3478;
- }
- .l-sort-toolbar .vst:active {
- }
- .l-sort-toolbar .vst.selected {
- color: #ff3478;
- }
- .l-unit-toolbar__buttonstrip {
- }
- .l-unit-toolbar__buttonstrip a {
- }
- .l-unit-toolbar__buttonstrip .fas {
- }
- .subtitle {
- color: #ff3478;
- }
- .l-select {
- border: 1px solid #454545;
- box-shadow: 0px 1px 1px rgba(0,0,0,0.4) !important;
- }
- .lang-ru .l-select {
- }
- .l-select:after {
- }
- .l-select select {
- background-color: #212121;
- box-shadow: 0px 1px 1px rgba(0,0,0,0.4) !important;
- }
- .l-select select:focus {
- }
- .lang-ru .l-select select {
- }
- .l-select select option {
- }
- .l-sort-toolbar .l-select {
- border: 1px solid #454545;
- background-color: #454545;
- text-shadow: 0px 1px rgba(0,0,0,0.65);
- text-shadow: 1px 1px rgba(0,0,0,0.9);
- }
- .l-unit {
- color: #dadada;
- }
- .table-header {
- background: #404040 !important;
- border-left: 1px solid #212121 !important;
- border-right: 1px solid #212121 !important;
- border-bottom: 1px solid #212121 !important;
- border-top: 1px solid #454545 !important;
- text-shadow: 0px 1px rgba(0,0,0,0.95);
- border-bottom-left-radius: 0px !important;
- border-bottom-right-radius: 0px !important;
- color: #dadada;
- box-shadow: inset 0px 1px 1px rgba(0,0,0,0.3) !important;
- }
- .table-header:hover {
- background-color: #404040 !important;
- border-left: 1px solid #212121 !important;
- border-right: 1px solid #212121 !important;
- box-shadow: inset 0px 1px 1px rgba(0,0,0,0.3) !important;
- }
- .table-header .fas {
- }
- .units .l-unit {
- background-color: #303030;
- border-bottom: 1px solid #282828;
- border-left: 1px solid #212121;
- border-right: 1px solid #212121;
- }
- .l-unit:hover, .units .l-unit:hover {
- box-shadow: 0px 2px 10px rgba(20,20,20,0.20);
- background-color: #353535;
- text-shadow: 0px 1px rgba(0,0,0,0.5);
- border-left: 1px solid #212121;
- border-right: 1px solid #212121;
- }
- .units .l-unit.l-unit--starred {
- border-left: 2px solid #ff3478;
- }
- .units.active .l-unit.focus {
- background-color: #353535;
- }
- .units.active .l-unit.focus .l-unit__name {
- }
- .units.active .l-unit.focus .l-unit-toolbar__col--right {
- }
- .units > div:last-child {
- }
- .l-unit-ft {
- color: #cdcdcd;
- }
- .l-unit:hover .l-unit-toolbar__col--right {
- }
- .l-unit--blue {
- }
- .l-unit--suspended {
- background: #252525 !important;
- color: #606060 !important;
- text-shadow: 0px -1px rgba(0,0,0,0.4) !important;
- box-shadow: inset 0px 0px 2px rgba(0,0,0,0.2);
- }
- .l-unit--suspended a {
- color: #606060 !important;
- text-shadow: 0px -1px rgba(0,0,0,0.4) !important;
- }
- .units .l-unit.l-unit--outdated {
- color: #d4d4d4;
- }
- .l-unit--suspended .l-unit__name,
- .l-unit--suspended b,
- .l-unit--outdated .l-unit__name,
- .l-unit--outdated b {
- color: #606060;
- }
- .l-unit--outdated .l-unit__name {
- }
- .l-unit--outdated b {
- color: #d4d4d4;
- }
- .l-unit--suspended .l-percent {
- }
- .l-unit--suspended .l-percent__fill {
- }
- .l-unit--suspended .l-unit__name,
- .l-unit--suspended .l-unit__name span {
- }
- .l-unit--suspended.selected .l-unit__name,
- .l-unit--suspended.selected .l-unit__name span {
- color: #707070;
- }
- .l-unit--suspended.selected {
- background-color: #454545 !important;
- color: #707070 !important;
- }
- .l-unit--outdated.selected {
- }
- .l-unit--suspended.selected .l-unit__name,
- .l-unit--suspended.selected b,
- .l-unit--outdated.selected .l-unit__name,
- .l-unit--outdated.selected b,
- .l-unit--suspended.selected .l-percent,
- .l-unit--suspended.selected .l-percent__fill,
- .l-unit--suspended.selected .l-unit__name,
- .l-unit--suspended.selected .l-unit__name span {
- }
- .l-unit.selected .l-percent {
- }
- .l-unit--selected {
- }
- .l-unit-toolbar{
- }
- .l-unit label {
- }
- .l-unit__columns {
- }
- .l-unit__col {
- }
- .l-unit__col--left {
- }
- .units.compact .l-unit__col--left {
- }
- .l-unit__col--left.step-left {
- }
- .l-unit__col--right.total {
- }
- .l-unit__col--right.back {
- }
- .l-sort-toolbar .step-left {
- }
- .step-right {
- }
- .l-unit__date {
- }
- .l-unit__suspended {
- }
- .units.compact .l-unit__suspended {
- }
- .l-unit--outdated .l-unit__suspended,
- .l-unit--suspended .l-unit__suspended {
- }
- .l-unit-ft .subtitle,
- .l-unit .subtitle {
- color: #ff3478;
- }
- .l-unit.l-unit--outdated .l-unit__date {
- }
- .l-unit__name {
- color: #dadada;
- }
- .l-unit__servername {
- }
- .l-unit__stats.separate,
- .l-unit__name.separate {
- }
- .l-unit__name.small {
- }
- .l-unit__name.small-2 {
- }
- .l-unit__name span {
- }
- .l-unit__name span:first-of-type {
- }
- .l-unit__name b {
- }
- .l-unit__ip {
- }
- .l-unit__ip span {
- }
- .display-ip {
- }
- .display-ip span {
- }
- .l-unit__stats {
- }
- .l-unit__stats:hover {
- background: transparent !important;
- }
- .l-unit__stats table {
- }
- .l-unit__stats td {
- }
- .l-unit__stat-col--left a, .l-unit__stat-col--left a:visited {
- color: #fafafa;
- }
- .l-unit__stat-col--left a:hover {
- color: #fff;
- }
- .l-unit__stat-col--left {
- }
- .l-unit__stat-col--left.border {
- }
- .l-unit__stat-col--left.border-clear {
- }
- .l-unit__stat-col--left.super-compact {
- }
- .l-unit__stat-col--left.compact {
- }
- .l-unit__stat-col--left.compact-1 {
- }
- .l-unit__stat-col--left.compact-2 {
- }
- .l-unit__stat-col--left.compact-3 {
- }
- .l-unit__stat-col--left.compact-4 {
- }
- .l-unit__stat-col--left.compact-5 {
- }
- .l-unit__stat-col--left.wide {
- }
- .l-unit__stat-col--left.wide-2 {
- }
- .l-unit__stat-col--left.wide-3 {
- }
- .l-unit__stat-col--left.wide-4 {
- }
- .l-unit__stat-col--left.wide-5 {
- }
- .l-unit__stat-col--left.wide-6 {
- }
- .l-unit__stat-col--left.wide-7 {
- }
- .l-unit__stat-col--left.small-2 {
- }
- .l-unit__stat-col--left.tiny {
- }
- .l-unit__stat-col--left.tiny b {
- }
- .l-unit__stat-col--right {
- }
- .l-unit-toolbar__col--left {
- }
- .l-unit-toolbar__col--right {
- }
- body.mobile .l-unit-toolbar__col--right {
- }
- .l-unit-toolbar .shortcut {
- }
- .units.active .l-unit.focus .l-unit-toolbar .shortcut {
- }
- .units.active .l-unit.focus .l-unit-toolbar .shortcut.delete {
- }
- .units.active .l-unit.focus .l-unit-toolbar .shortcut.enter {
- }
- .units.active .l-unit.focus .l-unit-toolbar i {
- }
- .l-unit__stat-col.volume {
- }
- .actions-panel__col {
- }
- .actions-panel__col a {
- }
- .lang-ru .actions-panel__col a {
- }
- .lang-tw .actions-panel__col a {
- }
- .lang-ar .actions-panel__col a {
- }
- .icon-pad-right {
- }
- .l-icon-up-arrow, .l-icon-down-arrow, .l-icon-star, .l-icon-to-top, .l-icon-shortcuts, .l-icon-star-orange, .l-icon-star-blue {
- }
- .l-icon-down-arrow {
- }
- .l-icon-up-arrow {
- }
- .l-icon-star {
- }
- .l-unit--starred .l-icon-star {
- }
- .selected .l-icon-star {
- }
- .units.compact .l-icon-star {
- }
- .l-icon-star:hover {
- }
- .l-icon-star:active {
- }
- .l-unit:hover .l-icon-star {
- }
- .l-icon-to-top {
- }
- .l-icon-to-top:hover {
- }
- .l-icon-to-top:active {
- }
- .l-icon-shortcuts {
- }
- .l-icon-shortcuts:hover {
- }
- .l-icon-shortcuts:active {
- }
- body.mobile .l-icon-to-top,
- body.mobile .l-icon-shortcuts {
- }
- .l-icon-star-orange {
- }
- .l-icon-star-blue {
- }
- .media-top {
- }
- .l-unit__stat-cols {
- }
- .l-unit__stat-cols.last {
- }
- .l-unit__stat-cols.graph {
- }
- .l-unit__stat-cols.tiny {
- }
- .l-percent {
- }
- .l-percent__fill {
- }
- #vstobjects .l-center {
- }
- .timer-container {
- }
- .timer-container .refresh-timer {
- }
- .timer-container .refresh-timer.paused {
- }
- .timer-container .refresh-timer.paused .loader-half.right,
- .timer-container .refresh-timer.paused .loader-half.dark {
- }
- .timer-container .loader-half {
- }
- .timer-container .loader-half.left {
- }
- .timer-container .loader-half.right {
- }
- .timer-container .loader-half.dark {
- }
- .timer-container .movement {
- }
- .timer-container .movement.left {
- }
- .timer-container .movement.right {
- }
- .timer-container .timer-button {
- }
- .timer-container .timer-button.pause {
- }
- .timer-container .timer-button.play {
- }
- .uppercase {
- }
- .title b,
- .title {
- color: #ff3478;
- }
- .title {
- }
- /* form styles */
- .vst-error {
- color: #ff3333;
- }
- .vst-ok {
- color: #53ba55;
- }
- .l-unit-toolbar__buttonstrip .vst-ok, .l-unit-toolbar__buttonstrip .vst-error {
- }
- .vst-ok a {
- }
- .vst-ok a:hover {
- color: #ff3478;
- }
- .vst-ok a:active {
- }
- .data {
- }
- .data-col1 {
- }
- .data-col1 td {
- }
- .data-col1 tr:first-child td {
- }
- .login-box td,
- .data td {
- color: #d4d4d4;
- }
- .input-label {
- }
- .data input[type="checkbox"] {
- }
- .step-top {
- }
- .step-top-small {
- }
- .jump-top {
- }
- .jump-small-top {
- }
- .float-right {
- }
- .data a {
- }
- label {
- }
- label:hover {
- color: #d4d4d4 !important;
- }
- .vst-input {
- background-color: #454545;
- border: 1px solid #606060;
- color: #d4d4d4;
- box-shadow: 0px 1px 4px rgba(0,0,0,0.35);
- }
- .vst-input:hover {
- border-color: #0090ff;
- background-color: #494949;
- }
- .vst-input:focus {
- background-color: #222222;
- border-color: #0080df;
- color: #fff;
- box-shadow: 0px 1px 6px rgba(0,52,91,0.75);
- }
- .vst-input:disabled,
- .vst-list:disabled {
- background-color: #303030;
- text-shadow: 1px 1px rgba(0,0,0,0.3);
- color: #acacac;
- border-color: #606060;
- }
- .vst-input:focus:disabled {
- }
- .vst-input:disabled:hover,
- .vst-list:disabled:hover {
- border-color: #606060 !important;
- }
- .vst-input.long {
- }
- .vst-input.short {
- }
- .vst-input.vst-list-editor {
- }
- .vst-input.vst-list-editor:focus {
- background-color: #222222;
- box-shadow: none !important;
- }
- .vst-list {
- background-color: #454545;
- border: 1px solid #606060;
- color: #d4d4d4;
- text-shadow: 0 0 0 #d4d4d4;
- box-shadow: 0px 1px 4px rgba(0,0,0,0.35);
- }
- select.vst-list:-moz-focusring {
- }
- .vst-list.long-2 {
- }
- .vst-list option {
- }
- .vst-list:hover {
- border-color: #0090ff;
- background-color: #494949;
- }
- .vst-list:focus {
- background-color: #222222;
- border-color: #0080df;
- color: #fff;
- box-shadow: 0px 1px 6px rgba(0,52,91,0.75);
- }
- .vst-list.flat {
- border: 1px solid #454545;
- color: #fff;
- }
- .vst-list.flat:hover {
- color: #ff3478;
- }
- .vst-list.flat option {
- color: #d4d4d4;
- }
- a.vst-text,
- a.vst-text b{
- color: #fff;
- }
- a.vst-text:hover,
- a.vst-text:hover b{
- color: #ff3478;
- }
- a.vst-text:active,
- a.vst-text:active b{
- color: #ff3478;
- }
- .advanced-options {
- background: #454545 !important;
- border: 1px solid #505050 !important;
- text-shadow: 0px 1px rgba(0,0,0,0.4);
- box-shadow: inset 0px 0px 2px rgba(0,0,0,0.5),
- 0px 2px 6px rgba(0,0,0,0.4) !important;
- color: #fff !important;
- padding: 4px 0px 0px 18px;
- overflow: hidden;
- height: 28px;
- }
- .advanced-options a {
- color: #fff !important;
- }
- .advanced-options .fas {
- }
- .vst-textinput {
- background-color: #454545;
- border: 1px solid #606060;
- color: #d4d4d4;
- box-shadow: 0px 1px 4px rgba(0,0,0,0.35);
- }
- .vst-textinput:hover {
- border: 1px solid #0090ff;
- background-color: #494949;
- }
- .vst-textinput:focus {
- background-color: #222222;
- border-color: #0080df;
- color: #fff !important;
- box-shadow: 0px 1px 6px rgba(0,52,91,0.75);
- }
- .vst-textinput:disabled {
- background-color: #454545;
- }
- .vst-textinput.console{
- }
- .vst-textinput.short {
- }
- #advanced-options .console{
- }
- .generate {
- color: #29a9ff;
- border-radius: 4px;
-
- }
- .generate:hover {
- background-color: #ff3478;
- border-color: #ff3478;
- }
- .generate:active {
- background-color: #be1f54;
- border-color: #be1f54;
- }
- .vst-advanced {
- border-bottom: 0px solid #326b9b;
- color: #0094f7;
- font-size: 0.8rem;
- padding: 4px 12px;
- text-decoration: none;
- border-radius: 4px;
- text-transform: none !important;
- }
- .login-box .vst-advanced:hover {
- color: #ff3478 !important;
- background-color: transparent;
- border-color: transparent;
- border: none !important;
- background: none !important;
- box-shadow: none !important;
- }
- .login-box .vst-advanced:active {
- color: #be1f54 !important;
- border: none !important;
- background: none !important;
- box-shadow: none !important;
- }
- .vst-advanced:hover {
- color: #fff;
- background-color: #ff3478;
- border-color: #ff3478;
- text-decoration: none;
- }
- .login-box .vst-advanced:active,
- .vst-advanced:active {
- color: #fff;
- background-color: #be1f54;
- border-color: #be1f54;
- text-decoration: none;
- }
- .login-box .vst-advanced {
- border-bottom: none;
- color: #326b9b;
- font-size: 0.85em !important;
- padding: 2px 2px 0;
- text-decoration: none;
- text-transform: uppercase;
- border: none !important;
- background: none !important;
- box-shadow: none !important;
- }
- .vst-checkbox {
- }
- .lets-encrypt-note {
- }
- .additional-control {
- color: #0099ff;
- }
- .additional-control:hover {
- background-color: #ff3478;
- border-color: #ff3478;
- }
- .additional-control:active {
- }
- .additional-control.ftp-remove-user {
- }
- .additional-control.delete:hover,
- .additional-control.ftp-remove-user:hover {
- }
- .additional-control.delete:active,
- .additional-control.ftp-remove-user:active {
- }
- .additional-control.add:hover {
- }
- .additional-control.add:active{
- }
- .additional-control.remove-ns {
- }
- .data .step-left {
- }
- .hide-password {
- }
- .toggle-psw-visibility-icon {
- }
- .show-passwords-enabled-action {
- }
- .ftp-path-value,
- .hint,
- td.hint {
- color: #a2a2a2;
- font-size: 0.8rem;
- }
- .ftp-path-prefix { padding-top: 12px; font-size: 0.8rem; color: #555; }
- .ui-dialog .ui-dialog-buttonpane button {
- box-shadow: 0px 1px 4px rgba(0,0,0,0.1),
- inset 0px 0px 1px #000,
- inset 0px 0px 3px rgba(0,0,0,0.5) !important;
- }
- .ui-button, .button, .ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-text-only.submit, .vst-advanced, .to-shortcuts, .to-top {
- font-size: 0.85rem !important;
- font-weight: 400 !important;
- color: #eeeeee !important;
- border: 1px solid #707070 !important;
- background: rgb(48,48,48) !important;
- background: linear-gradient(0deg, rgba(48,48,48,1) 0%, rgba(53,53,53,1) 35%, rgba(69,69,69,1) 100%) !important;
- box-shadow: 0px 1px 4px rgba(0,0,0,0.2),
- inset 0px 0px 1px rgba(20,20,20,1),
- inset 0px 0px 3px rgba(0,0,0, 0.5) !important;
- text-shadow: 0px 1px 1px rgba(0,0,0,0.35) !important;
- }
- .ui-button:hover, .button:hover, .ui-button.cancel:hover, .button.cancel:hover,
- .ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-text-only.submit:hover, .vst-advanced:hover, .to-shortcuts:hover, .to-top:hover {
- color: #fff !important;
- text-shadow: 1px 1px rgba(0,0,0,0.25) !important;
- border: 1px solid #0098ff !important;
- background: linear-gradient(0deg, rgba(58,58,58,1) 0%, rgba(68,68,68,1) 35%, rgba(79,79,79,1) 100%) !important;
- background-color: #454545;
- box-shadow: 0px 1px 3px rgba(0,0,0,0.35),
- inset 0px 0px 1px rgba(0,0,0,1),
- inset 0px 0px 3px rgba(0,0,0,0.65) !important;
- transition: 0.2s;
- }
- .ui-button:focus,.ui-button:active,
- .button:active,.button:focus,.ui-button.cancel:focus,.ui-button.cancel:active,
- .button.cancel:active,.button.cancel:focus,
- .ui-button.ui-widget.ui-state-default.ui-corner-all.ui-button-text-only.submit:active, .vst-advanced:active, .to-shortcuts:active, .to-top:active,
- .to-shortcuts:focus, .to-top:focus {
- border: 1px solid #0066b4 !important;
- background: linear-gradient(0deg, rgba(69,69,69,1) 0%, rgba(53,53,53,1) 35%, rgba(48,48,48,1) 100%) !important;
- color: #d4d4d4 !important;
- text-shadow: 0px -1px 1px rgba(0,0,0,0.55) !important;
- box-shadow: 0px 1px 3px rgba(0,0,0,0.3),
- inset 0px 0px 1px rgba(0,0,0,1),
- inset -1px -1px 4px rgba(30,30,30,0.4) !important;
- }
- .ui-button-text-only {
- text-shadow: 0px 1px rgba(0,0,0,0.5);
- }
- .ui-dialog .ui-dialog-buttonpane button span.ui-button-text {
- }
- .ui-dialog .ui-button:hover span {
- color: #fafafa !important;
- }
- .ui-button-text-only .selected {
- }
- .ui-button.cancel,
- .button.cancel {
- color: #eeeeee !important;
- border: 1px solid #454545 !important;
- background: rgb(48,48,48) !important;
- background: linear-gradient(0deg, rgba(48,48,48,1) 0%, rgba(53,53,53,1) 35%, rgba(69,69,69,1) 100%) !important;
- }
- .ui-button-text {
- color: #eeeeee !important;
- }
- .ui-button.cancel:active,
- .button.cancel:active {
- }
- a.button.cancel {
- }
- .ui-dialog button.cancel {
- border: 1px solid #d4d4d4;
- background-color: #d4d4d4;
- }
- .ui-button.danger:hover, .button.danger:hover {
- background: rgb(133,0,0);
- background: linear-gradient(0deg, rgba(133,0,0,1) 0%, rgba(203,0,0,1) 100%) !important;
- color: #fff !important;
- text-shadow: 0px 1px rgba(0,0,0,0.45) !important;
- border: 1px solid rgb(170, 0, 0) !important;
- }
- .ui-button.danger:active, .button.danger:active, .ui-button.danger:focus, .button.danger:focus {
- background: rgb(133,0,0);
- background: linear-gradient(180deg, rgba(133,0,0,1) 0%, rgba(203,0,0,1) 100%) !important;
- color: #4d0000 !important;
- text-shadow: 0px -1px 1px rgba(255,255,255,0.3) !important;
- border: 1px solid rgb(251, 71, 51) !important;
- }
- .ui-button span {
- }
- .ui-button:hover span {
- color: #d4d4d4 !important;
- }
- .ui-button:active span {
- color: #d4d4d4;
- }
- .ui-button.cancel span {
- }
- .ui-button:hover span {
- }
- .ui-button:active span {
- }
- .ui-dialog button.cancel span {
- color: #fff !important;
- }
- .unlim-trigger {
- }
- .optional {
- }
- .data-active b {
- }
- .data-suspended b {
- }
- .data-date {
- }
- .data-dotted {
- }
- .mail-infoblock-td {
- }
- .mail-infoblock {
- color: #fff;
- border: 1px solid #606060;
- margin-top: 87px;
- box-shadow: 0px 1px 4px rgba(0,0,0,0.35);
- background-color: #454545;
- }
- .mail-infoblock:hover {
- }
- .mail-infoblock td {
- color: #dadada;
- }
- .mail-infoblock td:first-child{
- }
- .mail-infoblock div {
- }
- .mail-infoblock a {
- color: #52b9ff;
- }
- .mail-infoblock a:hover {
- color: #ff3478;
- }
- .additional-info {
- }
- .additional-info td {
- }
- .additional-info td.details {
- }
- :focus {outline:none;}
- ::-moz-focus-inner {border:0;}
- .login {
- background-color: #282828;
- box-shadow: 0px 8px 25px rgba(0,0,0, 0.3), inset 0px 0px 2px rgba(0,0,0,0.25) !important;
- }
- .login-welcome {
- color: #fff !important;
- }
- .page-title {
- color: #dbdbdb !important;
- }
- .qr-code {
- border: 1px solid #3b3b3b;
- box-shadow: 0px 1px 4px rgba(0,0,0,0.35);
- }
- .password-option {
- }
- .login a.error {
- color: #f864fa;
- }
- .hestiacp {
- }
- .hestiacp:hover {
- }
- .hestiacp:active {
- color: #ff3478;
- }
- .login-bottom {
- }
- .l-unit.selected {
- background-color: #454545;
- color: #d4d4d4;
- box-shadow: 0px 2px 10px rgba(30,30,30,0.35);
- text-shadow: 0px 1px rgba(0,0,0,0.5);
- border-left: 1px solid #212121;
- border-right: 1px solid #212121;
- }
- .l-unit.selected:hover {
- background-color: #555555;
- color: #d4d4d4;
- box-shadow: none !important;
- text-shadow: 0px 1px rgba(0,0,0,0.4);
- }
- .l-unit.selected b,
- .l-unit.selected strong {
- color: #d4d4d4;
- }
- /* MAIN MENU COLLAPSED */
- .collapsed .l-stat {
- }
- .collapsed .l-stat__col a {
- }
- .collapsed .l-stat__col-title {
- }
- div.l-content.collapsed > div.l-separator:nth-of-type(2) {
- }
- div.l-content.collapsed > div.l-separator:nth-of-type(4) {
- }
- div.l-content.collapsed .l-sort {
- }
- .l-content > .units.l-center::before {
- }
- .console-output {
- color: #dadada !important;
- }
- form#vstobjects {
- }
- form#vstobjects.suspended {
- background-color: #282828;
- }
- #add-icon {
- }
- .l-sort__create-btn.restore #add-icon {
- }
- .l-sort__create-btn.edit #add-icon {
- }
- #tooltip {
- }
- .l-sort__create-btn:active #add-icon {
- }
- .l-sort__create-btn.restore:active #add-icon {
- }
- .l-sort__create-btn.edit:active #add-icon {
- }
- .l-sort__create-btn.edit:hover #tooltip {
- }
- .l-sort__create-btn.edit:active #tooltip {
- }
- .l-sort__create-btn:active #tooltip {
- }
- .pill {
- }
- .pill.usage{
- box-shadow: inset 0px 1px 1px rgba(0,0,0,0.85), 0px 1px 1px rgba(0,0,0,0.2);
- background-color: rgba(15,15,15,0.5);
- border: 1px solid rgba(120,120,120,0.95);
- text-shadow: 0px 1px 1px rgba(0,0,0,0.5);
- color: #909090;
- }
- .pill.usage b { color: #d8d8d8; }
- .badge {
- box-shadow: 0px 1px 2px rgba(70,70,70,0.5),
- inset 0px 2px 2px rgba(0,0,0,0.65);
- text-shadow: 0px 1px 2px rgba(0,0,0,0.5);
- border: 1px solid #212121 !important;
- }
- .badge.large {
- }
- .badge.raised {
- background: radial-gradient(ellipse at center, rgba(40,40,40,0.2) 0%,rgba(80,80,80,0.05) 100%);
- }
- .l-unit--suspended .badge {
- background: #303030 !important;
- color: #808080 !important;
- text-shadow: 0px -1px rgba(0,0,0,0.4) !important;
- box-shadow: 0px 1px 2px rgba(25,25,25,0.3) !important;
- }
- .pill.gray, .badge.gray {
- border: 1px solid #181818;
- background-color: #252525;
- color: #dadada;
- text-shadow: 0px 1px rgba(0,0,0,0.7) !important;
- }
- .pill.blue, .badge.blue {
- }
- .pill.purple, .badge.purple {
- }
- .pill.teal, .badge.teal {
- }
- .pill.maroon, .badge.maroon {
- background-color: #ff3478;
- }
- .pill.red, .badge.red {
- }
- .pill.orange, .badge.orange {
- }
- .pill.green, .badge.green {
- }
- .pill.lightblue, .badge.lightblue {
- }
- .status-icon.large {
- }
- .status-icon.yellow, .status-icon.yellow:hover {
- color: #f3e72c;
- }
- .status-icon.teal, .status-icon.teal:hover {
- color: #33cccc;
- }
- .status-icon.purple, .status-icon.purple:hover {
- color: #c364ff;
- }
- .status-icon.maroon, .status-icon.maroon:hover {
- color: #ff3478;
- }
- .status-icon.red, .status-icon.red:hover {
- }
- .status-icon.green, .status-icon.green:hover {
- color: #37cf39;
- }
- .status-icon.orange, .status-icon.orange:hover {
- }
- .status-icon.lightblue, .status-icon.lightblue:hover {
- }
- .status-icon.highlight, .status-icon.highlight:hover {
- color: #dadada;
- }
- .status-icon.blue, .status-icon.blue:hover {
- color: #0092f4;
- }
- .status-icon.dim {
- color: #808080;
- text-shadow: 1px 1px rgba(0,0,0,0.3);
- }
- .l-unit--suspended .status-icon.dim {
- color: #808080 !important;
- text-shadow: 0px !important;
- }
- .noselect {
- }
- .search-input {
- background-color: #212121;
- border: 1px solid #454545;
- box-shadow: 0px 1px 1px rgba(0,0,0,0.4) !important;
- }
- .lang-ru .search-input{
- }
- .lang-ru .search-input.activated{
- }
- .search-input.activated{
- }
- .search-input:focus {
- }
- .float-left {
- }
- .float-right {
- }
- .display-inline-block {
- }
- .width-100p {
- }
- .l-sort-toolbar table td {
- }
- .l-sort-toolbar__search-box {
- }
- .ui-dialog .ui-dialog-buttonpane button:nth-of-type(2) {
- }
- .ui-dialog .ui-dialog-buttonpane {
- border-color: #404040 !important;
- background-color: #252525 !important;
- }
- .shortcuts {
- background: rgba(30,30,30,0.95);
- border: 1px solid rgba(255,255,255,0.25);
- box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
- border-bottom: none !important;
- }
- .shortcuts .header {
- border-bottom: 1px solid #353535;
- }
- .shortcuts .title {
- }
- .shortcuts .close {
- }
- .shortcuts .close:hover {
- }
- .shortcuts .close:active {
- }
- .shortcuts .close .fas {
- }
- .shortcuts ul {
- }
- .shortcuts ul li {
- }
- .shortcuts ul li.step-top {
- }
- .shortcuts ul li span {
- }
- .shortcuts ul li span.bigger {
- }
- .description {
- }
- .description ul{
- }
- .description li{
- }
- .description a {
- }
- .description a.purchase {
- }
- .description a.purchase:hover {
- color: #d4d4d4;
- }
- .description a.purchase:active {
- color: #d4d4d4;
- }
- .description a.cancel {
- }
- .description a.cancel:hover {
- }
- .description a.cancel:active {
- }
- .description.cancel-success {
- }
- .description .licence {
- }
- .description .licence input {
- }
- .description span {
- }
- .description .twoco {
- }
- .ui-dialog {
- background-color: rgba(45,45,45,0.95) !important;
- border: 1px solid rgba(80,80,80,0.97) !important;
- box-shadow: inset 0px 1px 3px rgba(0,0,0,0.25),
- 0px 8px 25px rgba(0,0,0,0.9) !important;
- }
- .ui-dialog .ui-dialog-content {
- color: #dadada !important;
- }
- .ui-dialog .ui-dialog-title {
- color: #f12569 !important;
- font-weight: 600;
- }
- .ui-dialog-buttonpane {
- }
- .ui-widget {
- }
- .ui-widget-overlay {
- }
- .helper-container {
- box-shadow: 0px 1px 4px rgba(0,0,0,0.25);
- border: 1px solid #606060;
- background-color: #454545;
- }
- .context-helper {
- }
- .context-helper:hover {
- }
- .context-helper:active {
- color: #ff3478;
- }
- .cron-helper-tabs {
- }
- .cron-helper-tabs a {
- color: #cacaca;
- }
- .cron-helper-tabs a:hover {
- color: #ff3478 !important;
- }
- .cron-helper-tabs a:active {
- color: #3b9de8 !important;
- }
- .cron-helper-tabs .ui-tabs-selected a {
- color: #ff3478 !important;
- }
- .cron-helper-tabs select.short {
- }
- .cron-helper-tabs p {
- color: #dadada;
- }
- .cron-helper-tabs p span{
- }
- .cron-helper-tabs p span.first{
- }
- .cron-helper-tabs .button {
- }
- .cron-helper-tabs .button:hover {
- }
- .cron-helper-tabs .button:active {
- }
- .context-helper-close {
- }
- .context-helper-close:hover {
- }
- .context-helper-close:active {
- }
- .server-info {
- }
- .server-info-data {
- }
- .server-info-name {
- color: #fafafa !important;
- }
- .server-info-output {
- background: #282828;
- }
- .icon-server-info {
- color: #707070;
- }
- .userlist-email {
- }
- .userlist-username {
- }
- .ui-widget-header a {
- color: #cacaca !important;
- }
- .body-rrd .units .l-unit {
- background-color: #282828 !important;
- border-left: 1px solid transparent !important;
- border-right: 1px solid transparent !important;
- }
- @media screen and (max-width: 950px) {
- .helper-container {
- display: none;
- }
- }
|