| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153 |
- /*- - - - - - - - - - - - - - - - - - -
- Title : Vesta
- Author : Eugen Lobicov, eugen.lobicov@gmail.com
- created : November 27, 2009
- last updated : December 16, 2011
- - - - - - - - - - - - - - - - - - - */
- html{
- font-size:100.01%; /* prevent IE's extreme font-resizing bug*/
- }
- body{
- position:relative;
- font:normal 62.5%/1.5 Helvetica, Arial, sans-serif;
- background:#B2AD9C url(../images/thin-grey-line-4.gif) repeat-x;
- color:#333;
- }
- #page{
- width:965px;
- width:955px;
- margin:3px auto 0;
- border:1px solid red;
- border:solid #807D70;
- border-width:0 1px;
- }
- .outer{
- padding-bottom:58px;
- background:#fff url(../images/footer-bg.gif) repeat-x 0 100%;
- }
- #header{
- padding:0 1px 0 10px;
- height:26px;
- border-bottom:2px solid #333527;
- background-color:#484439;
- }
- .logo-box{
- float:left;
- }
- .logo,
- .logo a,
- .logo a span{
- display:block;
- width:80px;
- height:26px;
- }
- .logo a{
- position:relative;
- overflow:hidden;
- font-size:1.2em; /*12px */
- text-decoration:none;
- color:#fff;
- display:block;
- text-indent:-9999px;
- }
- .logo a span{
- position:absolute;
- top:1px;
- left:0;
- z-index:1;
- width:72px;
- height:24px;
- background:url(../images/vesta-logo-2011-12-14.png) no-repeat;
- }
- .settings{
- float:right;
- }
- .settings .settings-item,
- .extra-services .service-item{
- float:left;
- display:block;
- padding:0 10px;
- font-size:9px;
- line-height:26px;
-
- text-transform:uppercase;
- letter-spacing:1px;
- }
- .settings .item-title,
- .extra-services .item-title{
- font-family:Arial, Helvetica, san-serif;
- font-size:9px;
- color:#C0BD00;
- text-decoration:none;
- border-bottom:1px dotted #68684B;
- }
- .settings a.item-title:hover{
- color:#fefda0;
- text-decoration:none;
- }
- .settings a.item-title:active{
- color:#E16734;
- text-decoration:none;
- }
- .settings .logged-as{
- margin:0;
- }
- .settings .logged-as{
- position:relative;
- top:1px;
- padding-right:5px;
- font-size:16px;
- line-height:20px;
- font-family:Georgia, Cambria, "Times New Roman", Times, serif;
- font-weight:bold;
- font-style:italic;
- color:#fff;
- text-transform:none;
- border:none;
- letter-spacing:normal;
- }
- .settings .logout{
- float:left;
- display:block;
- text-transform:uppercase;
- letter-spacing:1px;
- line-height:26px;
- }
- .settings .logout .item-title{
- display:block;
- padding:0 10px;
- font-size:9px;
- line-height:26px;
- border:none;
- }
- .settings .logout .item-title-inner{
- border-bottom:1px dotted #68684B;
- }
- .logout a.item-title:hover{
- background-color:#a3b82d;
- color:#ffffc5;
- }
- .logout a.item-title:hover .item-title-inner{
- border:none;
- }
-
- .logout a.item-title:active{
- background-color:#ffff66;
- color:#272700;
- }
-
- .extra-services{
- float:right;
- margin-right:59px;
- }
- .extra-services .service-item{
- position:relative;
- padding:0 13px;
- line-height:26px;
- letter-spacing:normal;
- }
- .extra-services .item-devider{
- position:absolute;
- top:-3px;
- left:0;
- width:100%;
- height:3px;
- }
- .extra-services .item-title{
- font-family:Arial, Helvetica, san-serif;
- font-size:10px;
- font-weight:bold;
- color:#C0E1F3;
- border-bottom:1px dotted #7D939F;
- }
- .extra-services .active{
- cursor:default;
- background:#333;
- font-weight:bold;
- }
- .extra-services .service-item:hover{
- cursor:pointer;
- }
- .extra-services .service-item:hover .item-title{
- color:#fffa96;
- border-bottom-color:#fffa96;
- }
- .extra-services .service-item:active{
- background:#333;
- }
- .extra-services .service-item:active .item-title{
- color:#fff;
- border:none;
- }
- .extra-services .active .item-title{
- color:#fff997;
- border:none;
- }
- .extra-services .active .item-devider{
- background:#ff6766;
- }
- /*Remove button padding in FF*/
- input::-moz-focus-inner{
- border: 0;
- padding: 0;
- }
- .cc:after{
- content: ".";
- display: block;
- height: 0;
- clear: both;
- visibility: hidden;
- }
- .hidden{
- display:none !important;
- }
- /* Navigation
- - - - - - - - - - - - - - - - - - - - - */
- #primary-nav-box{
- clear:both;
- height:115px;
- background-color:#ecf3d2;
- }
- .primary-nav{}
- .primary-nav .section{
- position:relative;
- float:left;
- display:block;
- padding-right:1px;
- background:url(../images/nav-devider-2.png) no-repeat 100% 50%;
- }
- .primary-nav .last-section{
- background:none;
- padding:0;
- }
- .section .section-inner{
- width:130px;
- min-height:100px;
- height:auto !important;
- height:100px;
- padding:15px 0 3px 6px;
- padding:15px 0 0 6px;
- }
- .primary-nav .last-section .section-inner{
- width:133px;
- width:127px;
- }
- .section .section-title{
- position:absolute;
- left:7px;
- bottom:9px;
- font-family:Arial, Helvetica, sans-serif;
- font-size:15px;
- line-height:1.2;
- font-weight:bold;
- text-transform:uppercase;
- color:#393939;
- color:#33342e;
- }
- .section .section-title .to-section{
- float:left;
- margin-right:4px;
- }
- .section .section-title .add-entry{
- position:relative;
- top:2px;
- float:left;
- display:block;
- width:14px;
- height:14px;
- background:url(../images/plus-sprite1.png) no-repeat;
- font-size:0;
- line-height:0;
- visibility:hidden;
- }
- .section .section-title .add-entry:hover{
- background-position:-14px 0;
- cursor:pointer;
- }
- .section .section-devider{
- position:absolute;
- left:0;
- bottom:0;
- z-index:10;
- /*background:url(../images/section-status-sprite-5.gif) no-repeat -420px 115px; */
- display:block;
- width:100%;
- height:3px;
- background:url(../images/section-status-sprite-6.png) no-repeat -420px 100%;
- }
-
- .dnstpl-nav-item .section-title{
- background-position:100% 85%;
- }
- .section .def{
- display:block;
- font-family:Arial, Helvetica, sans-serif;
- font-size:12px;
- color:#8c9c91;
- }
- .section:hover .section-inner{
- background-color:#F1F7D6;
- color:#000;
- cursor:pointer;
- }
- .section:hover .section-devider{
- background-position:0 100%;
- }
- .section:hover .section-title{
- color:#000;
- }
- .primary-nav .active .section-inner{
- cursor:pointer;
- }
- .primary-nav .active .section-devider{
- background-position:-283px 100%;
- height:6px;
- bottom:-3px;
- }
- .primary-nav .active .def{
- color:#8c9c91;
- }
- .primary-nav .active .section-title{
- color:#393939;
- }
- #console{
- position:relative;
- clear:both;
- height:70px;
- background-color:#a09d98;
- background:#535049 url(../images/console-box-bg.png) repeat-x;
- border-bottom:1px solid #7a7967;
- z-index:1;
- }
- .b-console{
- position:absolute;
- left:50%;
- }
- .b-console-wrap{
- position:relative;
- right:50%;
- width:655px;
- padding:10px 15px 16px 25px;
- background:url(../images/console-bg.png) repeat;
-
- border-radius: 0 0 5px 5px;
- -moz-border-radius: 0 0 5px 5px;
- -webkit-border-top-right-radius: 0;
- -webkit-border-top-left-radius: 0;
- -webkit-border-bottom-right-radius: 5px;
- -webkit-border-bottom-left-radius: 5px;
- }
- .b-console-form{}
-
- .b-console-field{
- float:left;
- width:548px;
- margin-right:15px;
- padding:5px 10px;
- border:2px solid #42647f;
- font-family:Arial, Helvetica, sans-serif;
- font-size:18px;
- font-style:italic;
- font-weight:bold;
- color:#aaa;
- }
- .b-console-field:focus{
- -moz-box-shadow:0 0 8px rgba(82, 168, 236, 0.5);
- -webkit-box-shadow:0 0 8px rgba(82, 168, 236, 0.5);
- border-color:rgba(82, 168, 236, 0.75) !important;
- color:#333;
- }
- .b-console-btn{
- float:left;
- overflow:visible;
- height:30px;
- margin:4px 0 0;
- padding:0 20px;
- -webkit-border-radius:4px;
- -moz-border-radius:4px;
- border-radius:4px;
- border:0 none;
- background-color:#fdcd00;
- color:#4b3600;
- font-size:13px;
- font-family:Arial, Helvetica, sans-serif;
- font-weight:bold;
- line-height:30px;
- text-transform:uppercase;
- cursor:pointer;
-
- /* a little animation effect on hover for -webkit- */
- -webkit-transition-property: background;
- -webkit-transition-duration: 150ms;
- -webkit-transition-timing-function: ease-in-out;
- }
- .b-console-btn:focus{
- position:relative;
- top:1px;
- }
- .b-console-btn:hover{
- background-color:#ffe84c;
- color:#39351c;
- }
- .b-console-btn:active{
- background-color:#333;
- color:#fff;
- }
- .b-console-statuses{
- margin-top:15px;
- }
-
- .b-console-status{
- position:relative;
- padding:5px 80px 5px 10px;
- border:2px dashed #999;
- background-color:#feff99;
- color:#666;
- font-size:12px;
- }
- .b-console-status-message{
- float:left;
- color:#666;
- }
- .b-console-status-action{
- float:right;
- margin-right:-36px;
- text-decoration:underline;
- }
- .b-console-status-message b{
- font-weight:bold;
- color:#333;
- }
- .b-console-status-arrow{
- position:absolute;
- top:10px;
- right:12px;
- display:block;
- width:14px;
- height:8px;
- background:url(../images/status-arrow.png) no-repeat;
- }
-
- #actions-toolbar{
- clear:both;
- position:relative;
- /*padding:15px 20px 15px 280px;*/
- padding:15px 20px 15px 250px;
- background-color:#f3f3d9;
- border-bottom:1px solid #c9cbc8;
- }
- .add-domain,
- .add-btn{
- position:relative;
- top:2px;
- float:left;
- /*margin:0 0 0 -260px;*/
- margin:0 0 0 -230px;
- border-bottom:1px solid #b5c968;
- font-family:Georgia, "Times New Roman", Times, serif;
- font-size:16px;
- line-height:1;
- text-transform:uppercase;
- color:#66685d;
- text-decoration:none;
- }
- .add-domain .icon,
- .add-btn-icon{
- float:left;
- display:block;
- width:11px;
- height:11px;
- margin:4px 5px 0 0;
- background:url(../images/add-entry-plus.gif) no-repeat;
- font-size:0;
- line-height:0;
- }
- .add-btn:hover{
- color:#000;
- border-bottom-color:#b85152;
- }
- .add-btn:active{
- color:#b85152;
- border-bottom-color:#000;
- }
-
- .select-all{
- padding:0 40px 0 0;
- font-size:13px;
- color:#7f7e6c;
- text-decoration:underline;
- cursor:pointer;
- }
- .select-all:hover{
- text-decoration:none;
- }
- .clear-selected{
- font-size:11px;
- line-height:10px;
- text-transform:uppercase;
- color:#bcb6a6;
- cursor:pointer;
- letter-spacing:0.2px;
- border-bottom:1px solid #bcb6a6;
- }
- .clear-selected:hover{
- color:#000;
- border-bottom-color:#b85152;
- }
- .clear-selected:active{
- color:#b85152;
- border-bottom-color:#000;
- }
- .db-manager{
- float:right;
- margin:5px 0 0 25px;
- font-size:11px;
- line-height:1.273; /*14px*/
- text-transform:uppercase;
- letter-spacing:0.2px;
- border-bottom:1px solid #bcb6a6;
- text-decoration:none;
- color:#9b9b8f;
- }
- .db-manager .highlighted{
- font-style:normal;
- font-weight:bold;
- color:#4097b3;
- }
- .db-manager:hover{
- color:#4097b3;
- border-bottom-color:#b85152;
- }
- .db-manager:active{
- color:#b85152;
- border-bottom-color:#4097b3;
- }
- .db-manager:active .highlighted{
- color:#b85152;
- }
-
- /* Row filters */
- .row-filters{}
-
- .b-row-selector{
- float:left;
- width:240px;
- }
- .b-row-selector .checkbox-selector{
- position:relative;
- top:4px;
- margin-right:20px;
- }
- .b-row-selector .b-cust-sel{
- width:100px;
- }
-
- .checkbox-selector,
- .context-actions{
- display:-moz-inline-stack;
- display: inline-block;
- zoom: 1;
- *display: inline;
- vertical-align:top;
- }
- .checkbox-selector .checkbox{
- display:block;
- float:left;
- width:11px;
- height:11px;
- margin:2px 5px 0 0;
- background:url(../images/chekbox-selector.png) no-repeat;
- cursor:pointer;
- }
- .checkbox-selector .selector-title{
- float:left;
- font-size:11px;
- line-height:15px;
- text-transform:uppercase;
- color:#5d5d5d;
- cursor:pointer;
- white-space:nowrap;
- }
- .checkbox-selector .selector-title:hover{
- color:#2ea8bd;
- }
- .checkbox-selector .selector-title:active{
- color:#fc0;
- }
-
- /* Custom select */
- .b-cust-sel{
- position: relative;
- font-size: 12px;
- background-color: #fff;
- /* background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.5, white));
- background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, white 50%);
- background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, white 50%);
- background-image: -o-linear-gradient(top, #eeeeee 0%,#ffffff 50%);
- background-image: -ms-linear-gradient(top, #eeeeee 0%,#ffffff 50%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff',GradientType=0 );
- background-image: linear-gradient(top, #eeeeee 0%,#ffffff 50%);
- -moz-background-clip : padding;
- -webkit-background-clip: padding-box;
- background-clip : padding-box;
- */
- box-shadow: inset 1px 1px 4px 0px rgba(0, 0, 0, 0.10);
- -moz-box-shadow: inset 1px 1px 4px 0px rgba(0, 0, 0, 0.10);
- -webkit-box-shadow: inset 1px 1px 4px 0px rgba(0, 0, 0, 0.10);
- border: 1px solid #c5c4bf;
- display: block;
- white-space: nowrap;
- position: relative;
- height: 20px;
- line-height: 20px;
- padding: 0 0 0 8px;
- color: #616161;
-
- }
- .b-cust-sel .title{
- margin-right: 26px;
- display: block;
- overflow: hidden;
- white-space: nowrap;
- -o-text-overflow: ellipsis;
- -ms-text-overflow: ellipsis;
- text-overflow: ellipsis;
- }
- .cust-sel-arrow{
- -moz-background-clip : padding;
- -webkit-background-clip: padding-box;
- background-clip : padding-box;
- background: #ccc;
- /* background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
- background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
- background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
- background-image: -o-linear-gradient(bottom, #ccc 0%, #eee 60%);
- background-image: -ms-linear-gradient(top, #cccccc 0%,#eeeeee 60%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cccccc', endColorstr='#eeeeee',GradientType=0 );
- background-image: linear-gradient(top, #cccccc 0%,#eeeeee 60%);
- */
-
- background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.6, #f5f4ef));
- background-image: -webkit-linear-gradient(center bottom, #fff 0%, #f5f4ef 60%);
- background-image: -moz-linear-gradient(center bottom, #fff 0%, #f5f4ef 60%);
- background-image: -o-linear-gradient(bottom, #fff 0%, #f5f4ef 60%);
- background-image: -ms-linear-gradient(top, #cccccc 0%,#f5f4ef 60%);
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cccccc', endColorstr='#f5f4ef',GradientType=0 );
- background-image: linear-gradient(top, #cccccc 0%,#f5f4ef 60%);
-
- border-left: 1px solid #c5c4bf;
- position: absolute;
- right: 0;
- top: 0;
- display: block;
- height: 100%;
- width: 21px;
- }
- .cust-sel-arrow i{
- display: block;
- width: 100%;
- height: 100%;
- background:url(../images/custom-arrow.png) no-repeat 50% 50%;
- }
- .b-cust-sel .cust-sel-options{
- position:absolute;
- top:21px;
- left:-1px;
- width:100%;
- padding:5px 0 2px;
- border:solid #C5C4BF;
- border-width:0 1px 1px;
- background:#fff;
- z-index:100;
- }
- .b-cust-sel .cust-sel-option{
- padding:0 0 4px 18px;
- background:url(../images/cust-option-bullets.png) no-repeat 5px 7px;
- color:#828282;
- cursor:pointer;
- }
- .b-cust-sel .cust-sel-option:hover{
- color:#333;
- }
- .b-cust-sel .ico_gray{
- background-position:5px 7px;
- }
- .b-cust-sel .ico_green{
- background-position:5px -35px;
- }
- .b-cust-sel .ico_red{
- background-position:5px -79px;
- }
- .b-cust-sel_inactive{
- background:#f3f3d9;
- box-shadow: none;
- -moz-box-shadow: none;
- -webkit-box-shadow: none;
- }
- .b-cust-sel_inactive .cust-sel-arrow{
- background:#f3f3d9;
- }
- .b-cust-sel_inactive .cust-sel-options{
- display:none;
- }
-
- .domain-groups-selector{
- float:left;
- width:270px;
- padding-top:2px;
- font-size:11px;
- line-height:15px;
- }
- .domain-groups-selector .selector-wrap{
- display:-moz-inline-stack;
- display: inline-block;
- zoom: 1;
- *display: inline;
- vertical-align:top;
- padding-right:15px;
- border-bottom:1px solid #d5d6c4;
- background:url(../images/custom-arrow.png) no-repeat 100% 6px;
- }
- .domain-groups-selector .selector-title{
- padding-right:5px;
- font-weight:normal;
- text-transform:uppercase;
- color:#8b8b8b;
- }
- .domain-groups-selector .selected-groups{
- color:#5d5d5d;
- }
- #content{
- padding:8px 0 50px;
- background:#fff url(../images/content-separator.png) repeat-x;
- }
- .b-ext-info-wrap{
- position:relative;
- min-height:40px;
- }
- .b-ext-info{
- margin:0 0 6px;
- padding:10px 25px 15px;
- background:#ddd;
- font-size:12px;
- color:#000;
- text-shadow: 0px 1px 1px #fff;
- }
- .b-ext-info-btn{
- position:relative;
- left:-1px;
- width:102px;
- height:15px;
- margin-left:-50px;
- margin:-6px auto 0;
- background-color:#fff;
- cursor:pointer;
- }
- .b-ext-info-wrap_collapsed .b-ext-info-btn{
- background:url(../images/more-info-btn.png) no-repeat;
- }
- .content-inner{
- background-color:#fff;
- padding:0 15px 15px;
- }
- /*
- .domains{
- border-bottom:1px solid #333;
- background-color:#fff;
- }
- .domains .item{
- position:relative;
- padding:0 20px;
- background:url(../images/long-dotted-bg.gif) repeat-x;
- }
- .domains .first{
- margin:0;
- background:none;
- }
- .item .view{
- padding:15px 0 10px;
- }
- .item .ip-box{
- float:left;
- width:150px;
- padding-top:12px;
- }
- .ip-box .ip{
- font-size:1.1em; /*11px*
- line-height:21px;
- font-weight:normal;
- letter-spacing:.175em;
- }
- .ip-box .owner{
- display:block;
- font-size:1.2em;
- color:#999;
- }
- .details .names .primary{
- font-size:20px;
- font-family:Georgia, "Times New Roman", Times, serif;
- font-weight:normal;
- font-style:normal;
- color:#000; /* radikal'no cherniy, da! *
- }
- .names .divider{
- font-size:12px;
- line-height:2;
- text-transform:uppercase;
- color:#999;
- }
- .names .domain-name{
- padding:0 10px;
- font-size:12px;
- line-height:2;
- font-style:italic;
- color:#999;
- white-space:nowrap;
- }
- .item .details{
- margin-left:150px;
- }
- .item .details .status{
- float:right;
- width:60%;
- margin:5px 20px 0 0;
- color:#999;
- }
- .details .status .logging{
- float:left;
- }
- .logging .err-log,
- .logging .log,
- .logging .stats{
- float:left;
- display:inline;
- margin:0 20px 0 0;
- padding-right:25px;
- background:url(../images/logging-status-sprite.png) no-repeat -100% -100%;
- }
- .logging .off{
- background-position:100% 0;
- }
- .logging .on{
- background-position:100% 100%;
- }
- .logging .stats{
- margin-right:10px;
- }
- .logging .stat-auth{
- float:left;
- display:inline;
- margin:0 10px 0 0;
- border-bottom:1px solid #9bcad0;
- color:#999;
- cursor:pointer;
- }
- .details .status .params{
- float:right;
- }
- .params .memory,
- .params .t,
- .params .max-weight,
- .params .upload-weight{
- float:left;
- display:inline;
- margin-right:25px;
- }
- .memory{}
- .memory dl{
- overflow:hidden;
- margin-bottom:2px;
- }
- .memory dt{
- float:left;
- width:15px;
- }
- .memory dd{
- float:left;
- }
- .memory .usage{}
- .memory .usage .value{
- float:left;
- width:30px;
- }
- .memory .usage .divider{
- padding-right:2px;
- }
- .memory .usage .max{
- font-weight:bold;
- border-bottom:1px solid #9bcad0;
- cursor:pointer;
- }
- .memory .graph{
- clear:both;
- position:relative;
- border:1px solid #ccc;
- font-size:0;
- line-height:0;
- }
- .memory .graph .bar{
- position:relative;
- display:block;
- height:2px;
- }
- .critical .bar{
- background-color:#f00;
- }
- .middle .bar{
- background-color:#ff9934;
- }
- .low .bar{
- background-color:#acd45a;
- }
- .params .upload-weight{
- margin:0;
- }
- .t .value,
- .max-weight .value,
- .upload-weight .value{
- border-bottom:1px solid #9bcad0;
- cursor:pointer;
- }
- .item .close{
- position:absolute;
- top:30px;
- right:20px;
- display:block;
- width:16px;
- height:16px;
- background:url(../images/sprite.png) no-repeat;
- cursor:pointer;
- }
- .item .close:hover{
- background-position:-16px 0;
- }
- */
- /* row hover effect
- - - - - - - - - - - - - - - - - - - - */
- /*
- .domains .item:hover{
- background-color:#ffffcb;
- }
- .item:hover .names .primary{
- cursor:pointer;
- border-bottom:1px dotted #ccc;
- }
- .item:hover .logging .err-log,
- .item:hover .logging .log,
- .item:hover .logging .stats,
- .item:hover .memory dt,
- .item:hover .memory .divider,
- .item:hover .params .title{
- color:#98bc65;
- }
- .item:hover .logging .stat-auth,
- .item:hover .memory .max,
- .item:hover .t .value,
- .item:hover .max-weight .value,
- .item:hover .upload-weight .value{
- color:#333;
- }
- */
- /* Edit
- - - - - - - - - - - - - - - - - - - - */
- /*
- .edit{
- position:relative;
- clear:both;
- margin:0 -20px;
- padding:15px 20px 10px;
- border-top:2px solid #999;
- background-color:#ffffcb;
- }
- .change-ip-box{
- margin:0 0 20px;
- }
- .edit .ip-details{
- float:left;
- margin-right:20px;
- }
- .change-ip{
- width:140px;
- padding:3px 5px;
- border:2px solid #9bcad0;
- font-size:16px;
- }
- .ip-details .created{
- display:block;
- margin:5px 0 0;
- font-size:12px;
- }
- .change-domain-name{
- width:360px;
- padding:3px 5px;
- border:2px solid #9bcad0;
- font-size:16px;
- font-weight:bold;
- }
- .edit .domain-name{
- font-size:20px;
- font-family:Georgia, "Times New Roman", Times, serif;
- font-weight:normal;
- font-style:normal;
- color:#000; /* radikal'no cherniy, da! *
- white-space:nowrap;
- line-height:2;
- }
- .change-logs-box{
- float:left;
- width:170px;
- margin-right:50px;
- padding-left:180px;
- }
- .ownership{
- display:inline;
- float:left;
- width:160px;
- margin:0 0 0 -180px;
- font-size:12px;
- }
- .ownership .owner{
- display:block;
- font-size:16px;
- font-weight:bold;
- font-style:italic;
- }
- .change-logs{
- padding-top:5px;
- }
- .change-logs label{
- display:block;
- margin:0 0 9px;
- }
- .change-logs .last{
- margin:0;
- }
- .change-logs .title{
- display:block;
- float:left;
- width:70px;
- font-size:14px;
- }
- .change-logs .title b{
- font-weight:bold;
- }
- .change-logs .checkbox{
- margin:3px 0 0;
- border:2px solid #9bcad0;
- }
- .change-logs .stat-auth{
- position:relative;
- top:-3px;
- left:10px;
- border-bottom:1px solid #9BCAD0;
- cursor:pointer;
- }
- .change-memory{
- float:left;
- width:150px;
- padding-top:5px;
- font-size:14px;
- }
- .change-memory dl{
- margin-bottom:13px;
- }
- .change-memory .value{
- padding:0 5px;
- font-style:italic;
- font-weight:bold;
- color:#6b930f;
- }
- .change-memory .amount{
- margin-top:7px;
- }
- .change-memory .amount .max{
- width:50px;
- margin-left:10px;
- padding:2px 5px;
- border:2px solid #9bcad0;
- text-align:right;
- }
- .change-memory .graph{
- clear:both;
- position:relative;
- border:1px solid #9c9c82;
- font-size:0;
- line-height:0;
- }
- .change-memory .graph .bar{
- position:relative;
- display:block;
- height:2px;
- }
- .change-params{
- float:right;
- font-size:14px;
- }
- .change-params li{
- margin-top:5px;
- overflow:hidden;
- }
- .change-params .title{
- float:left;
- width:165px;
- }
- .change-params .param-value{
- width:30px;
- margin-right:5px;
- padding:1px 5px;
- border:2px solid #9bcad0;
- text-align:right;
- }
- .aliases{
- position:relative;
- padding-top:20px;
- margin-bottom:20px;
- }
- .aliases .title{
- float:left;
- display:block;
- margin-right:20px;
- padding-top:3px;
- font-size:17px;
- }
- .aliases .hint{
- position:absolute;
- top:-15px;
- left:78px;
- font-style:italic;
- color:#999;
- }
- .aliases-list{
- width:90%;
- padding:3px 5px;
- border:2px solid #9bcad0;
- font-size:16px;
- }
- .buttons{}
- .buttons .apply{
- width:auto;
- overflow:visible;
- padding:4px 20px 3px 17px;
- background-color:#feff99;
- border:1px solid #728b25;
- font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
- font-size:120%;
- font-weight:bold;
- text-transform:uppercase;
- line-height:130%;
- color:#6b9e05;
- cursor:pointer;
-
- float:right;
- }
- .buttons .devider{
- text-transform:uppercase;
- float:right;
- display:block;
- line-height:24px;
- margin:0 10px;
- }
- .buttons .cancel{
- float:right;
- width:auto;
- height:20px;
- padding:0;
- border:0 none;
- background:none;
- color:#e09462;
- text-decoration:underline;
- cursor:pointer;
- }
- .hidden{
- display:none;
- }
- .edit .iSelected{ /* descendant selector for more specific style context *
- border-color:#59B4FF; /* blue border on focused input *
- font-weight:bold;
- }
- .edit .not-valid{ /* descendant selector for more specific style context *
- border-color:#f00; /* RED border on error field *
- }
- .edit .edit-help{
- padding-bottom:1px;
- font-family:Arial, Helvetica, sans-serif;
- font-size:14px;
- color:#a0a094;
- text-decoration:none;
- text-transform:uppercase;
- border-bottom:1px solid #b5b59b;
- }
- .edit .delete{
- position:absolute;
- top:15px;
- right:25px;
- padding:3px 25px 3px 2px;
- font-family:Arial, Helvetica, sans-serif;
- font-size:14px;
- color:#a0a094;
- text-transform:uppercase;
- background:url(../images/delete.gif) no-repeat 100% 50%;
- cursor:pointer;
- }
- .edit .delete .title{
- padding-bottom:1px;
- border-bottom:1px solid #b5b59b;
- }
- */
- /* IP list
- - - - - - - - - - - - - - - - - - - - - */
- #content{
- padding-bottom:0;
- }
- .ip-list{}
- .row{
- padding-top:10px;
- padding:10px 10px 15px 10px;
- /* min-height:125px;
- min-height:110px;*/
- background:url(../images/long-dotted-bg.gif) repeat-x;
- }
- .first-row{
- background-image:none;
- }
- .row-meta{
- float:left;
- width:150px;
- }
- .row-details{
- margin-left:150px;
- /* background:#e0e0e0;*/
- }
- .row-actions-box{
- /* margin:0 0 5px;*/
- }
-
- .row-actions-box .check-this,
- .row-actions-box .check-control{
- float:left;
- width:10px;
- height:10px;
- margin-top:4px;
- /* background:url(../images/logging-status-sprite.png) no-repeat;*/
- background:url(../images/check-row-sprite.png) no-repeat;
- background:url(../images/check-row-sprite_.png) no-repeat;
- }
- .row-actions-box .check-control:hover{
- cursor:pointer;
- background-position:0 -89px;
- }
- .row-actions-box .row-operations{
- float:right;
- }
- .ip-status-info{
- position:relative;
- display:block;
- float:left;
- /*margin-right:25px;*/
- padding-right:15px;
- font-size:12px;
- }
- .ip-status-info .ip-status-text{
- visibility:hidden;
- }
- .row .ip-suspended-status{
- margin:0;
- background:url(../images/suspended-ico.png) no-repeat 100% 65%;
- }
- .row .ip-suspended-status .ip-status-text{
- text-transform:uppercase;
- color:#333;
- font-size:10px;
- visibility:visible;
- }
- .delete-entry{
- position:relative;
- top:2px;
- display:block;
- float:left;
- padding-right:15px;
- font-size:11px;
- text-transform:uppercase;
- }
- .delete-entry .delete-entry-text{
- visibility:hidden;
- }
- .entry-created{
- padding-top:7px;
- font-size:11px;
- color:#6f6f6f;
- }
- .props-main{
- float:left;
- width:425px;
- /* background:#eee;*/
- }
- .props-main .prop-box{
- margin-bottom:15px;
- }
- .props-additional{
- float:left;
- width:200px;
- padding:5px 10px 0 0;
- /* background:#ccc;*/
- }
- .props-ext{
- float:right;
- width:120px;
- padding-top:5px;
- /* background:#d5d5d5;*/
- }
- .ip-adr-box,
- .user-wrap{
- margin:0 0 5px;
- }
- .ip-adr{
- display:-moz-inline-stack;
- display:inline-block;
- vertical-align:top;
- font-size:22px;
- line-height:1;
- font-weight:normal;
- letter-spacing:0.5px;
- }
- .ip-adr:active,
- .ip-adr:focus{
- color:#9fb749;
- }
- .ip-adr .dot{
- padding:0 3px;
- }
- .ip-list .ip-adr{
- border-bottom:1px solid #fff;
- }
- .username-box .user{
- display:-moz-inline-stack;
- display:inline-block;
- vertical-align:top;
- margin-right:10px;
- }
- .username-box .nickname{
- display:-moz-inline-stack;
- display:inline-block;
- vertical-align:top;
- margin-right:5px;
-
- font-size:20px;
- line-height:25px;
- font-family:Arial, Helvetica, sans-serif;
- color:#000;
- }
- .username-box .role{
- display:-moz-inline-stack;
- display:inline-block;
- vertical-align:top;
- position:relative;
- top:2px;
-
- font-size:12px;
- line-height:25px;
- color:#777;
- }
- .prop-box{
- display:-moz-inline-stack;
- display:inline-block;
- vertical-align:top;
- min-width:40%;
- /* width:auto !important;
- width:40%;*/
- margin:0 0 3px;
- font-size:10px;
- }
- .prop-title{
- text-transform:uppercase;
- color:#9c9c9c;
- font-size:9px;
- line-height:15px;
- }
- .prop-value{
- padding-left:3px;
- font-size:12px;
- color:#777;
- }
- .prop-value-collapsed-childs{
- padding-right:15px;
- background:url(../images/group-values-collapsed.png) no-repeat 100% 5px;
- cursor:pointer;
- }
- .show-records{
- display:inline-block;
- padding-right:15px;
- border-bottom:1px solid #c9cabc;
- background:url(../images/show-records-ico.png) no-repeat 100% 50%;
- text-transform:uppercase;
- line-height:13px;
- cursor:pointer;
- }
- .hide-records{
- display:inline-block;
- padding-right:15px;
- border-bottom:1px solid #c9cabc;
- background:url(../images/hide-records-ico.png) no-repeat 100% 50%;
- text-transform:uppercase;
- line-height:13px;
- cursor:pointer;
- }
- .prop-box_group-values{
- display:block;
- }
- .prop-box_group-values .prop-title{
- float: left;
- margin:2px 0 0;
- }
- .prop-box_group-values .group-values{
- float:left;
- margin-left:3px;
- }
- .group-values .prop-value{
- display:block;
- }
- .group-values__bullet .prop-value{
- padding-left:15px;
- background:url(../images/group-value-bullet.png) no-repeat 5px 8px;
- }
- .group-values .group-switcher{
- padding-right:15px;
- background:url(../images/group-values-collapsed.png) no-repeat 100% 4px;
- }
- .group-values .group-values-count{
- font-size:12px;
- font-style:italic;
- color:#cdcdcd;
- border-bottom:1px solid #c9cac4;
- cursor:pointer;
- }
-
- .props-additional .owner-box{
- padding-left:45px;
- }
- .props-additional .owner-box .prop-title{
- float:left;
- display:inline;
- margin:2px 0 0 -45px;
- }
- .props-additional .owner-box .prop-value{
- padding:0;
- }
- .ip-list .ip-name-box{
- margin:0 0 3px;
- }
-
-
- /* Entry adding form
- - - - - - - - - - - - - - - - - - - - */
- .b-new-entry{
- margin-top:25px;
- border-style:solid;
- border-width:2px 1px 1px;
- border-color:#999 #ccc #ccc #ccc;
-
- background-color:#ffffcb;
- }
- .b-new-entry .entry-header{
- margin:0 0 10px;
- padding:8px 15px 9px;
- border-bottom:1px solid #dcdbab;
- font-size:16px;
- font-family:Georgia, "Times New Roman", Times, serif;
- text-transform:uppercase;
- color:#747668;
- }
- .b-new-entry .form-row{
- position:relative;
- padding:10px 15px;
- }
- .b-new-entry .field-label,
- .b-new-entry .row-header{
- float:left;
- width:180px;
- font-size:15px;
- line-height:2;
- color:#3d504a;
- }
- .b-new-entry .text-field{
- float:left;
- width:265px;
- margin:0 15px 0 0;
- padding:6px 7px;
- border:2px solid #b8c2c3;
- color:#555;
- font-family:Arial, Helvetica, sans-serif;
- font-size:14px;
- font-weight:bold;
- }
- .b-new-entry .field-label .remark{
- position:relative;
- top:-14px;
- display:block;
- font-style:italic;
- font-size:14px;
- color:#a3a590;
- }
-
- .b-new-entry .custom-select{}
-
- .b-new-entry .textarea{
- width:685px;
- height:100px;
- padding:6px 7px;
- border:2px solid #b8c2c3;
- color:#555;
- font-family:Arial, Helvetica, sans-serif;
- font-size:14px;
- font-weight:bold;
- }
- .b-new-entry .text-field:focus,
- .b-new-entry .textarea:focus{
- -moz-box-shadow:0 0 8px rgba(82, 168, 236, 0.5);
- -webkit-box-shadow:0 0 8px rgba(82, 168, 236, 0.5);
- border-color:rgba(82, 168, 236, 0.75) !important;
- color:#333;
- }
-
- .b-new-entry .ssl-crtfct-box .textarea{
- margin:10px 0 0;
- }
- .b-new-entry .select{
- position: absolute;
- top:auto;
- left:195px;
- width: 195px;
- height: 28px;
- padding: 0 24px 0 8px;
- color: #333;
- font:bold 14px/28px arial,sans-serif;
- background:#fff url(../images/select-arrow.png) no-repeat 100% 50%;
- overflow: hidden;
- border:2px solid #b8c2c3;
- }
- .b-new-entry select.styled{
- top:10px;
- }
- .b-new-entry option{
- font:14px arial,sans-serif;
- }
- .b-new-entry .form-options-group{}
-
- .b-new-entry .group-header{
- margin:12px 25px 12px 15px;
- text-transform:uppercase;
- color:#9c9c9c;
- font-size:11px;
- line-height:15px;
- height:16px;
- background:url(../images/dotted.gif) repeat-x 0 50%;
- }
- .b-new-entry .group-title-outer{
- display:inline-block;
- width:165px;
- padding:0 15px 0 0;
- line-height:16px;
- text-align:right;
- background:#ffffcb;
- }
- .b-new-entry .group-title-inner{
- padding:2px 13px 2px 0;
- }
- .b-new-entry .group-title{
- border-bottom:1px solid #FFFFCB;
- }
- .b-new-entry .expanded .group-title-inner{
- background:#ffffcb url(../images/form-group-expanded.png) no-repeat 100% 50%;
- }
- .b-new-entry .collapsed .group-title-inner{
- background:#ffffcb url(../images/form-group-collapsed.png) no-repeat 100% 50%;
- }
- .b-new-entry .group-header:hover{
- cursor:pointer;
- }
- .b-new-entry .group-header:hover .group-title,
- .b-new-entry .group-header .group-title:hover{
- color:#000;
- border-bottom-color:#9fb35a;
- }
- .b-new-entry .group-header .group-title:active{
- color:#4B9427;
- }
-
- .b-new-entry .mail-options-group{
- margin-bottom:27px;
- }
- .b-new-entry .mail-options-group .form-row{
- padding-bottom:0;
- }
-
- .b-new-entry .delete-record{
- display: block;
- position:relative;
- top:11px;
- float: left;
- width: 11px;
- height: 11px;
- background: url(../images/delete-ico-off.png) no-repeat;
- }
- .b-new-entry .delete-record:hover{
- cursor:pointer;
- background-image:url(../images/delete-ico.png);
- }
- .b-new-entry .delete-record:active{
- cursor:pointer;
- background-image:url(../images/delete-ico-active.png);
- }
-
-
- .b-new-entry .checkbox{
- display:block;
- float:left;
- width:18px;
- height:18px;
- margin:6px 0 0;
- background:url(../images/checkbox-1.png) no-repeat;
- }
- .b-new-entry .checkbox:hover{
- background-position:0 -98px;
- }
- .b-new-entry .stats-settings{
- padding-left:40px;
- }
- .b-new-entry .db-credentials .field-label{
- text-indent:40px;
- }
- /*.b-new-entry .pwd-box .text-field{
- float:left;
- margin:0 15px 0 0;
- }*/
- .b-new-entry_user .lastname-box{
- margin-bottom:30px;
- }
- .b-new-entry_dns .dns-template-box .styled{
- float:left;
- margin:0 40px 0 0;
- margin:0 20px 0 0;
- width:230px;
- cursor:pointer;
- }
- .b-new-entry_dns .ttl-field{
- width:75px;
- }
- .generate-pwd,
- .context-settings{
- position:relative;
- top:10px;
- float:left;
- display:block;
- color:#5ea2a1;
- border-bottom:1px solid #cdcea6;
- text-transform:uppercase;
- cursor:pointer;
-
- font-size:11px;
- line-height:1;
- letter-spacing:0.5px;
- }
- .generate-pwd:hover,
- .context-settings:hover{
- color:#575757;
- border-bottom-color:#b4c775;
- }
- .generate-pwd:active,
- .context-settings:active{
- color:#b4c775;
- }
- .b-new-entry .add-ns{
- display:-moz-inline-stack;
- display: inline-block;
- zoom: 1;
- *display: inline;
- margin:0 0 7px 180px;
- font-family:Georgia, "Times New Roman", Times, serif;
- font-size:14px;
- line-height:1;
- text-transform:uppercase;
- color:#66685d;
- text-decoration:none;
- }
- .add-ns .icon{
- float:left;
- display:block;
- width:11px;
- height:11px;
- margin:2px 5px 0 0;
- background:url(../images/add-entry-plus.gif) no-repeat;
- font-size:0;
- line-height:0;
- }
- .add-ns .btn-title{
- display:inline-block;
- border-bottom:1px solid #b5c968;
- }
- .add-ns .btn-title:hover{
- color:#000;
- border-bottom-color:#b85152;
- }
- .add-ns .btn-title:active{
- color:#b85152;
- border-bottom-color:#000;
- }
-
-
- .b-new-entry .buttons-row{
- position:relative;
- margin-top:13px;
- padding:8px 15px 8px 195px;
- border-top:1px solid #dcdbad;
- background:url(../images/form-bottom-bg.png) repeat-x;
- }
- /* .b-new-entry .help-btn{
- position:absolute;
- top:13px;
- right:20px;
- font-size:11px;
- line-height:12px;
- color:#b4b39f;
- text-transform:uppercase;
- cursor:pointer;
- border-bottom:1px solid #b4b39f;
- text-decoration:none;
- }
- .b-new-entry .help-btn:hover{
- color:#000;
- border-bottom-color:#9fb35a;
- }
- .b-new-entry .help-btn:active{
- color:#4B9427;
- }
- */
- .b-new-entry .cancel-btn{
- display:-moz-inline-stack;
- display: inline-block;
- zoom: 1;
- *display: inline;
-
- margin-left:30px;
- font-size:11px;
- line-height:1;
- font-weight:bold;
-
- text-transform:uppercase;
- color:#2ca9bd;
- cursor:pointer;
- border-bottom:1px solid #2ca9bd;
- }
- .b-new-entry .cancel-btn:hover{
- color:#999;
- border-bottom-color:#999;
- }
- .b-new-entry .cancel-btn:active{
- color:#fc0;
- border-bottom-color:#fc0;
- }
-
- .b-new-entry .delete-btn{
- position:absolute;
- top:18px;
- right:16px;
-
- font-size:9px;
- line-height:11px;
- text-transform:uppercase;
- color:#333;
- letter-spacing:3px;
- cursor:pointer;
- border-bottom:1px solid #ff6766;
- }
- .b-new-entry .delete-btn:hover{
- color:#ff6766;
- }
- .b-new-entry .delete-btn:active{
- color:#fc0;
- border-bottom-color:#fc0;
- }
-
- .b-new-entry .add-entry-btn{
- overflow:visible;
- height:28px;
- padding:0 50px;
- -webkit-border-radius:9px;
- -moz-border-radius:9px;
- border-radius:9px;
- border:2px solid #c8c09c;
- background-color:#feff99;
- color:#444428;
- font-size:14px;
- font-family:Arial, Helvetica, sans-serif;
- font-weight:bold;
- line-height:25px;
- text-transform:uppercase;
- cursor:pointer;
- }
- .b-new-entry .add-entry-btn:focus{
- position:relative;
- top:1px;
- }
- .b-new-entry .add-entry-btn:hover{
- background-color:#feff77;
- color:#464322;
- border-color:#9e977b;
- }
- .b-new-entry .add-entry-btn:active{
- background-color:#928d7a;
- color:#fefe9e;
- border-color:#87826e;
- }
- .b-new-entry .autocomplete-box{
- position:relative;
- float:left;
- padding-right:35px;
- background:#fff;
- }
- .b-new-entry .autocomplete-box .text-field{
- width:213px;
- margin:0;
- }
- .b-new-entry .autocomplete-box .arrow{
- position:absolute;
- top:0;
- right:0;
- display:block;
- width:32px;
- height:32px;
- font-size:0;
- line-height:0;
- /* background:#fff url(../images/select-arrow.png) no-repeat 100% 50%;*/
- background:#fff url(../images/autocomplete-field-arrows-sprite.png) no-repeat;
- cursor:pointer;
- }
- .b-new-entry .autocomplete-box .arrow:hover,
- .b-new-entry .autocomplete-box .arrow:active,
- .b-new-entry .autocomplete-box .arrow:focus{
- background-position:0 -32px;
- }
- .b-new-entry .form-error{
- position:relative;
- margin:-5px 5px 5px;
- padding:8px 15px;
- border:1px solid #dcdbad;
- background:url(../images/form-bottom-bg.png) repeat-x;
- }
- .form-error .error-box{
- padding-left:18px;
- background:url(../images/error-bullet.png) no-repeat 0 50%;
- }
- .form-error .error-box .error-message{
- color:#9a32ff;
- font-size:16px;
- line-height:22px;
- }
- .form-error .error-box .help-tip-url{
- position:relative;
- top:-1px;
- font-size:12px;
- line-height:15px;
- color:#b4b39f;
- text-transform:uppercase;
- text-decoration:none;
- cursor:pointer;
- border-bottom:1px solid #b4b39f;
- }
- .b-new-entry .help-tip-url:hover{
- color:#000;
- border-bottom-color:#9fb35a;
- }
- .b-new-entry_cron{}
-
- .b-new-entry_cron .form-row{
- padding-top:7px;
- padding-bottom:5px;
- }
- .b-new-entry_cron .run-at-box{
- padding-bottom:7px;
- }
- .b-new-entry_cron .run-at-box .row-header{
- margin-top:35px;
- }
- .b-new-entry_cron .form-row-line .field-box{
- margin-right:14px;
- }
- .b-new-entry_cron .form-row-line .cron-week-box{
- margin:0;
- }
- .b-new-entry_cron .form-row-line .field-label{
- display:block;
- float:none;
- width:auto;
- line-height:1;
- padding:0 0 8px;
- color:#7d7d7d;
- font-size:13px;
- }
- .b-new-entry_cron .form-row-line .text-field{
- width:112px;
- margin:0;
- }
- .b-new-entry_cron .form-row-line .cron-week-box .text-field{
- width:109px;
- margin:0;
- }
- .b-new-entry_cron .textarea{
- height:60px;
- }
- .b-new-detailed-restore{}
-
- .b-new-detailed-restore .add-entry-btn{
- padding:0 30px;
- }
- /*
- .b-new-detailed-restore .cancel-btn{
- left:auto;
- right:16px;
- }
- */
-
- /* Show/edit dns records form
- - - - - - - - - - - - - - - - - - - - */
- .b-records-list{
- margin-left:160px;
- }
- .b-records-list .entry-header{
- padding-top:6px;
- padding-bottom:11px;
- }
- .b-records-list .hide-records{
- font-size:10px;
- font-family:Arial, Helvetica, sans-serif;
- line-height:13px;
- }
- .b-records-list .add-btn{
- margin:0;
- float:none;
- }
- .b-records-list .form-row{
- padding-top:5px;
- padding-bottom:5px;
- }
- .b-records-list .add-box{
- padding-bottom:15px;
- }
- .b-records-list .buttons-row{
- margin-top:20px;
- }
- .form-row-line{
- position:relative;
- }
- .form-row-line .field-box{
- float:left;
- }
- .form-row-line .field-devider{
- float:left;
- display:block;
- min-height:30px;
- margin:0 15px;
- font-size:15px;
- line-height:2;
- }
- .b-records-list .form-row-line .field-label{
- float:none;
- display:block;
- width:auto;
- line-height:20px;
- }
- .b-records-list .dns-record-box .text-field{
- width:147px;
- float:left;
- margin:0;
- }
- .b-records-list .dns-type-box{
- margin-right:15px;
- }
- .b-records-list .dns-type-box .select{
- width:51px;
- left:221px;
- }
- .b-records-list .dns-type-box select.styled{
- width:87px;
- cursor:pointer;
- }
- .b-records-list .dns-value-box .text-field{
- float:none;
- width:390px;
- margin:0;
- }
- .b-records-list .delete-record{
- position:absolute;
- top: auto;
- bottom:15px;
- right:11px;
- display:block;
- float:left;
- width:11px;
- height:11px;
- background:url(../images/delete-ico-off.png) no-repeat;
- }
- /* Web-domains list
- - - - - - - - - - - - - - - - - - - - */
- .domains-list{}
- .domains-list .entry-created{
- padding-top:9px;
- }
- .names{
- margin:0 0 6px;
- color:#acacac;
- }
- .names .alias-title{
- position:relative;
- top:-1px;
- padding-right:3px;
- padding:0 3px 0 25px;
- font-size:10px;
- line-height:1.8;
- text-transform:uppercase;
- }
- .names .domain-name{
- position:relative;
- top:-1px;
- padding:0 3px 0 0;
- font-size:12px;
- line-height:1.5;
- color:#acacac;
- white-space:nowrap;
- }
- .row-details .names .primary{
- top:0;
- /* padding:0 25px 0 0;*/
- font-size:20px;
- font-family:Arial, Helvetica, sans-serif;
- font-weight:normal;
- font-style:normal;
- color:#000; /* radikal'no cherniy, da! */
- }
- .names .primary:active{
- color:#9fb749;
- }
- .domains-list .names .primary,
- .dns-list .names .primary{
- border-bottom:1px solid #fff;
- }
-
- .domains-list .props-main{
- width:345px;
- }
- .domains-list .ip-adr{
- font-size:16px;
- color:#888;
- }
- .domains-list .ip-adr-box .prop-box{
- margin-left:20px;
- }
- .domains-list .props-additional{
- width:230px;
- padding-top:0;
- /* background:#bbb;*/
- }
- .domains-list .props-ext{
- width:170px;
- padding-top:0;
- /* background:#ddd;*/
- }
-
- .b-usage-box{
- display:block;
- }
- .b-usage-box .prop-title{
- float:left;
- margin:2px 15px 0 0;
- }
- .b-usage-box .usage-box{
- float:left;
- width:136px;
- }
- .b-usage-box .usage-box{
- }
- .b-usage-box .value-box{
- float:left;
- width:75px;
- }
- .b-usage-box .max-size{
- float:right;
- }
- .b-usage-box .value{
- display:block;
- font-size:11px;
- line-height:1;
- color:#999;
- }
- .b-usage-box .max-size{
- position:relative;
- top:2px;
- font-size:14px;
- line-height:1;
- color:#ababab;
- }
- .b-usage-box .max-size .units{
- font-size:12px;
- color:#797979;
- }
- .graph{
- position:relative;
- border:1px solid #b7b7b9;
- font-size:0;
- line-height:0;
- }
- .graph .bar{
- position:relative;
- display:block;
- height:2px;
- }
- .critical .bar{
- background-color:#f00;
- }
- .middle .bar{
- background-color:#ff9934;
- }
- .low .bar{
- background-color:#9fec00;
- }
- /* New graphs */
- .b-stats-box{
- position:relative;
- margin-left:-25px;
- padding-left:25px;
- background:url(../images/stats-brace.png) no-repeat 0 50%;
- }
- .stats-box-title{
- position:absolute;
- top:50%;
- left:-65px;
- margin-top:-10px;
- padding-right:25px;
- text-transform:uppercase;
- font-size:9px;
- line-height:12px;
- background:url(../images/stats-curve.png) no-repeat 100% 50%;
- color:#acacac;
- /*border-bottom:1px solid #acacac;*/
- }
- .b-usage-box2{
- display:block;
- margin:0 0 22px;
- position:relative;
- }
- .b-usage-box2 .prop-title{
- float:left;
- margin:2px 15px 0 0;
- }
- .b-usage-box2 .usage-box{
- float:left;
- }
- .b-usage-box2 .value-box{
- padding-top:11px;
- float:left;
- width:85px;
- }
- .b-usage-box2 .max-size{
- position:relative;
- top:11px;
- float:right;
- padding:7px 0 0 3px;
- border-left:1px solid #B7B7B9;
- font-size:10px;
- line-height:1;
- color:#acacac;
- }
- .b-usage-box2 .max-size .units{
- font-size:10px;
- color:#acacac;
- }
- .b-usage-box2 .graph{
- position:relative;
- border:solid #b7b7b9;
- border-width:1px 0 1px 1px;
- font-size:0;
- line-height:0;
- }
- .b-usage-box2 .value{
- position:absolute;
- top:-15px;
- left:0;
- z-index:10;
- display:block;
- white-space:nowrap;
- padding:0 0 7px 3px;
- font-size:11px;
- line-height:1;
- background:url(../images/bar-value-mark.png) no-repeat 0 100%;
- color:#797979;
- }
- .b-usage-box2 .value-size{
- padding-left:3px;
- }
- .b-usage-box2 .graph .bar{
- position:relative;
- display:block;
- height:2px;
- background-color:#9fec00;
- }
- /* Overdraft */
- .b-usage-box2 .overdraft{}
-
- .b-usage-box2 .overdraft .value{
- margin-left:-1px;
- color:#F00;
- }
-
- .b-usage-box2 .bar_overdraft{
- position:absolute;
- top:-1px;
- z-index:5;
- display:block;
- height:2px;
- border:solid #b7b7b9;
- border-width:1px 0;
- background:#ff9934 url(../images/overrun-border.png) no-repeat 100% 0;
- }
-
- .domains-list .disk-usage{
- margin:0 0 6px;
- }
- .domains-list .props-additional .prop-box,
- .domains-list .props-ext .prop-box{
- display:block;
- margin:0;
- }
- .stats-box{}
-
- .stats-box .stats-auth{
- position:relative;
- top:3px;
- display:-moz-inline-stack;
- display:inline-block;
- vertical-align:top;
-
- margin:0 0 0 5px;
- padding:0 0 0 10px;
- font-size:12px;
- line-height:1.5;
- color:#777;
- cursor:pointer;
- }
- .stats-box .stats-auth-on{
- background:url(../images/auth-plus.png) no-repeat 0 60%;
- }
- .stats-box .stats-auth-text{
- display:block;
- line-height:11px;
- border-bottom:1px solid #cacbbd;
- }
-
- .nginx-box{}
-
- .nginx-box .nginx-ext-list{
- position:relative;
- top:3px;
- display:-moz-inline-stack;
- display:inline-block;
- vertical-align:top;
-
- margin:0 0 0 5px;
- border-bottom:1px solid #cacbbd;
- font-size:12px;
- line-height:1;
- color:#777;
- cursor:pointer;
- }
- .template-box{}
-
- .template-box .prop-value{
- padding:0;
- cursor:pointer;
- border-bottom:1px solid #cbcbbf;
- }
- /* DNS list
- - - - - - - - - - - - - - - - - - - - */
- .dns-list{}
- .dns-list .row-details{
- padding-bottom:8px;
- }
- .dns-list .entry-created{
- padding-top:9px;
- }
- .dns-list .props-main{
- width:295px;
- }
- .dns-list .props-additional{
- width:200px;
- }
- .dns-list .props-ext{
- width:250px;
- }
- .dns-list .props-additional .prop-box,
- .dns-list .props-ext .prop-box{
- display:block;
- margin:0;
- }
- .dns-list .ip-adr-box{
- margin:0;
- }
- .dns-list .ip-adr{
- font-size:12px;
- line-height:1.5;
- color:#777;
- }
-
- /* Cron list
- - - - - - - - - - - - - - - - - - - - */
- .cron-list{}
- .cron-list .entry-created{
- padding-top:18px;
- }
- .cron-list .cron-meta{
- margin:0 0 9px;
- }
- .cron-meta .prop-box{
- min-width:0;
- }
- .cron-meta .prop-title{
- display:block;
- text-transform:none;
- font-size:10px;
- }
- .cron-meta .prop-value{
- padding:0;
- font-size:16px;
- color:#7c7c7c;
- }
- .cron-meta .cron-min,
- .cron-meta .cron-hour,
- .cron-meta .cron-day,
- .cron-meta .cron-week,
- .cron-meta .cron-month{
- min-width:45px;
- padding-right:20px;
- }
- .cron-command-box{
- margin:0 0 5px;
- }
- .cron-command-line{
- position:relative;
- padding:0 3px 0 0;
- font-family:Arial, Helvetica, sans-serif;
- font-size:20px;
- line-height:1.5;
- font-weight:normal;
- font-style:normal;
- color:#000;
- }
- .cron-command-line:active{
- color:#9fb749;
- }
- .cron-list .cron-command-line{
- border-bottom:1px solid #fff;
- }
- .cron-reported-to{
- margin:0 0 3px;
- }
- .cron-reported-to .prop-title{
- padding-right:3px;
- }
- .cron-reported-to .prop-value{
- padding:0 3px 0 0;
- }
-
- /* Users list
- - - - - - - - - - - - - - - - - - - - */
- .users-list{}
- .users-list .entry-created{
- padding-top:10px;
- }
- .users-list .user-wrap{
- margin:0 0 19px;
- }
- .users-list .props-main{
- width:345px;
- width:330px;
- }
- .users-list .username-box{
- padding-top:6px;
- margin:0 0 15px;
- }
- .users-list .username-box .user{
- position:relative;
- top:-6px;
- }
- .users-list .username-box .nickname{
- border-bottom:1px solid #fff;
- }
-
- .user-backups-box{
- margin-top:5px;
- }
- .user-backups-box .prop-title{
- border-bottom:1px solid #CBCBBF;
- font-size:12px;
- text-transform:capitalize;
- cursor:pointer;
- color:#777;
- }
- .users-list .props-additional{
- width:200px;
- width:225px;
- }
- .users-list .props-additional .prop-box,
- .users-list .props-ext .prop-box{
- display:block;
- }
- .users-list .props-additional .ns1-box,
- .users-list .props-additional .ns2-box{
- padding-left:27px;
- }
- .users-list .webtpl-box .group-switcher,
- .users-list .ns-list-box .group-switcher{
- padding-left:15px;
- }
- .users-list .props-additional .ns1-box .prop-title,
- .users-list .props-additional .ns2-box .prop-title{
- display: inline;
- float: left;
- margin: 2px 0 0 -27px;
- }
- .users-list .props-additional .ns1-box .prop-value,
- .users-list .props-additional .ns2-box .prop-value{
- padding:0;
- }
-
- .users-list .props-ext{
- width:190px;
- }
-
- .users-list .db-box,
- .users-list .dnsdomains-box{
- margin-top:35px;
- }
- .username-box .prop-box{
- position:relative;
- margin:0;
- }
- .user-details{
- font-size:12px;
- }
- .user-details .user-email{
- color:#777;
- padding-right:5px;
- }
- .user-details .user-reports{
- color:#9c9c9c;
- }
- .user-details-box .prop-box{
- margin:0 0 5px;
- }
- .user-details-box .user-name .prop-value,
- .user-details-box .user-email{
- font-style:italic;
- color:#706f6b;
- }
-
- /* DB list
- - - - - - - - - - - - - - - - - - - - */
- .db-list{}
- .db-list .row-details{
- padding-bottom:8px;
- }
- .db-list .db-devider{
- margin-top:25px;
- position:relative;
- display:block;
- border-bottom:1px solid #e0e0e0;
- }
- .db-list .db-devider-title{
- display:block;
- position:absolute;
- top:-8px;
- left:-50%;
- width:200%;
- }
- .db-list .db-devider-outer{
- display:block;
- position:absolute;
- left:50%;
- }
- .db-list .db-devider-inner{
- background:#fff;
- position:relative;
- left:-50%;
- padding:0 10px;
- font-size:11px;
- font-weight:bold;
- text-transform:uppercase;
- color:#4097B3;
- }
-
- .db-list .props-main{
- width:210px;
- padding-right:10px;
- }
- .db-list .props-additional{
- width:340px;
- padding-top:6px;
- }
- .db-list .props-ext{
- width:185px;
- padding-top:6px;
- }
- .db-name{
- position:relative;
- margin:0 0 6px;
- padding:0 3px 0 0;
- }
- .db-name-box .db-name{
- font-size:20px;
- font-family:Arial, Helvetica, sans-serif;
- font-weight:normal;
- font-style:normal;
- line-height:27px;
- }
- .db-name:active{
- color:#9fb749;
- }
- .db-list .db-name{
- border-bottom:1px solid #fff;
- }
- .db-list .ownership .prop-box{
- margin:5px 0 0;
- }
- .db-list .ownership .prop-value{
- padding:0;
- font-size:11px;
- font-style:italic;
- }
- .db-list .entry-created{
- padding:0;
- }
- .db-user-box{
- margin:0 0 10px;
- }
- .db-user-box .db-user{
- position:relative;
- display:block;
- float:left;
- margin-right:25px;
- padding-right:20px;
- font-size:12px;
- line-height:1.25; /*15px*/
- font-style:italic;
- color:#999;
- }
- .db-user-box .db-user:hover{
- color:#f00;
- }
- .db-user-box .change-pwd{
- position:relative;
- top:1px;
- display:inline-block;
- border-bottom:1px solid #c9cabc;
- text-transform:uppercase;
- line-height:13px;
- cursor:pointer;
- visibility:hidden;
- }
- .add-db-user{
- border-bottom:1px solid #c9cabc;
- text-transform:uppercase;
- line-height:13px;
- padding-left:10px;
- background:url(../images/auth-plus.png) no-repeat 0 50%;
- color:#555;
- cursor:pointer;
- }
- .backup-db{
- float:left;
- position:relative;
- top:2px;
- display:-moz-inline-stack;
- display:inline-block;
- vertical-align:top;
-
- border-bottom:1px solid #cacbbd;
- font-size:12px;
- line-height:13px;
- color:#777;
- cursor:pointer;
- }
- .db-list .b-usage-box{
- float:right;
- position:relative;
- top:1px;
- }
- .db-list .b-usage-box .usage-box{
- width:auto;
- }
- .db-list .b-usage-box .value,
- .db-list .b-usage-box .max-size{
- color:#797979;
- }
- .db-list .b-usage-box .value-box{
- width:60px;
- margin-right:5px;
- }
- .db-list .b-usage-box .max-size{
- float:left;
- }
- .db-list .b-usage-box .max-size .units{
- color:#ABABAB;
- }
- /* Backups list
- - - - - - - - - - - - - - - - - - - - */
- .backups-list{}
- .backups-list .row{
- padding:25px 10px 15px;
- }
- .backups-list .ownership{
- padding:5px 0 0;
- }
- .backups-list .props-main{
- padding-top:5px;
- }
- .backups-list .props-main .prop-box{
- margin:0;
- }
- .backups-list .props-additional{
- width:165px;
- padding:4px 0 0;
- }
- .backups-list .props-ext{
- width:165px;
- padding:0;
- }
- .backups-list .entry-created{
- width:185px;
- padding:0;
- }
- .backups-list .backup-date,
- .backups-list .backup-weekday{
- display:-moz-inline-stack;
- display:inline-block;
- vertical-align:top;
- }
- .backups-list .backup-date .backup-day{
- display:block;
- width:105px;
- font-size:14px;
- font-family:Arial,Helvetica,sans-serif;
- font-weight:bold;
- line-height:20px;
- color:#47443f;
- }
- .backups-list .backup-weekday{
- padding-top:4px;
- color:#408abb;
- }
- .backups-list .backup-time,
- .backups-list .generation-time .prop-value{
- font-size:10px;
- color:#999;
- }
- .backups-list .generation-time .prop-value{
- color:#9C9C9C;
- }
-
- .backups-list .generation-time{
- padding-top:4px;
- }
- .backups-list .backup-size{
- display:-moz-inline-stack;
- display:inline-block;
- padding-right:12px;
-
- font-size:10px;
- line-height:24px;
- background:url(../images/green-bracket-l.png) no-repeat 0 50%;
- color:#595959;
- }
- .backups-list .backup-size-inner{
- display:-moz-inline-stack;
- display:inline-block;
- padding:0 10px;
- background:url(../images/green-bracket-r.png) no-repeat 100% 50%;
- }
- .backups-list .backup-url,
- .backups-list .backup-actions{
- font-size:13px;
- color:#999;
- }
- .backups-list .backup-actions{
- background:#ccc;
- }
- .backups-list .backup-actions-url{
- float:right;
- display:-moz-inline-stack;
- display:inline-block;
- vertical-align:top;
- -webkit-border-radius:9px;
- -moz-border-radius:9px;
- border-radius:9px;
-
- border:2px solid #fff;
- color:#999;
- line-height:26px;
- }
- .backups-list .row a.backup-actions-url:hover{
- padding:0 12px;
- border-color:#c8c09c;
- background-color:#feff99;
- color:#444428;
- font-size:14px;
- font-family:Arial, Helvetica, sans-serif;
- font-weight:bold;
- cursor:pointer;
- text-decoration:none;
- text-transform:uppercase;
- }
- .backups-list .detailed-restore-ext{
- display:none;
- }
-
- .backups-list a.detailed-restore-url:hover .detailed-restore-title{
- text-transform:none;
- }
- .backups-list a.detailed-restore-url:hover .detailed-restore-ext{
- display:inline-block;
- }
-
- .backups-list .restore-url{
- margin-left:10px;
- color:#93b749;
- }
-
- .backup-tree{
- padding-left:130px;
- }
-
- .backup-tree .backup-tree-item{
- padding:0 0 7px 25px;
- background:url(../images/backup-checkbox.png) no-repeat 0 .5em;
- }
- .backup-tree .unchecked{
- background:url(../images/backup-checkbox-unchecked.png) no-repeat 0 .5em;
- }
- .backup-tree .checked{
- background:url(../images/backup-checkbox-checked.png) no-repeat 0 .5em;
- }
-
- .backup-tree .backup-sections,
- .backup-tree .backup-sections .sub-tree{
- padding:10px 0 0 25px;
- }
-
- .backup-tree .node-item{
- font-size:13px;
- font-weight:bold;
- padding-left:15px;
- background:url(../images/backup-collapsed-ico.png) no-repeat 0 .3em;
- border-bottom:1px dashed #cfd19f;
- color:#5a6962;
- cursor:pointer;
- }
- .backup-tree .node-item:hover{
- color:#ffcf0b;
- }
-
- .backup-tree .expanded{
- background:url(../images/backup-expand-ico.png) no-repeat 0 .45em;
- }
- .backup-tree .backup-sections .sub-tree .node-item{
- font-style:italic;
- color:#abad85;
- padding:0;
- background:none;
- border:none;
- }
- .backup-tree .backup-sections .sub-tree .node-item:hover{
- color:#abad85;
- }
-
- .backup-tree .backup-sections .sub-tree .checked .node-item{
- color:#5a6962;
- font-style:normal;
- }
- /* Highlighted backup row */
- .backup-details-row_highlighted,
- .backups-list .backup-details-row_highlighted:hover{
- background:#666;
- }
- .backup-details-row_highlighted .notes-wrap{
- font-size:14px;
- line-height:25px;
- font-weight:bold;
- text-transform:uppercase;
- color:#bad23e;
- text-align:center;
- padding:0 0 10px;
- }
- .backup-details-row_highlighted .restore-ico{
- padding:4px 0 4px 30px;
- line-height:25px;
- background:url(../images/backup-restore-ico.png) no-repeat;
- }
- .backup-details-row_highlighted .backup-time{
- color:#fff;
- }
- .backup-details-row_highlighted .ownership .prop-value{
- color:#c8c8c8;
- }
- .backups-list .backup-details-row_highlighted .backup-day{
- color:#fff;
- }
- .backups-list .backup-details-row_highlighted .backup-size{
- color:#ccc;
- }
- .backups-list .backup-details-row_highlighted .backup-actions{
- display:none;
- }
-
- /* row hover effect
- - - - - - - - - - - - - - - - - - - - */
- .row:hover{
- background-color:#ffffcb;
- }
- .ip-list .row:hover .ip-adr,
- .domains-list .row:hover .names .primary,
- .dns-list .row:hover .names .primary,
- .cron-list .row:hover .cron-command-line,
- .users-list .row:hover .username-box .nickname,
- .db-list .row:hover .db-name{
- border-bottom-style:dashed;
- border-bottom-color:#e5e5e5;
- border-bottom-color:#bbb;
- }
- .ip-list .row:hover .ip-adr:hover,
- .domains-list .row:hover .names .primary:hover,
- .dns-list .row:hover .names .primary:hover,
- .cron-list .row:hover .cron-command-line:hover,
- .users-list .row:hover .username-box .nickname:hover,
- .db-list .row:hover .db-name:hover{
- cursor:pointer;
- border-bottom-style:solid;
- border-bottom-color:#b4c775;
- }
- .ip-list .ip-details-suspended:hover .ip-adr,
- .ip-list .ip-details-suspended:hover .ip-adr:hover{
- border:none;
- cursor:default;
- }
- .backups-list .row:hover .backup-actions-url{
- border-color:#ffffcb;
- }
- .row:hover .ip-status-info{
- background:url(../images/enabled-ico_.png) no-repeat 100% 50%;
- }
- .row:hover .delete-entry,
- .row:hover .db-user-box .db-user{
- background:url(../images/delete-ico-off.png) no-repeat 100% 4px;
- }
- .row:hover .ip-suspended-status{
- background:url(../images/suspended-ico.png) no-repeat 100% 65%;
- }
- .ip-status-info:hover .ip-status-text,
- .delete-entry:hover .delete-entry-text,
- .row:hover .db-user-box .change-pwd{
- visibility:visible;
- }
- .row .ip-status-info:hover{
- background-image:url(../images/enabled-ico-hover.png);
- }
- .row .ip-suspended-status:hover{
- background-image:url(../images/suspended-ico.png);
- }
- .row .delete-entry:hover,
- .row .db-user-box .db-user:hover{
- background-image:url(../images/delete-ico.png);
- cursor:pointer;
- }
- .row .delete-entry:active{
- background-image:url(../images/delete-ico-active.png);
- cursor:pointer;
- }
- .delete-entry:hover .delete-entry-text{
- color:#333;
- }
- .delete-entry .delete-entry-text:hover{
- cursor:pointer;
- }
- .delete-entry .delete-entry-text:active{
- color:#f00;
- }
- .row:hover .show-records,
- .row:hover .hide-records,
- .row:hover .template-box .prop-value,
- .domains-list .row:hover .stats-box .stats-auth-text,
- .domains-list .row:hover .nginx-box .nginx-ext-list,
- .row:hover .db-user-box .change-pwd,
- .row:hover .add-db-user,
- .row:hover .backup-db,
- .row:hover .user-backups-box .prop-title{
- color:#6aa0ac;
- border-bottom-color:#cacbbd;
- }
- .row:hover .template-box .prop-value:hover,
- .row:hover .show-records:hover,
- .hide-records:hover,
- .domains-list .row:hover .stats-box .stats-auth-text:hover,
- .domains-list .row:hover .nginx-box .nginx-ext-list:hover,
- .row .db-user-box .change-pwd:hover,
- .row .add-db-user:hover,
- .row .backup-db:hover,
- .row .user-backups-box:hover .prop-title{
- color:#575757;
- border-bottom-color:#b4c775;
- }
- .row .template-box .prop-value:active,
- .row .show-records:active,
- .hide-records:active,
- .domains-list .row:hover .stats-box .stats-auth-text:active,
- .domains-list .row:hover .nginx-box .nginx-ext-list:active,
- .users-list .username-box .nickname:active,
- .users-list .user-backups-box .prop-title:active,
- .row .db-user-box .change-pwd:active,
- .row .add-db-user:active,
- .row .backup-db:active,
- .row .user-backups-box .prop-title:active{
- color:#b4c775;
- }
- /* Checked row
- - - - - - - - - - - - - - - - - - - - */
- .checked-row{
- background-color:#e4f7bf;
- }
- .checked-row .row-actions-box .check-control{
- background-position:0 -30px;
- }
-
- .domains-list .checked-row .names .primary,
- .dns-list .checked-row .names .primary,
- .cron-list .checked-row .cron-command-line,
- .users-list .checked-row .username-box .nickname,
- .db-list .checked-row .db-name{
- border-bottom:1px solid #e4f7bf;
- }
-
- /* Suspended row
- - - - - - - - - - - - - - - - - - - - */
- .ip-details-suspended,
- .suspended-row{}
- .ip-details-suspended:hover,
- .suspended-row:hover{
- background-color:#fff;
- }
- .ip-details-suspended .entry-created,
- .suspended-row .entry-created,
- .suspended-row .username-box .role{
- color:#ccc;
- }
- .ip-details-suspended .ip-adr,
- .suspended-row .ip-adr,
- .suspended-row .cron-command-line,
- .suspended-row .username-box,
- .suspended-row .username-box .nickname,
- .suspended-row .user-name .prop-value,
- .suspended-row .user-backups-box .prop-title,
- .suspended-row .user-details .user-email,
- .suspended-row .user-details .user-reports,
- .suspended-row .template-box .prop-value,
- .suspended-row .stats-box-title,
- .suspended-row .stats-box .stats-auth,
- .suspended-row .nginx-box .nginx-ext-list{
- color:#ccc;
- border:none;
- }
- .ip-details-suspended:hover .ip-adr,
- .suspended-row:hover .ip-adr,
- .suspended-row:hover .names .primary,
- .domains-list .suspended-row:hover .names .primary,
- .dns-list .suspended-row:hover .names .primary,
- .cron-list .suspended-row:hover .cron-command-line,
- .users-list .suspended-row:hover .username-box .nickname,
- .users-list .suspended-row:hover .user-backups-box .prop-title,
- .suspended-row .stats-box .stats-auth-text{
- border:none;
- }
- .ip-details-suspended:hover .ip-adr:hover,
- .suspended-row:hover .ip-adr:hover,
- .cron-list .suspended-row:hover .cron-command-line:hover,
- .users-list .suspended-row:hover .username-box .nickname:hover,
- .users-list .suspended-row:hover .user-backups-box .prop-title:hover,
- .cron-list .suspended-row:hover .cron-command-line{
- border:none;
- cursor:default;
- }
- .users-list .suspended-row .username-box .nickname:active,
- .users-list .suspended-row .user-backups-box .prop-title:active{
- color:#ccc;
- }
- .ip-details-suspended .prop-title,
- .ip-details-suspended .prop-value,
- .suspended-row .prop-title,
- .suspended-row .prop-value,
- .suspended-row .b-usage-box .value,
- .suspended-row .b-usage-box .max-size,
- .suspended-row .b-usage-box .max-size .units,
- .suspended-row .b-usage-box2 .value,
- .suspended-row .b-usage-box2 .max-size,
- .suspended-row .names .primary{
- color:#ccc;
- }
- .suspended-row .b-usage-box .bar,
- .suspended-row .b-usage-box2 .graph .bar {
- background-color:#ccc;
- }
- .suspended-row:hover .show-records,
- .suspended-row:hover .hide-records,
- .suspended-row:hover .template-box .prop-value,
- .domains-list .suspended-row:hover .stats-box .stats-auth-text,
- .domains-list .suspended-row:hover .nginx-box .nginx-ext-list,
- .suspended-row:hover .user-backups-box .prop-title,
- .suspended-row:hover .template-box .prop-value:hover,
- .suspended-row:hover .show-records:hover,
- .suspended-row .hide-records:hover,
- .domains-list .suspended-row:hover .stats-box .stats-auth-text:hover,
- .domains-list .suspended-row:hover .nginx-box .nginx-ext-list:hover{
- color:#ccc;
- border:none;
- cursor:default;
- }
- .suspended-row:hover .template-box .prop-value:active,
- .suspended-row:hover .show-records:active,
- .suspended-row .hide-records:active,
- .domains-list .suspended-row:hover .stats-box .stats-auth-text:active,
- .domains-list .suspended-row:hover .nginx-box .nginx-ext-list:active,
- .users-list .suspended-row .username-box .nickname:active,
- .users-list .suspended-row .user-backups-box .prop-title:active{
- color:#ccc;
- }
- .suspended-row .stats-box-title{
- background-image:url(../images/stats-curve-grey.png);
- }
- .success-box {
- color: #BBBF45;
- font-size: 22px;
- padding-left: 136px;
- padding-bottom: 30px;
- }
- .inactive-row { font-style: italic; opacity: 0.38; background: url('../images/bg_line.png');filter: alpha(opacity = 38); }
- .form-suspended input[type="text"], .form-suspended input[type="checkbox"], .form-suspended .checkbox, .form-suspended select, .form-suspended textarea, .form-suspended .select { opacity: 0.38;filter: alpha(opacity = 38); }
- .form-suspended .do_action_toggle_suspend {opacity: 1; filter: alpha(opacity = 100);}
- .stats-block{
- background:#474338;
- padding:10px;
- width:600px;
- margin:0 auto 10px;
- }
- .stats-block-header{
- color:#fc0;
- font-size:12px;
- font-weight:bold;
- text-align:center;
- }
- .stats-block .stats-graph{
- display:block;
- margin:0 auto;
- }
- /* START: DEV!! */
- .stats-subbar {cursor: pointer;}
- .stats-subbar .sub-active{font-weight: bold;}
- /* END: DEV */
|