main.css 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982
  1. /*- - - - - - - - - - - - - - - - - - -
  2. Title : Vesta
  3. Author : Eugen Lobicov, eugen.lobicov@gmail.com
  4. created : November 27, 2009
  5. last updated : December 06, 2011
  6. - - - - - - - - - - - - - - - - - - */
  7. html{
  8. font-size:100.01%; /* prevent IE's extreme font-resizing bug*/
  9. }
  10. body{
  11. position:relative;
  12. font:normal 62.5%/1.5 Helvetica, Arial, sans-serif;
  13. background:#B2AD9C url(../images/thin-grey-line-4.gif) repeat-x;
  14. color:#333;
  15. }
  16. #page{
  17. width:965px;
  18. width:955px;
  19. margin:3px auto 0;
  20. border:1px solid red;
  21. border:solid #807D70;
  22. border-width:0 1px;
  23. }
  24. .outer{
  25. padding-bottom:58px;
  26. background:#fff url(../images/footer-bg.gif) repeat-x 0 100%;
  27. }
  28. #header{
  29. /*overflow:hidden;*/
  30. padding:0 10px;
  31. height:26px;
  32. border-bottom:2px solid #333527;
  33. background-color:#484439;
  34. }
  35. .logo-box{
  36. float:left;
  37. }
  38. .logo,
  39. .logo a,
  40. .logo a span{
  41. display:block;
  42. width:80px;
  43. height:26px;
  44. }
  45. .logo a{
  46. position:relative;
  47. overflow:hidden;
  48. font-size:1.2em; /*12px */
  49. text-decoration:none;
  50. color:#fff;
  51. display:block;
  52. text-indent:-9999px;
  53. }
  54. .logo a span{
  55. position:absolute;
  56. top:1px;
  57. left:0;
  58. z-index:1;
  59. background:url(../images/vesta-logo.png) no-repeat;
  60. }
  61. .settings{
  62. float:right;
  63. padding-left:28px;
  64. background:url(../images/vesta-italic-logo.png) no-repeat 0 50%;
  65. }
  66. .settings .service-item{
  67. color:#cddce3;
  68. }
  69. .settings .settings-item,
  70. .extra-services .service-item{
  71. float:left;
  72. display:block;
  73. margin:0 10px 0;
  74. font-size:11px;
  75. line-height:25px;
  76. text-transform:uppercase;
  77. }
  78. .settings .item-title,
  79. .extra-services .item-title{
  80. color:#b3b051;
  81. text-decoration:none;
  82. border-bottom:1px dashed #b3b051;
  83. }
  84. .settings a.item-title:hover{
  85. color:#fefda0;
  86. text-decoration:none;
  87. }
  88. .settings a.item-title:active{
  89. color:#E16734;
  90. text-decoration:none;
  91. }
  92. /*.settings .logged-as{
  93. color:#fefda0;
  94. text-transform:none;
  95. border:none;
  96. }*/
  97. .extra-services{
  98. float:right;
  99. margin-right:90px;
  100. }
  101. .extra-services .service-item{
  102. position:relative;
  103. margin:0;
  104. padding:0 10px;
  105. line-height:26px;
  106. }
  107. .extra-services .item-devider{
  108. position:absolute;
  109. top:-3px;
  110. left:0;
  111. width:100%;
  112. height:3px;
  113. }
  114. .extra-services .item-title{
  115. color:#cbdde1;
  116. border-bottom:1px dashed #72736d;
  117. }
  118. .extra-services .service-item_backups .item-title{
  119. padding-left:22px;
  120. background:url(../images/backup-ico.png) no-repeat 0 50%;
  121. }
  122. .extra-services .active{
  123. cursor:default;
  124. background:#333;
  125. }
  126. .extra-services .service-item:hover{
  127. cursor:pointer;
  128. background:#333;
  129. }
  130. .extra-services .service-item:hover .item-title,
  131. .extra-services .active .item-title{
  132. color:#fff997;
  133. border:none;
  134. }
  135. .extra-services .service-item:hover .item-devider,
  136. .extra-services .active .item-devider{
  137. background:#ff6766;
  138. }
  139. /*Remove button padding in FF*/
  140. input::-moz-focus-inner{
  141. border: 0;
  142. padding: 0;
  143. }
  144. .cc:after{
  145. content: ".";
  146. display: block;
  147. height: 0;
  148. clear: both;
  149. visibility: hidden;
  150. }
  151. .hidden{
  152. display:none !important;
  153. }
  154. /* Navigation
  155. - - - - - - - - - - - - - - - - - - - - */
  156. #primary-nav-box{
  157. clear:both;
  158. height:115px;
  159. background-color:#ecf3d2;
  160. }
  161. .primary-nav{}
  162. .primary-nav .section{
  163. position:relative;
  164. float:left;
  165. display:block;
  166. padding-right:1px;
  167. background:url(../images/nav-devider-2.png) no-repeat 100% 50%;
  168. }
  169. .primary-nav .last-section{
  170. background:none;
  171. padding:0;
  172. }
  173. .section .section-inner{
  174. width:130px;
  175. min-height:100px;
  176. height:auto !important;
  177. height:100px;
  178. padding:15px 0 3px 6px;
  179. padding:15px 0 0 6px;
  180. }
  181. .primary-nav .last-section .section-inner{
  182. width:133px;
  183. width:127px;
  184. }
  185. .section .section-title{
  186. position:absolute;
  187. left:7px;
  188. bottom:9px;
  189. font-family:Arial, Helvetica, sans-serif;
  190. font-size:15px;
  191. line-height:1.2;
  192. font-weight:bold;
  193. text-transform:uppercase;
  194. color:#393939;
  195. color:#33342e;
  196. }
  197. .section .section-title .to-section{
  198. float:left;
  199. margin-right:4px;
  200. }
  201. .section .section-title .add-entry{
  202. position:relative;
  203. top:2px;
  204. float:left;
  205. display:block;
  206. width:14px;
  207. height:14px;
  208. background:url(../images/plus-sprite1.png) no-repeat;
  209. font-size:0;
  210. line-height:0;
  211. }
  212. .section .section-title .add-entry:hover{
  213. background-position:-14px 0;
  214. cursor:pointer;
  215. }
  216. .section .section-devider{
  217. position:absolute;
  218. left:0;
  219. bottom:0;
  220. z-index:10;
  221. /*background:url(../images/section-status-sprite-5.gif) no-repeat -420px 115px; */
  222. display:block;
  223. width:100%;
  224. height:3px;
  225. background:url(../images/section-status-sprite-6.png) no-repeat -420px 100%;
  226. }
  227. .dnstpl-nav-item .section-title{
  228. background-position:100% 85%;
  229. }
  230. .section .def{
  231. display:block;
  232. font-family:Arial, Helvetica, sans-serif;
  233. font-size:12px;
  234. color:#8c9c91;
  235. }
  236. .section:hover .section-inner{
  237. background-color:#F1F7D6;
  238. color:#000;
  239. cursor:pointer;
  240. }
  241. .section:hover .section-devider{
  242. background-position:0 100%;
  243. }
  244. .section:hover .section-title{
  245. color:#000;
  246. }
  247. .primary-nav .active .section-inner{
  248. cursor:default;
  249. }
  250. .primary-nav .active .section-devider{
  251. background-position:-140px 100%;
  252. height:5px;
  253. bottom:-2px;
  254. }
  255. .primary-nav .active .def{
  256. color:#8c9c91;
  257. }
  258. .primary-nav .active .section-title{
  259. color:#393939;
  260. }
  261. #console{
  262. position:relative;
  263. clear:both;
  264. height:70px;
  265. background-color:#a09d98;
  266. background:#535049 url(../images/console-box-bg.png) repeat-x;
  267. border-bottom:1px solid #7a7967;
  268. z-index:1;
  269. }
  270. .b-console{
  271. position:absolute;
  272. left:50%;
  273. }
  274. .b-console-wrap{
  275. position:relative;
  276. right:50%;
  277. width:655px;
  278. padding:10px 15px 16px 25px;
  279. background:url(../images/console-bg.png) repeat;
  280. border-radius: 0 0 5px 5px;
  281. -moz-border-radius: 0 0 5px 5px;
  282. -webkit-border-top-right-radius: 0;
  283. -webkit-border-top-left-radius: 0;
  284. -webkit-border-bottom-right-radius: 5px;
  285. -webkit-border-bottom-left-radius: 5px;
  286. }
  287. .b-console-form{}
  288. .b-console-field{
  289. float:left;
  290. width:548px;
  291. margin-right:15px;
  292. padding:5px 10px;
  293. border:2px solid #42647f;
  294. font-family:Arial, Helvetica, sans-serif;
  295. font-size:18px;
  296. font-style:italic;
  297. font-weight:bold;
  298. color:#aaa;
  299. }
  300. .b-console-field:focus{
  301. -moz-box-shadow:0 0 8px rgba(82, 168, 236, 0.5);
  302. -webkit-box-shadow:0 0 8px rgba(82, 168, 236, 0.5);
  303. border-color:rgba(82, 168, 236, 0.75) !important;
  304. color:#333;
  305. }
  306. .b-console-btn{
  307. float:left;
  308. overflow:visible;
  309. height:30px;
  310. margin:4px 0 0;
  311. padding:0 20px;
  312. -webkit-border-radius:4px;
  313. -moz-border-radius:4px;
  314. border-radius:4px;
  315. border:0 none;
  316. background-color:#fdcd00;
  317. color:#4b3600;
  318. font-size:13px;
  319. font-family:Arial, Helvetica, sans-serif;
  320. font-weight:bold;
  321. line-height:30px;
  322. text-transform:uppercase;
  323. cursor:pointer;
  324. /* a little animation effect on hover for -webkit- */
  325. -webkit-transition-property: background;
  326. -webkit-transition-duration: 150ms;
  327. -webkit-transition-timing-function: ease-in-out;
  328. }
  329. .b-console-btn:focus{
  330. position:relative;
  331. top:1px;
  332. }
  333. .b-console-btn:hover{
  334. background-color:#ffe84c;
  335. color:#39351c;
  336. }
  337. .b-console-btn:active{
  338. background-color:#333;
  339. color:#fff;
  340. }
  341. .b-console-statuses{
  342. margin-top:15px;
  343. }
  344. .b-console-status{
  345. position:relative;
  346. padding:5px 80px 5px 10px;
  347. border:2px dashed #999;
  348. background-color:#feff99;
  349. color:#666;
  350. font-size:12px;
  351. }
  352. .b-console-status-message{
  353. float:left;
  354. color:#666;
  355. }
  356. .b-console-status-action{
  357. float:right;
  358. margin-right:-36px;
  359. text-decoration:underline;
  360. }
  361. .b-console-status-message b{
  362. font-weight:bold;
  363. color:#333;
  364. }
  365. .b-console-status-arrow{
  366. position:absolute;
  367. top:10px;
  368. right:12px;
  369. display:block;
  370. width:14px;
  371. height:8px;
  372. background:url(../images/status-arrow.png) no-repeat;
  373. }
  374. #actions-toolbar{
  375. clear:both;
  376. position:relative;
  377. /*padding:15px 20px 15px 280px;*/
  378. padding:15px 20px 15px 250px;
  379. background-color:#f3f3d9;
  380. border-bottom:1px solid #c9cbc8;
  381. }
  382. .add-domain,
  383. .add-btn{
  384. position:relative;
  385. top:2px;
  386. float:left;
  387. /*margin:0 0 0 -260px;*/
  388. margin:0 0 0 -230px;
  389. border-bottom:1px solid #b5c968;
  390. font-family:Georgia, "Times New Roman", Times, serif;
  391. font-size:16px;
  392. line-height:1;
  393. text-transform:uppercase;
  394. color:#66685d;
  395. text-decoration:none;
  396. }
  397. .add-domain .icon,
  398. .add-btn-icon{
  399. float:left;
  400. display:block;
  401. width:11px;
  402. height:11px;
  403. margin:4px 5px 0 0;
  404. background:url(../images/add-entry-plus.gif) no-repeat;
  405. font-size:0;
  406. line-height:0;
  407. }
  408. .add-btn:hover{
  409. color:#000;
  410. border-bottom-color:#b85152;
  411. }
  412. .add-btn:active{
  413. color:#b85152;
  414. border-bottom-color:#000;
  415. }
  416. .select-all{
  417. padding:0 40px 0 0;
  418. font-size:13px;
  419. color:#7f7e6c;
  420. text-decoration:underline;
  421. cursor:pointer;
  422. }
  423. .select-all:hover{
  424. text-decoration:none;
  425. }
  426. .clear-selected{
  427. font-size:11px;
  428. line-height:10px;
  429. text-transform:uppercase;
  430. color:#bcb6a6;
  431. cursor:pointer;
  432. letter-spacing:0.2px;
  433. border-bottom:1px solid #bcb6a6;
  434. }
  435. .clear-selected:hover{
  436. color:#000;
  437. border-bottom-color:#b85152;
  438. }
  439. .clear-selected:active{
  440. color:#b85152;
  441. border-bottom-color:#000;
  442. }
  443. .db-manager{
  444. float:right;
  445. margin:5px 0 0 25px;
  446. font-size:11px;
  447. line-height:1.273; /*14px*/
  448. text-transform:uppercase;
  449. letter-spacing:0.2px;
  450. border-bottom:1px solid #bcb6a6;
  451. text-decoration:none;
  452. color:#9b9b8f;
  453. }
  454. .db-manager .highlighted{
  455. font-style:normal;
  456. font-weight:bold;
  457. color:#4097b3;
  458. }
  459. .db-manager:hover{
  460. color:#4097b3;
  461. border-bottom-color:#b85152;
  462. }
  463. .db-manager:active{
  464. color:#b85152;
  465. border-bottom-color:#4097b3;
  466. }
  467. .db-manager:active .highlighted{
  468. color:#b85152;
  469. }
  470. /* Row filters */
  471. .row-filters{}
  472. .b-row-selector{
  473. float:left;
  474. width:240px;
  475. }
  476. .b-row-selector .checkbox-selector{
  477. position:relative;
  478. top:4px;
  479. margin-right:20px;
  480. }
  481. .b-row-selector .b-cust-sel{
  482. width:100px;
  483. }
  484. .checkbox-selector,
  485. .context-actions{
  486. display:-moz-inline-stack;
  487. display: inline-block;
  488. zoom: 1;
  489. *display: inline;
  490. vertical-align:top;
  491. }
  492. .checkbox-selector .checkbox{
  493. display:block;
  494. float:left;
  495. width:11px;
  496. height:11px;
  497. margin:2px 5px 0 0;
  498. background:url(../images/chekbox-selector.png) no-repeat;
  499. cursor:pointer;
  500. }
  501. .checkbox-selector .selector-title{
  502. float:left;
  503. font-size:11px;
  504. line-height:15px;
  505. text-transform:uppercase;
  506. color:#5d5d5d;
  507. cursor:pointer;
  508. white-space:nowrap;
  509. }
  510. .checkbox-selector .selector-title:hover{
  511. color:#2ea8bd;
  512. }
  513. .checkbox-selector .selector-title:active{
  514. color:#fc0;
  515. }
  516. /* Custom select */
  517. .b-cust-sel{
  518. position: relative;
  519. font-size: 12px;
  520. background-color: #fff;
  521. /* background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.5, white));
  522. background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, white 50%);
  523. background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, white 50%);
  524. background-image: -o-linear-gradient(top, #eeeeee 0%,#ffffff 50%);
  525. background-image: -ms-linear-gradient(top, #eeeeee 0%,#ffffff 50%);
  526. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff',GradientType=0 );
  527. background-image: linear-gradient(top, #eeeeee 0%,#ffffff 50%);
  528. -moz-background-clip : padding;
  529. -webkit-background-clip: padding-box;
  530. background-clip : padding-box;
  531. */
  532. box-shadow: inset 1px 1px 4px 0px rgba(0, 0, 0, 0.10);
  533. -moz-box-shadow: inset 1px 1px 4px 0px rgba(0, 0, 0, 0.10);
  534. -webkit-box-shadow: inset 1px 1px 4px 0px rgba(0, 0, 0, 0.10);
  535. border: 1px solid #c5c4bf;
  536. display: block;
  537. white-space: nowrap;
  538. position: relative;
  539. height: 20px;
  540. line-height: 20px;
  541. padding: 0 0 0 8px;
  542. color: #616161;
  543. }
  544. .b-cust-sel .title{
  545. margin-right: 26px;
  546. display: block;
  547. overflow: hidden;
  548. white-space: nowrap;
  549. -o-text-overflow: ellipsis;
  550. -ms-text-overflow: ellipsis;
  551. text-overflow: ellipsis;
  552. }
  553. .cust-sel-arrow{
  554. -moz-background-clip : padding;
  555. -webkit-background-clip: padding-box;
  556. background-clip : padding-box;
  557. background: #ccc;
  558. /* background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
  559. background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  560. background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  561. background-image: -o-linear-gradient(bottom, #ccc 0%, #eee 60%);
  562. background-image: -ms-linear-gradient(top, #cccccc 0%,#eeeeee 60%);
  563. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cccccc', endColorstr='#eeeeee',GradientType=0 );
  564. background-image: linear-gradient(top, #cccccc 0%,#eeeeee 60%);
  565. */
  566. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.6, #f5f4ef));
  567. background-image: -webkit-linear-gradient(center bottom, #fff 0%, #f5f4ef 60%);
  568. background-image: -moz-linear-gradient(center bottom, #fff 0%, #f5f4ef 60%);
  569. background-image: -o-linear-gradient(bottom, #fff 0%, #f5f4ef 60%);
  570. background-image: -ms-linear-gradient(top, #cccccc 0%,#f5f4ef 60%);
  571. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cccccc', endColorstr='#f5f4ef',GradientType=0 );
  572. background-image: linear-gradient(top, #cccccc 0%,#f5f4ef 60%);
  573. border-left: 1px solid #c5c4bf;
  574. position: absolute;
  575. right: 0;
  576. top: 0;
  577. display: block;
  578. height: 100%;
  579. width: 21px;
  580. }
  581. .cust-sel-arrow i{
  582. display: block;
  583. width: 100%;
  584. height: 100%;
  585. background:url(../images/custom-arrow.png) no-repeat 50% 50%;
  586. }
  587. .b-cust-sel .cust-sel-options{
  588. position:absolute;
  589. top:21px;
  590. left:-1px;
  591. width:100%;
  592. padding:5px 0 2px;
  593. border:solid #C5C4BF;
  594. border-width:0 1px 1px;
  595. background:#fff;
  596. z-index:100;
  597. }
  598. .b-cust-sel .cust-sel-option{
  599. padding:0 0 4px 18px;
  600. background:url(../images/cust-option-bullets.png) no-repeat 5px 7px;
  601. color:#828282;
  602. cursor:pointer;
  603. }
  604. .b-cust-sel .cust-sel-option:hover{
  605. color:#333;
  606. }
  607. .b-cust-sel .ico_gray{
  608. background-position:5px 7px;
  609. }
  610. .b-cust-sel .ico_green{
  611. background-position:5px -35px;
  612. }
  613. .b-cust-sel .ico_red{
  614. background-position:5px -79px;
  615. }
  616. .domain-groups-selector{
  617. float:left;
  618. width:270px;
  619. }
  620. #content{
  621. padding:8px 0 50px;
  622. background:#fff url(../images/content-separator.png) repeat-x;
  623. }
  624. .b-ext-info-wrap{
  625. position:relative;
  626. min-height:40px;
  627. }
  628. .b-ext-info{
  629. margin:0 0 6px;
  630. padding:10px 25px 15px;
  631. background:#ddd;
  632. font-size:12px;
  633. color:#000;
  634. text-shadow: 0px 1px 1px #fff;
  635. }
  636. .b-ext-info-btn{
  637. position:relative;
  638. left:-1px;
  639. width:102px;
  640. height:15px;
  641. margin-left:-50px;
  642. margin:-6px auto 0;
  643. background-color:#fff;
  644. cursor:pointer;
  645. }
  646. .b-ext-info-wrap_collapsed .b-ext-info-btn{
  647. background:url(../images/more-info-btn.png) no-repeat;
  648. }
  649. .content-inner{
  650. background-color:#fff;
  651. padding:0 15px 15px;
  652. }
  653. /*
  654. .domains{
  655. border-bottom:1px solid #333;
  656. background-color:#fff;
  657. }
  658. .domains .item{
  659. position:relative;
  660. padding:0 20px;
  661. background:url(../images/long-dotted-bg.gif) repeat-x;
  662. }
  663. .domains .first{
  664. margin:0;
  665. background:none;
  666. }
  667. .item .view{
  668. padding:15px 0 10px;
  669. }
  670. .item .ip-box{
  671. float:left;
  672. width:150px;
  673. padding-top:12px;
  674. }
  675. .ip-box .ip{
  676. font-size:1.1em; /*11px*
  677. line-height:21px;
  678. font-weight:normal;
  679. letter-spacing:.175em;
  680. }
  681. .ip-box .owner{
  682. display:block;
  683. font-size:1.2em;
  684. color:#999;
  685. }
  686. .details .names .primary{
  687. font-size:20px;
  688. font-family:Georgia, "Times New Roman", Times, serif;
  689. font-weight:normal;
  690. font-style:normal;
  691. color:#000; /* radikal'no cherniy, da! *
  692. }
  693. .names .divider{
  694. font-size:12px;
  695. line-height:2;
  696. text-transform:uppercase;
  697. color:#999;
  698. }
  699. .names .domain-name{
  700. padding:0 10px;
  701. font-size:12px;
  702. line-height:2;
  703. font-style:italic;
  704. color:#999;
  705. white-space:nowrap;
  706. }
  707. .item .details{
  708. margin-left:150px;
  709. }
  710. .item .details .status{
  711. float:right;
  712. width:60%;
  713. margin:5px 20px 0 0;
  714. color:#999;
  715. }
  716. .details .status .logging{
  717. float:left;
  718. }
  719. .logging .err-log,
  720. .logging .log,
  721. .logging .stats{
  722. float:left;
  723. display:inline;
  724. margin:0 20px 0 0;
  725. padding-right:25px;
  726. background:url(../images/logging-status-sprite.png) no-repeat -100% -100%;
  727. }
  728. .logging .off{
  729. background-position:100% 0;
  730. }
  731. .logging .on{
  732. background-position:100% 100%;
  733. }
  734. .logging .stats{
  735. margin-right:10px;
  736. }
  737. .logging .stat-auth{
  738. float:left;
  739. display:inline;
  740. margin:0 10px 0 0;
  741. border-bottom:1px solid #9bcad0;
  742. color:#999;
  743. cursor:pointer;
  744. }
  745. .details .status .params{
  746. float:right;
  747. }
  748. .params .memory,
  749. .params .t,
  750. .params .max-weight,
  751. .params .upload-weight{
  752. float:left;
  753. display:inline;
  754. margin-right:25px;
  755. }
  756. .memory{}
  757. .memory dl{
  758. overflow:hidden;
  759. margin-bottom:2px;
  760. }
  761. .memory dt{
  762. float:left;
  763. width:15px;
  764. }
  765. .memory dd{
  766. float:left;
  767. }
  768. .memory .usage{}
  769. .memory .usage .value{
  770. float:left;
  771. width:30px;
  772. }
  773. .memory .usage .divider{
  774. padding-right:2px;
  775. }
  776. .memory .usage .max{
  777. font-weight:bold;
  778. border-bottom:1px solid #9bcad0;
  779. cursor:pointer;
  780. }
  781. .memory .graph{
  782. clear:both;
  783. position:relative;
  784. border:1px solid #ccc;
  785. font-size:0;
  786. line-height:0;
  787. }
  788. .memory .graph .bar{
  789. position:relative;
  790. display:block;
  791. height:2px;
  792. }
  793. .critical .bar{
  794. background-color:#f00;
  795. }
  796. .middle .bar{
  797. background-color:#ff9934;
  798. }
  799. .low .bar{
  800. background-color:#acd45a;
  801. }
  802. .params .upload-weight{
  803. margin:0;
  804. }
  805. .t .value,
  806. .max-weight .value,
  807. .upload-weight .value{
  808. border-bottom:1px solid #9bcad0;
  809. cursor:pointer;
  810. }
  811. .item .close{
  812. position:absolute;
  813. top:30px;
  814. right:20px;
  815. display:block;
  816. width:16px;
  817. height:16px;
  818. background:url(../images/sprite.png) no-repeat;
  819. cursor:pointer;
  820. }
  821. .item .close:hover{
  822. background-position:-16px 0;
  823. }
  824. */
  825. /* row hover effect
  826. - - - - - - - - - - - - - - - - - - - */
  827. /*
  828. .domains .item:hover{
  829. background-color:#ffffcb;
  830. }
  831. .item:hover .names .primary{
  832. cursor:pointer;
  833. border-bottom:1px dotted #ccc;
  834. }
  835. .item:hover .logging .err-log,
  836. .item:hover .logging .log,
  837. .item:hover .logging .stats,
  838. .item:hover .memory dt,
  839. .item:hover .memory .divider,
  840. .item:hover .params .title{
  841. color:#98bc65;
  842. }
  843. .item:hover .logging .stat-auth,
  844. .item:hover .memory .max,
  845. .item:hover .t .value,
  846. .item:hover .max-weight .value,
  847. .item:hover .upload-weight .value{
  848. color:#333;
  849. }
  850. */
  851. /* Edit
  852. - - - - - - - - - - - - - - - - - - - */
  853. /*
  854. .edit{
  855. position:relative;
  856. clear:both;
  857. margin:0 -20px;
  858. padding:15px 20px 10px;
  859. border-top:2px solid #999;
  860. background-color:#ffffcb;
  861. }
  862. .change-ip-box{
  863. margin:0 0 20px;
  864. }
  865. .edit .ip-details{
  866. float:left;
  867. margin-right:20px;
  868. }
  869. .change-ip{
  870. width:140px;
  871. padding:3px 5px;
  872. border:2px solid #9bcad0;
  873. font-size:16px;
  874. }
  875. .ip-details .created{
  876. display:block;
  877. margin:5px 0 0;
  878. font-size:12px;
  879. }
  880. .change-domain-name{
  881. width:360px;
  882. padding:3px 5px;
  883. border:2px solid #9bcad0;
  884. font-size:16px;
  885. font-weight:bold;
  886. }
  887. .edit .domain-name{
  888. font-size:20px;
  889. font-family:Georgia, "Times New Roman", Times, serif;
  890. font-weight:normal;
  891. font-style:normal;
  892. color:#000; /* radikal'no cherniy, da! *
  893. white-space:nowrap;
  894. line-height:2;
  895. }
  896. .change-logs-box{
  897. float:left;
  898. width:170px;
  899. margin-right:50px;
  900. padding-left:180px;
  901. }
  902. .ownership{
  903. display:inline;
  904. float:left;
  905. width:160px;
  906. margin:0 0 0 -180px;
  907. font-size:12px;
  908. }
  909. .ownership .owner{
  910. display:block;
  911. font-size:16px;
  912. font-weight:bold;
  913. font-style:italic;
  914. }
  915. .change-logs{
  916. padding-top:5px;
  917. }
  918. .change-logs label{
  919. display:block;
  920. margin:0 0 9px;
  921. }
  922. .change-logs .last{
  923. margin:0;
  924. }
  925. .change-logs .title{
  926. display:block;
  927. float:left;
  928. width:70px;
  929. font-size:14px;
  930. }
  931. .change-logs .title b{
  932. font-weight:bold;
  933. }
  934. .change-logs .checkbox{
  935. margin:3px 0 0;
  936. border:2px solid #9bcad0;
  937. }
  938. .change-logs .stat-auth{
  939. position:relative;
  940. top:-3px;
  941. left:10px;
  942. border-bottom:1px solid #9BCAD0;
  943. cursor:pointer;
  944. }
  945. .change-memory{
  946. float:left;
  947. width:150px;
  948. padding-top:5px;
  949. font-size:14px;
  950. }
  951. .change-memory dl{
  952. margin-bottom:13px;
  953. }
  954. .change-memory .value{
  955. padding:0 5px;
  956. font-style:italic;
  957. font-weight:bold;
  958. color:#6b930f;
  959. }
  960. .change-memory .amount{
  961. margin-top:7px;
  962. }
  963. .change-memory .amount .max{
  964. width:50px;
  965. margin-left:10px;
  966. padding:2px 5px;
  967. border:2px solid #9bcad0;
  968. text-align:right;
  969. }
  970. .change-memory .graph{
  971. clear:both;
  972. position:relative;
  973. border:1px solid #9c9c82;
  974. font-size:0;
  975. line-height:0;
  976. }
  977. .change-memory .graph .bar{
  978. position:relative;
  979. display:block;
  980. height:2px;
  981. }
  982. .change-params{
  983. float:right;
  984. font-size:14px;
  985. }
  986. .change-params li{
  987. margin-top:5px;
  988. overflow:hidden;
  989. }
  990. .change-params .title{
  991. float:left;
  992. width:165px;
  993. }
  994. .change-params .param-value{
  995. width:30px;
  996. margin-right:5px;
  997. padding:1px 5px;
  998. border:2px solid #9bcad0;
  999. text-align:right;
  1000. }
  1001. .aliases{
  1002. position:relative;
  1003. padding-top:20px;
  1004. margin-bottom:20px;
  1005. }
  1006. .aliases .title{
  1007. float:left;
  1008. display:block;
  1009. margin-right:20px;
  1010. padding-top:3px;
  1011. font-size:17px;
  1012. }
  1013. .aliases .hint{
  1014. position:absolute;
  1015. top:-15px;
  1016. left:78px;
  1017. font-style:italic;
  1018. color:#999;
  1019. }
  1020. .aliases-list{
  1021. width:90%;
  1022. padding:3px 5px;
  1023. border:2px solid #9bcad0;
  1024. font-size:16px;
  1025. }
  1026. .buttons{}
  1027. .buttons .apply{
  1028. width:auto;
  1029. overflow:visible;
  1030. padding:4px 20px 3px 17px;
  1031. background-color:#feff99;
  1032. border:1px solid #728b25;
  1033. font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
  1034. font-size:120%;
  1035. font-weight:bold;
  1036. text-transform:uppercase;
  1037. line-height:130%;
  1038. color:#6b9e05;
  1039. cursor:pointer;
  1040. float:right;
  1041. }
  1042. .buttons .devider{
  1043. text-transform:uppercase;
  1044. float:right;
  1045. display:block;
  1046. line-height:24px;
  1047. margin:0 10px;
  1048. }
  1049. .buttons .cancel{
  1050. float:right;
  1051. width:auto;
  1052. height:20px;
  1053. padding:0;
  1054. border:0 none;
  1055. background:none;
  1056. color:#e09462;
  1057. text-decoration:underline;
  1058. cursor:pointer;
  1059. }
  1060. .hidden{
  1061. display:none;
  1062. }
  1063. .edit .iSelected{ /* descendant selector for more specific style context *
  1064. border-color:#59B4FF; /* blue border on focused input *
  1065. font-weight:bold;
  1066. }
  1067. .edit .not-valid{ /* descendant selector for more specific style context *
  1068. border-color:#f00; /* RED border on error field *
  1069. }
  1070. .edit .edit-help{
  1071. padding-bottom:1px;
  1072. font-family:Arial, Helvetica, sans-serif;
  1073. font-size:14px;
  1074. color:#a0a094;
  1075. text-decoration:none;
  1076. text-transform:uppercase;
  1077. border-bottom:1px solid #b5b59b;
  1078. }
  1079. .edit .delete{
  1080. position:absolute;
  1081. top:15px;
  1082. right:25px;
  1083. padding:3px 25px 3px 2px;
  1084. font-family:Arial, Helvetica, sans-serif;
  1085. font-size:14px;
  1086. color:#a0a094;
  1087. text-transform:uppercase;
  1088. background:url(../images/delete.gif) no-repeat 100% 50%;
  1089. cursor:pointer;
  1090. }
  1091. .edit .delete .title{
  1092. padding-bottom:1px;
  1093. border-bottom:1px solid #b5b59b;
  1094. }
  1095. */
  1096. /* IP list
  1097. - - - - - - - - - - - - - - - - - - - - */
  1098. #content{
  1099. padding-bottom:0;
  1100. }
  1101. .ip-list{}
  1102. .row{
  1103. padding-top:10px;
  1104. padding:10px 10px 15px 10px;
  1105. /* min-height:125px;
  1106. min-height:110px;*/
  1107. background:url(../images/long-dotted-bg.gif) repeat-x;
  1108. }
  1109. .first-row{
  1110. background-image:none;
  1111. }
  1112. .row-meta{
  1113. float:left;
  1114. width:150px;
  1115. }
  1116. .row-details{
  1117. margin-left:150px;
  1118. /* background:#e0e0e0;*/
  1119. }
  1120. .row-actions-box{
  1121. /* margin:0 0 5px;*/
  1122. }
  1123. .row-actions-box .check-this,
  1124. .row-actions-box .check-control{
  1125. float:left;
  1126. width:10px;
  1127. height:10px;
  1128. margin-top:4px;
  1129. /* background:url(../images/logging-status-sprite.png) no-repeat;*/
  1130. background:url(../images/check-row-sprite.png) no-repeat;
  1131. background:url(../images/check-row-sprite_.png) no-repeat;
  1132. }
  1133. .row-actions-box .check-control:hover{
  1134. cursor:pointer;
  1135. background-position:0 -89px;
  1136. }
  1137. .row-actions-box .row-operations{
  1138. float:right;
  1139. }
  1140. .ip-status-info{
  1141. position:relative;
  1142. display:block;
  1143. float:left;
  1144. margin-right:25px;
  1145. padding-right:15px;
  1146. font-size:12px;
  1147. }
  1148. .ip-status-info .ip-status-text{
  1149. visibility:hidden;
  1150. }
  1151. .row .ip-suspended-status{
  1152. margin-right:78px;
  1153. background:url(../images/suspended-ico.png) no-repeat 100% 65%;
  1154. }
  1155. .row .ip-suspended-status .ip-status-text{
  1156. text-transform:uppercase;
  1157. color:#333;
  1158. font-size:10px;
  1159. visibility:visible;
  1160. }
  1161. .delete-entry{
  1162. position:relative;
  1163. top:2px;
  1164. display:block;
  1165. float:left;
  1166. padding-right:15px;
  1167. font-size:11px;
  1168. text-transform:uppercase;
  1169. }
  1170. .delete-entry .delete-entry-text{
  1171. visibility:hidden;
  1172. }
  1173. .entry-created{
  1174. padding-top:7px;
  1175. font-size:11px;
  1176. color:#6f6f6f;
  1177. }
  1178. .props-main{
  1179. float:left;
  1180. width:425px;
  1181. /* background:#eee;*/
  1182. }
  1183. .props-main .prop-box{
  1184. margin-bottom:15px;
  1185. }
  1186. .props-additional{
  1187. float:left;
  1188. width:200px;
  1189. padding:5px 10px 0 0;
  1190. /* background:#ccc;*/
  1191. }
  1192. .props-ext{
  1193. float:right;
  1194. width:120px;
  1195. padding-top:5px;
  1196. /* background:#d5d5d5;*/
  1197. }
  1198. .ip-adr-box,
  1199. .user-wrap{
  1200. margin:0 0 5px;
  1201. }
  1202. .ip-adr{
  1203. display:-moz-inline-stack;
  1204. display:inline-block;
  1205. vertical-align:top;
  1206. font-size:22px;
  1207. line-height:1;
  1208. font-weight:normal;
  1209. letter-spacing:0.5px;
  1210. }
  1211. .ip-adr:active,
  1212. .ip-adr:focus{
  1213. color:#9fb749;
  1214. }
  1215. .ip-adr .dot{
  1216. padding:0 3px;
  1217. }
  1218. .ip-list .ip-adr{
  1219. border-bottom:1px solid #fff;
  1220. }
  1221. .username-box .user{
  1222. display:-moz-inline-stack;
  1223. display:inline-block;
  1224. vertical-align:top;
  1225. margin-right:10px;
  1226. }
  1227. .username-box .nickname{
  1228. display:-moz-inline-stack;
  1229. display:inline-block;
  1230. vertical-align:top;
  1231. margin-right:5px;
  1232. font-size:20px;
  1233. line-height:25px;
  1234. font-family:Arial, Helvetica, sans-serif;
  1235. color:#000;
  1236. }
  1237. .username-box .role{
  1238. display:-moz-inline-stack;
  1239. display:inline-block;
  1240. vertical-align:top;
  1241. position:relative;
  1242. top:2px;
  1243. font-size:12px;
  1244. line-height:25px;
  1245. color:#777;
  1246. }
  1247. .prop-box{
  1248. display:-moz-inline-stack;
  1249. display:inline-block;
  1250. vertical-align:top;
  1251. min-width:40%;
  1252. /* width:auto !important;
  1253. width:40%;*/
  1254. margin:0 0 3px;
  1255. font-size:10px;
  1256. }
  1257. .prop-title{
  1258. text-transform:uppercase;
  1259. color:#9c9c9c;
  1260. font-size:9px;
  1261. line-height:15px;
  1262. }
  1263. .prop-value{
  1264. padding-left:3px;
  1265. font-size:12px;
  1266. color:#777;
  1267. }
  1268. .prop-value-collapsed-childs{
  1269. padding-right:15px;
  1270. background:url(../images/group-values-collapsed.png) no-repeat 100% 5px;
  1271. cursor:pointer;
  1272. }
  1273. .show-records{
  1274. display:inline-block;
  1275. padding-right:15px;
  1276. border-bottom:1px solid #c9cabc;
  1277. background:url(../images/show-records-ico.png) no-repeat 100% 50%;
  1278. text-transform:uppercase;
  1279. line-height:13px;
  1280. cursor:pointer;
  1281. }
  1282. .hide-records{
  1283. display:inline-block;
  1284. padding-right:15px;
  1285. border-bottom:1px solid #c9cabc;
  1286. background:url(../images/hide-records-ico.png) no-repeat 100% 50%;
  1287. text-transform:uppercase;
  1288. line-height:13px;
  1289. cursor:pointer;
  1290. }
  1291. .prop-box_group-values{
  1292. display:block;
  1293. }
  1294. .prop-box_group-values .prop-title{
  1295. float: left;
  1296. margin:2px 0 0;
  1297. }
  1298. .prop-box_group-values .group-values{
  1299. float:left;
  1300. margin-left:3px;
  1301. }
  1302. .group-values .prop-value{
  1303. display:block;
  1304. }
  1305. .group-values__bullet .prop-value{
  1306. padding-left:15px;
  1307. background:url(../images/group-value-bullet.png) no-repeat 5px 8px;
  1308. }
  1309. .group-values .group-switcher{
  1310. padding-right:15px;
  1311. background:url(../images/group-values-collapsed.png) no-repeat 100% 4px;
  1312. }
  1313. .group-values .group-values-count{
  1314. font-size:12px;
  1315. font-style:italic;
  1316. color:#cdcdcd;
  1317. border-bottom:1px solid #c9cac4;
  1318. cursor:pointer;
  1319. }
  1320. .props-additional .owner-box{
  1321. padding-left:45px;
  1322. }
  1323. .props-additional .owner-box .prop-title{
  1324. float:left;
  1325. display:inline;
  1326. margin:2px 0 0 -45px;
  1327. }
  1328. .props-additional .owner-box .prop-value{
  1329. padding:0;
  1330. }
  1331. .ip-list .ip-name-box{
  1332. margin:0 0 3px;
  1333. }
  1334. /* Entry adding form
  1335. - - - - - - - - - - - - - - - - - - - */
  1336. .b-new-entry{
  1337. margin-top:25px;
  1338. border-style:solid;
  1339. border-width:2px 1px 1px;
  1340. border-color:#999 #ccc #ccc #ccc;
  1341. background-color:#ffffcb;
  1342. }
  1343. .b-new-entry .entry-header{
  1344. margin:0 0 10px;
  1345. padding:8px 15px 9px;
  1346. border-bottom:1px solid #dcdbab;
  1347. font-size:16px;
  1348. font-family:Georgia, "Times New Roman", Times, serif;
  1349. text-transform:uppercase;
  1350. color:#747668;
  1351. }
  1352. .b-new-entry .form-row{
  1353. position:relative;
  1354. padding:10px 15px;
  1355. }
  1356. .b-new-entry .field-label,
  1357. .b-new-entry .row-header{
  1358. float:left;
  1359. width:180px;
  1360. font-size:15px;
  1361. line-height:2;
  1362. color:#3d504a;
  1363. }
  1364. .b-new-entry .text-field{
  1365. float:left;
  1366. width:265px;
  1367. margin:0 15px 0 0;
  1368. padding:6px 7px;
  1369. border:2px solid #b8c2c3;
  1370. color:#555;
  1371. font-family:Arial, Helvetica, sans-serif;
  1372. font-size:14px;
  1373. font-weight:bold;
  1374. }
  1375. .b-new-entry .field-label .remark{
  1376. position:relative;
  1377. top:-14px;
  1378. display:block;
  1379. font-style:italic;
  1380. font-size:14px;
  1381. color:#a3a590;
  1382. }
  1383. .b-new-entry .custom-select{}
  1384. .b-new-entry .textarea{
  1385. width:685px;
  1386. height:100px;
  1387. padding:6px 7px;
  1388. border:2px solid #b8c2c3;
  1389. color:#555;
  1390. font-family:Arial, Helvetica, sans-serif;
  1391. font-size:14px;
  1392. font-weight:bold;
  1393. }
  1394. .b-new-entry .text-field:focus,
  1395. .b-new-entry .textarea:focus{
  1396. -moz-box-shadow:0 0 8px rgba(82, 168, 236, 0.5);
  1397. -webkit-box-shadow:0 0 8px rgba(82, 168, 236, 0.5);
  1398. border-color:rgba(82, 168, 236, 0.75) !important;
  1399. color:#333;
  1400. }
  1401. .b-new-entry .ssl-crtfct-box .textarea{
  1402. margin:10px 0 0;
  1403. }
  1404. .b-new-entry .select{
  1405. position: absolute;
  1406. top:auto;
  1407. left:195px;
  1408. width: 195px;
  1409. height: 28px;
  1410. padding: 0 24px 0 8px;
  1411. color: #333;
  1412. font:bold 14px/28px arial,sans-serif;
  1413. background:#fff url(../images/select-arrow.png) no-repeat 100% 50%;
  1414. overflow: hidden;
  1415. border:2px solid #b8c2c3;
  1416. }
  1417. .b-new-entry select.styled{
  1418. top:10px;
  1419. width:230px;
  1420. }
  1421. .b-new-entry option{
  1422. font:14px arial,sans-serif;
  1423. }
  1424. .b-new-entry .form-options-group{}
  1425. .b-new-entry .group-header{
  1426. margin:12px 25px 12px 15px;
  1427. text-transform:uppercase;
  1428. color:#9c9c9c;
  1429. font-size:11px;
  1430. line-height:15px;
  1431. height:16px;
  1432. background:url(../images/dotted.gif) repeat-x 0 50%;
  1433. }
  1434. .b-new-entry .group-title-outer{
  1435. display:inline-block;
  1436. width:165px;
  1437. padding:0 15px 0 0;
  1438. line-height:16px;
  1439. text-align:right;
  1440. background:#ffffcb;
  1441. }
  1442. .b-new-entry .group-title-inner{
  1443. padding:2px 13px 2px 0;
  1444. }
  1445. .b-new-entry .group-title{
  1446. border-bottom:1px solid #FFFFCB;
  1447. }
  1448. .b-new-entry .expanded .group-title-inner{
  1449. background:#ffffcb url(../images/form-group-expanded.png) no-repeat 100% 50%;
  1450. }
  1451. .b-new-entry .collapsed .group-title-inner{
  1452. background:#ffffcb url(../images/form-group-collapsed.png) no-repeat 100% 50%;
  1453. }
  1454. .b-new-entry .group-header:hover{
  1455. cursor:pointer;
  1456. }
  1457. .b-new-entry .group-header:hover .group-title,
  1458. .b-new-entry .group-header .group-title:hover{
  1459. color:#000;
  1460. border-bottom-color:#9fb35a;
  1461. }
  1462. .b-new-entry .group-header .group-title:active{
  1463. color:#4B9427;
  1464. }
  1465. .b-new-entry .delete-record{
  1466. display: block;
  1467. position:relative;
  1468. top:11px;
  1469. float: left;
  1470. width: 11px;
  1471. height: 11px;
  1472. background: url(../images/delete-ico-off.png) no-repeat;
  1473. }
  1474. .b-new-entry .delete-record:hover{
  1475. cursor:pointer;
  1476. background-image:url(../images/delete-ico.png);
  1477. }
  1478. .b-new-entry .delete-record:active{
  1479. cursor:pointer;
  1480. background-image:url(../images/delete-ico-active.png);
  1481. }
  1482. .b-new-entry .checkbox{
  1483. display:block;
  1484. float:left;
  1485. width:18px;
  1486. height:18px;
  1487. margin:6px 0 0;
  1488. background:url(../images/checkbox-1.png) no-repeat;
  1489. }
  1490. .b-new-entry .checkbox:hover{
  1491. background-position:0 -98px;
  1492. }
  1493. .b-new-entry .stats-settings{
  1494. padding-left:40px;
  1495. }
  1496. .b-new-entry .db-credentials .field-label{
  1497. text-indent:40px;
  1498. }
  1499. /*.b-new-entry .pwd-box .text-field{
  1500. float:left;
  1501. margin:0 15px 0 0;
  1502. }*/
  1503. .b-new-entry_user .lastname-box{
  1504. margin-bottom:30px;
  1505. }
  1506. .b-new-entry_dns .dns-template-box .styled{
  1507. float:left;
  1508. margin:0 40px 0 0;
  1509. margin:0 20px 0 0;
  1510. width:230px;
  1511. cursor:pointer;
  1512. }
  1513. .b-new-entry_dns .ttl-field{
  1514. width:75px;
  1515. }
  1516. .generate-pwd,
  1517. .context-settings{
  1518. position:relative;
  1519. top:10px;
  1520. float:left;
  1521. display:block;
  1522. color:#5ea2a1;
  1523. border-bottom:1px solid #cdcea6;
  1524. text-transform:uppercase;
  1525. cursor:pointer;
  1526. font-size:11px;
  1527. line-height:1;
  1528. letter-spacing:0.5px;
  1529. }
  1530. .generate-pwd:hover,
  1531. .context-settings:hover{
  1532. color:#575757;
  1533. border-bottom-color:#b4c775;
  1534. }
  1535. .generate-pwd:active,
  1536. .context-settings:active{
  1537. color:#b4c775;
  1538. }
  1539. .b-new-entry .add-ns{
  1540. display:inline-block;
  1541. margin-left:180px;
  1542. font-family:Georgia, "Times New Roman", Times, serif;
  1543. font-size:14px;
  1544. line-height:1;
  1545. text-transform:uppercase;
  1546. color:#66685d;
  1547. text-decoration:none;
  1548. }
  1549. .add-ns .icon{
  1550. float:left;
  1551. display:block;
  1552. width:11px;
  1553. height:11px;
  1554. margin:2px 5px 0 0;
  1555. background:url(../images/add-entry-plus.gif) no-repeat;
  1556. font-size:0;
  1557. line-height:0;
  1558. }
  1559. .add-ns .btn-title{
  1560. display:inline-block;
  1561. border-bottom:1px solid #b5c968;
  1562. }
  1563. .add-ns .btn-title:hover{
  1564. color:#000;
  1565. border-bottom-color:#b85152;
  1566. }
  1567. .add-ns .btn-title:active{
  1568. color:#b85152;
  1569. border-bottom-color:#000;
  1570. }
  1571. .b-new-entry .buttons-row{
  1572. position:relative;
  1573. margin-top:10px;
  1574. padding:8px 15px 8px 195px;
  1575. border-top:1px solid #dcdbad;
  1576. background:url(../images/form-bottom-bg.png) repeat-x;
  1577. }
  1578. .b-new-entry .help-btn{
  1579. position:absolute;
  1580. top:13px;
  1581. right:20px;
  1582. font-size:11px;
  1583. line-height:12px;
  1584. color:#b4b39f;
  1585. text-transform:uppercase;
  1586. cursor:pointer;
  1587. border-bottom:1px solid #b4b39f;
  1588. text-decoration:none;
  1589. }
  1590. .b-new-entry .help-btn:hover{
  1591. color:#000;
  1592. border-bottom-color:#9fb35a;
  1593. }
  1594. .b-new-entry .help-btn:active{
  1595. color:#4B9427;
  1596. }
  1597. .b-new-entry .cancel-btn{
  1598. position:absolute;
  1599. top:15px;
  1600. left:16px;
  1601. font-size:12px;
  1602. line-height:1;
  1603. text-transform:uppercase;
  1604. color:#cc7c4b;
  1605. cursor:pointer;
  1606. border-bottom:1px solid #cc7c4b;
  1607. }
  1608. .b-new-entry .cancel-btn:hover{
  1609. color:#000;
  1610. border-bottom-color:#c5795f;
  1611. }
  1612. .b-new-entry .cancel-btn:active{
  1613. color:#CC7C4B;
  1614. }
  1615. .b-new-entry .add-entry-btn{
  1616. overflow:visible;
  1617. height:28px;
  1618. padding:0 50px;
  1619. -webkit-border-radius:9px;
  1620. -moz-border-radius:9px;
  1621. border-radius:9px;
  1622. border:2px solid #c8c09c;
  1623. background-color:#feff99;
  1624. color:#444428;
  1625. font-size:14px;
  1626. font-family:Arial, Helvetica, sans-serif;
  1627. font-weight:bold;
  1628. line-height:25px;
  1629. text-transform:uppercase;
  1630. cursor:pointer;
  1631. }
  1632. .b-new-entry .add-entry-btn:focus{
  1633. position:relative;
  1634. top:1px;
  1635. }
  1636. .b-new-entry .add-entry-btn:hover{
  1637. background-color:#feff77;
  1638. color:#464322;
  1639. border-color:#9e977b;
  1640. }
  1641. .b-new-entry .add-entry-btn:active{
  1642. background-color:#928d7a;
  1643. color:#fefe9e;
  1644. border-color:#87826e;
  1645. }
  1646. .b-new-entry .autocomplete-box{
  1647. position:relative;
  1648. float:left;
  1649. padding-right:35px;
  1650. background:#fff;
  1651. }
  1652. .b-new-entry .autocomplete-box .text-field{
  1653. width:213px;
  1654. margin:0;
  1655. }
  1656. .b-new-entry .autocomplete-box .arrow{
  1657. position:absolute;
  1658. top:0;
  1659. right:0;
  1660. display:block;
  1661. width:32px;
  1662. height:32px;
  1663. font-size:0;
  1664. line-height:0;
  1665. /* background:#fff url(../images/select-arrow.png) no-repeat 100% 50%;*/
  1666. background:#fff url(../images/autocomplete-field-arrows-sprite.png) no-repeat;
  1667. cursor:pointer;
  1668. }
  1669. .b-new-entry .autocomplete-box .arrow:hover,
  1670. .b-new-entry .autocomplete-box .arrow:active,
  1671. .b-new-entry .autocomplete-box .arrow:focus{
  1672. background-position:0 -32px;
  1673. }
  1674. .b-new-entry .form-error{
  1675. position:relative;
  1676. margin:-5px 5px 5px;
  1677. padding:8px 15px;
  1678. border:1px solid #dcdbad;
  1679. background:url(../images/form-bottom-bg.png) repeat-x;
  1680. }
  1681. .form-error .error-box{
  1682. padding-left:18px;
  1683. background:url(../images/error-bullet.png) no-repeat 0 50%;
  1684. }
  1685. .form-error .error-box .error-message{
  1686. color:#9a32ff;
  1687. font-size:16px;
  1688. line-height:22px;
  1689. }
  1690. .form-error .error-box .help-tip-url{
  1691. position:relative;
  1692. top:-1px;
  1693. font-size:12px;
  1694. line-height:15px;
  1695. color:#b4b39f;
  1696. text-transform:uppercase;
  1697. text-decoration:none;
  1698. cursor:pointer;
  1699. border-bottom:1px solid #b4b39f;
  1700. }
  1701. .b-new-entry .help-tip-url:hover{
  1702. color:#000;
  1703. border-bottom-color:#9fb35a;
  1704. }
  1705. .b-new-entry_cron{}
  1706. .b-new-entry_cron .form-row{
  1707. padding-top:7px;
  1708. padding-bottom:5px;
  1709. }
  1710. .b-new-entry_cron .run-at-box{
  1711. padding-bottom:7px;
  1712. }
  1713. .b-new-entry_cron .run-at-box .row-header{
  1714. margin-top:35px;
  1715. }
  1716. .b-new-entry_cron .form-row-line .field-box{
  1717. margin-right:14px;
  1718. }
  1719. .b-new-entry_cron .form-row-line .cron-week-box{
  1720. margin:0;
  1721. }
  1722. .b-new-entry_cron .form-row-line .field-label{
  1723. display:block;
  1724. float:none;
  1725. width:auto;
  1726. line-height:1;
  1727. padding:0 0 8px;
  1728. color:#7d7d7d;
  1729. font-size:13px;
  1730. }
  1731. .b-new-entry_cron .form-row-line .text-field{
  1732. width:112px;
  1733. margin:0;
  1734. }
  1735. .b-new-entry_cron .form-row-line .cron-week-box .text-field{
  1736. width:109px;
  1737. margin:0;
  1738. }
  1739. .b-new-entry_cron .textarea{
  1740. height:60px;
  1741. }
  1742. .b-new-detailed-restore{}
  1743. .b-new-detailed-restore .add-entry-btn{
  1744. padding:0 30px;
  1745. }
  1746. .b-new-detailed-restore .cancel-btn{
  1747. left:auto;
  1748. right:16px;
  1749. }
  1750. /* Show/edit dns records form
  1751. - - - - - - - - - - - - - - - - - - - */
  1752. .b-records-list{
  1753. margin-left:160px;
  1754. }
  1755. .b-records-list .entry-header{
  1756. padding-top:6px;
  1757. padding-bottom:11px;
  1758. }
  1759. .b-records-list .hide-records{
  1760. font-size:10px;
  1761. font-family:Arial, Helvetica, sans-serif;
  1762. line-height:13px;
  1763. }
  1764. .b-records-list .add-btn{
  1765. margin:0;
  1766. float:none;
  1767. }
  1768. .b-records-list .form-row{
  1769. padding-top:5px;
  1770. padding-bottom:5px;
  1771. }
  1772. .b-records-list .add-box{
  1773. padding-bottom:15px;
  1774. }
  1775. .b-records-list .buttons-row{
  1776. margin-top:20px;
  1777. }
  1778. .form-row-line{
  1779. position:relative;
  1780. }
  1781. .form-row-line .field-box{
  1782. float:left;
  1783. }
  1784. .form-row-line .field-devider{
  1785. float:left;
  1786. display:block;
  1787. min-height:30px;
  1788. margin:0 15px;
  1789. font-size:15px;
  1790. line-height:2;
  1791. }
  1792. .b-records-list .form-row-line .field-label{
  1793. float:none;
  1794. display:block;
  1795. width:auto;
  1796. line-height:20px;
  1797. }
  1798. .b-records-list .dns-record-box .text-field{
  1799. width:147px;
  1800. float:left;
  1801. margin:0;
  1802. }
  1803. .b-records-list .dns-type-box{
  1804. margin-right:15px;
  1805. }
  1806. .b-records-list .dns-type-box .select{
  1807. width:51px;
  1808. left:221px;
  1809. }
  1810. .b-records-list .dns-type-box select.styled{
  1811. width:87px;
  1812. cursor:pointer;
  1813. }
  1814. .b-records-list .dns-value-box .text-field{
  1815. float:none;
  1816. width:390px;
  1817. margin:0;
  1818. }
  1819. .b-records-list .delete-record{
  1820. position:absolute;
  1821. top: auto;
  1822. bottom:15px;
  1823. right:11px;
  1824. display:block;
  1825. float:left;
  1826. width:11px;
  1827. height:11px;
  1828. background:url(../images/delete-ico-off.png) no-repeat;
  1829. }
  1830. /* Web-domains list
  1831. - - - - - - - - - - - - - - - - - - - */
  1832. .domains-list{}
  1833. .domains-list .entry-created{
  1834. padding-top:9px;
  1835. }
  1836. .names{
  1837. margin:0 0 6px;
  1838. color:#acacac;
  1839. }
  1840. .names .alias-title{
  1841. position:relative;
  1842. top:-1px;
  1843. padding-right:3px;
  1844. padding:0 3px 0 25px;
  1845. font-size:10px;
  1846. line-height:1.8;
  1847. text-transform:uppercase;
  1848. }
  1849. .names .domain-name{
  1850. position:relative;
  1851. top:-1px;
  1852. padding:0 3px 0 0;
  1853. font-size:12px;
  1854. line-height:1.5;
  1855. color:#acacac;
  1856. white-space:nowrap;
  1857. }
  1858. .row-details .names .primary{
  1859. top:0;
  1860. /* padding:0 25px 0 0;*/
  1861. font-size:20px;
  1862. font-family:Arial, Helvetica, sans-serif;
  1863. font-weight:normal;
  1864. font-style:normal;
  1865. color:#000; /* radikal'no cherniy, da! */
  1866. }
  1867. .names .primary:active{
  1868. color:#9fb749;
  1869. }
  1870. .domains-list .names .primary,
  1871. .dns-list .names .primary{
  1872. border-bottom:1px solid #fff;
  1873. }
  1874. .domains-list .props-main{
  1875. width:345px;
  1876. }
  1877. .domains-list .ip-adr{
  1878. font-size:16px;
  1879. color:#888;
  1880. }
  1881. .domains-list .ip-adr-box .prop-box{
  1882. margin-left:20px;
  1883. }
  1884. .domains-list .props-additional{
  1885. width:230px;
  1886. padding-top:0;
  1887. /* background:#bbb;*/
  1888. }
  1889. .domains-list .props-ext{
  1890. width:170px;
  1891. padding-top:0;
  1892. /* background:#ddd;*/
  1893. }
  1894. .b-usage-box{
  1895. display:block;
  1896. }
  1897. .b-usage-box .prop-title{
  1898. float:left;
  1899. margin:2px 15px 0 0;
  1900. }
  1901. .b-usage-box .usage-box{
  1902. float:left;
  1903. width:136px;
  1904. }
  1905. .b-usage-box .usage-box{
  1906. }
  1907. .b-usage-box .value-box{
  1908. float:left;
  1909. width:75px;
  1910. }
  1911. .b-usage-box .max-size{
  1912. float:right;
  1913. }
  1914. .b-usage-box .value{
  1915. display:block;
  1916. font-size:11px;
  1917. line-height:1;
  1918. color:#999;
  1919. }
  1920. .b-usage-box .max-size{
  1921. position:relative;
  1922. top:2px;
  1923. font-size:14px;
  1924. line-height:1;
  1925. color:#ababab;
  1926. }
  1927. .b-usage-box .max-size .units{
  1928. font-size:12px;
  1929. color:#797979;
  1930. }
  1931. .graph{
  1932. position:relative;
  1933. border:1px solid #b7b7b9;
  1934. font-size:0;
  1935. line-height:0;
  1936. }
  1937. .graph .bar{
  1938. position:relative;
  1939. display:block;
  1940. height:2px;
  1941. }
  1942. .critical .bar{
  1943. background-color:#f00;
  1944. }
  1945. .middle .bar{
  1946. background-color:#ff9934;
  1947. }
  1948. .low .bar{
  1949. background-color:#9fec00;
  1950. }
  1951. /* New graphs */
  1952. .b-stats-box{
  1953. position:relative;
  1954. margin-left:-25px;
  1955. padding-left:25px;
  1956. background:url(../images/stats-brace.png) no-repeat 0 50%;
  1957. }
  1958. .stats-box-title{
  1959. position:absolute;
  1960. top:50%;
  1961. left:-65px;
  1962. margin-top:-10px;
  1963. padding-right:25px;
  1964. text-transform:uppercase;
  1965. font-size:9px;
  1966. line-height:12px;
  1967. background:url(../images/stats-curve.png) no-repeat 100% 50%;
  1968. color:#acacac;
  1969. border-bottom:1px solid #acacac;
  1970. }
  1971. .b-usage-box2{
  1972. display:block;
  1973. margin:0 0 22px;
  1974. position:relative;
  1975. }
  1976. .b-usage-box2 .prop-title{
  1977. float:left;
  1978. margin:2px 15px 0 0;
  1979. }
  1980. .b-usage-box2 .usage-box{
  1981. float:left;
  1982. }
  1983. .b-usage-box2 .value-box{
  1984. padding-top:11px;
  1985. float:left;
  1986. width:85px;
  1987. }
  1988. .b-usage-box2 .max-size{
  1989. position:relative;
  1990. top:11px;
  1991. float:right;
  1992. padding:7px 0 0 3px;
  1993. border-left:1px solid #B7B7B9;
  1994. font-size:10px;
  1995. line-height:1;
  1996. color:#acacac;
  1997. }
  1998. .b-usage-box2 .max-size .units{
  1999. font-size:10px;
  2000. color:#acacac;
  2001. }
  2002. .b-usage-box2 .graph{
  2003. position:relative;
  2004. border:solid #b7b7b9;
  2005. border-width:1px 0 1px 1px;
  2006. font-size:0;
  2007. line-height:0;
  2008. }
  2009. .b-usage-box2 .value{
  2010. position:absolute;
  2011. top:-15px;
  2012. left:0;
  2013. z-index:10;
  2014. display:block;
  2015. white-space:nowrap;
  2016. padding:0 0 7px 3px;
  2017. font-size:11px;
  2018. line-height:1;
  2019. background:url(../images/bar-value-mark.png) no-repeat 0 100%;
  2020. color:#797979;
  2021. }
  2022. .b-usage-box2 .value-size{
  2023. padding-left:3px;
  2024. }
  2025. .b-usage-box2 .graph .bar{
  2026. position:relative;
  2027. display:block;
  2028. height:2px;
  2029. background-color:#9fec00;
  2030. }
  2031. /* Overdraft */
  2032. .b-usage-box2 .overdraft{}
  2033. .b-usage-box2 .overdraft .value{
  2034. margin-left:-1px;
  2035. color:#F00;
  2036. }
  2037. .b-usage-box2 .bar_overdraft{
  2038. position:absolute;
  2039. top:-1px;
  2040. z-index:5;
  2041. display:block;
  2042. height:2px;
  2043. border:solid #b7b7b9;
  2044. border-width:1px 0;
  2045. background:#ff9934 url(../images/overrun-border.png) no-repeat 100% 0;
  2046. }
  2047. .domains-list .disk-usage{
  2048. margin:0 0 6px;
  2049. }
  2050. .domains-list .props-additional .prop-box,
  2051. .domains-list .props-ext .prop-box{
  2052. display:block;
  2053. margin:0;
  2054. }
  2055. .stats-box{}
  2056. .stats-box .stats-auth{
  2057. position:relative;
  2058. top:3px;
  2059. display:-moz-inline-stack;
  2060. display:inline-block;
  2061. vertical-align:top;
  2062. margin:0 0 0 5px;
  2063. padding:0 0 0 10px;
  2064. font-size:12px;
  2065. line-height:1.5;
  2066. color:#777;
  2067. cursor:pointer;
  2068. }
  2069. .stats-box .stats-auth-on{
  2070. background:url(../images/auth-plus.png) no-repeat 0 60%;
  2071. }
  2072. .stats-box .stats-auth-text{
  2073. display:block;
  2074. line-height:11px;
  2075. border-bottom:1px solid #cacbbd;
  2076. }
  2077. .nginx-box{}
  2078. .nginx-box .nginx-ext-list{
  2079. position:relative;
  2080. top:3px;
  2081. display:-moz-inline-stack;
  2082. display:inline-block;
  2083. vertical-align:top;
  2084. margin:0 0 0 5px;
  2085. border-bottom:1px solid #cacbbd;
  2086. font-size:12px;
  2087. line-height:1;
  2088. color:#777;
  2089. cursor:pointer;
  2090. }
  2091. .template-box{}
  2092. .template-box .prop-value{
  2093. padding:0;
  2094. cursor:pointer;
  2095. border-bottom:1px solid #cbcbbf;
  2096. }
  2097. /* DNS list
  2098. - - - - - - - - - - - - - - - - - - - */
  2099. .dns-list{}
  2100. .dns-list .row-details{
  2101. padding-bottom:8px;
  2102. }
  2103. .dns-list .entry-created{
  2104. padding-top:9px;
  2105. }
  2106. .dns-list .props-main{
  2107. width:295px;
  2108. }
  2109. .dns-list .props-additional{
  2110. width:200px;
  2111. }
  2112. .dns-list .props-ext{
  2113. width:250px;
  2114. }
  2115. .dns-list .props-additional .prop-box,
  2116. .dns-list .props-ext .prop-box{
  2117. display:block;
  2118. margin:0;
  2119. }
  2120. .dns-list .ip-adr-box{
  2121. margin:0;
  2122. }
  2123. .dns-list .ip-adr{
  2124. font-size:12px;
  2125. line-height:1.5;
  2126. color:#777;
  2127. }
  2128. /* Cron list
  2129. - - - - - - - - - - - - - - - - - - - */
  2130. .cron-list{}
  2131. .cron-list .entry-created{
  2132. padding-top:18px;
  2133. }
  2134. .cron-list .cron-meta{
  2135. margin:0 0 9px;
  2136. }
  2137. .cron-meta .prop-box{
  2138. min-width:0;
  2139. }
  2140. .cron-meta .prop-title{
  2141. display:block;
  2142. text-transform:none;
  2143. font-size:10px;
  2144. }
  2145. .cron-meta .prop-value{
  2146. padding:0;
  2147. font-size:16px;
  2148. color:#7c7c7c;
  2149. }
  2150. .cron-meta .cron-min,
  2151. .cron-meta .cron-hour,
  2152. .cron-meta .cron-day,
  2153. .cron-meta .cron-week,
  2154. .cron-meta .cron-month{
  2155. min-width:45px;
  2156. padding-right:20px;
  2157. }
  2158. .cron-command-box{
  2159. margin:0 0 5px;
  2160. }
  2161. .cron-command-line{
  2162. position:relative;
  2163. padding:0 3px 0 0;
  2164. font-family:Arial, Helvetica, sans-serif;
  2165. font-size:20px;
  2166. line-height:1.5;
  2167. font-weight:normal;
  2168. font-style:normal;
  2169. color:#000;
  2170. }
  2171. .cron-command-line:active{
  2172. color:#9fb749;
  2173. }
  2174. .cron-list .cron-command-line{
  2175. border-bottom:1px solid #fff;
  2176. }
  2177. .cron-reported-to{
  2178. margin:0 0 3px;
  2179. }
  2180. .cron-reported-to .prop-title{
  2181. padding-right:3px;
  2182. }
  2183. .cron-reported-to .prop-value{
  2184. padding:0 3px 0 0;
  2185. }
  2186. /* Users list
  2187. - - - - - - - - - - - - - - - - - - - */
  2188. .users-list{}
  2189. .users-list .entry-created{
  2190. padding-top:10px;
  2191. }
  2192. .users-list .user-wrap{
  2193. margin:0 0 19px;
  2194. }
  2195. .users-list .props-main{
  2196. width:345px;
  2197. width:330px;
  2198. }
  2199. .users-list .username-box{
  2200. padding-top:6px;
  2201. margin:0 0 15px;
  2202. }
  2203. .users-list .username-box .user{
  2204. position:relative;
  2205. top:-6px;
  2206. }
  2207. .users-list .username-box .nickname{
  2208. border-bottom:1px solid #fff;
  2209. }
  2210. .user-backups-box{
  2211. margin-top:5px;
  2212. }
  2213. .user-backups-box .prop-title{
  2214. border-bottom:1px solid #CBCBBF;
  2215. font-size:12px;
  2216. text-transform:capitalize;
  2217. cursor:pointer;
  2218. color:#777;
  2219. }
  2220. .users-list .props-additional{
  2221. width:200px;
  2222. width:225px;
  2223. }
  2224. .users-list .props-additional .prop-box,
  2225. .users-list .props-ext .prop-box{
  2226. display:block;
  2227. }
  2228. .users-list .props-additional .ns1-box,
  2229. .users-list .props-additional .ns2-box{
  2230. padding-left:27px;
  2231. }
  2232. .users-list .webtpl-box .group-switcher,
  2233. .users-list .ns-list-box .group-switcher{
  2234. padding-left:15px;
  2235. }
  2236. .users-list .props-additional .ns1-box .prop-title,
  2237. .users-list .props-additional .ns2-box .prop-title{
  2238. display: inline;
  2239. float: left;
  2240. margin: 2px 0 0 -27px;
  2241. }
  2242. .users-list .props-additional .ns1-box .prop-value,
  2243. .users-list .props-additional .ns2-box .prop-value{
  2244. padding:0;
  2245. }
  2246. .users-list .props-ext{
  2247. width:190px;
  2248. }
  2249. .users-list .db-box,
  2250. .users-list .dnsdomains-box{
  2251. margin-top:35px;
  2252. }
  2253. .username-box .prop-box{
  2254. position:relative;
  2255. margin:0;
  2256. }
  2257. .user-details{
  2258. font-size:12px;
  2259. }
  2260. .user-details .user-email{
  2261. color:#777;
  2262. padding-right:5px;
  2263. }
  2264. .user-details .user-reports{
  2265. color:#9c9c9c;
  2266. }
  2267. .user-details-box .prop-box{
  2268. margin:0 0 5px;
  2269. }
  2270. .user-details-box .user-name .prop-value,
  2271. .user-details-box .user-email{
  2272. font-style:italic;
  2273. color:#706f6b;
  2274. }
  2275. /* DB list
  2276. - - - - - - - - - - - - - - - - - - - */
  2277. .db-list{}
  2278. .db-list .row-details{
  2279. padding-bottom:8px;
  2280. }
  2281. .db-list .db-devider{
  2282. margin-top:25px;
  2283. position:relative;
  2284. display:block;
  2285. border-bottom:1px solid #e0e0e0;
  2286. }
  2287. .db-list .db-devider-title{
  2288. display:block;
  2289. position:absolute;
  2290. top:-8px;
  2291. left:-50%;
  2292. width:200%;
  2293. }
  2294. .db-list .db-devider-outer{
  2295. display:block;
  2296. position:absolute;
  2297. left:50%;
  2298. }
  2299. .db-list .db-devider-inner{
  2300. background:#fff;
  2301. position:relative;
  2302. left:-50%;
  2303. padding:0 10px;
  2304. font-size:11px;
  2305. font-weight:bold;
  2306. text-transform:uppercase;
  2307. color:#4097B3;
  2308. }
  2309. .db-list .props-main{
  2310. width:210px;
  2311. padding-right:10px;
  2312. }
  2313. .db-list .props-additional{
  2314. width:340px;
  2315. padding-top:6px;
  2316. }
  2317. .db-list .props-ext{
  2318. width:185px;
  2319. padding-top:6px;
  2320. }
  2321. .db-name{
  2322. position:relative;
  2323. margin:0 0 6px;
  2324. padding:0 3px 0 0;
  2325. }
  2326. .db-name-box .db-name{
  2327. font-size:20px;
  2328. font-family:Arial, Helvetica, sans-serif;
  2329. font-weight:normal;
  2330. font-style:normal;
  2331. line-height:27px;
  2332. }
  2333. .db-name:active{
  2334. color:#9fb749;
  2335. }
  2336. .db-list .db-name{
  2337. border-bottom:1px solid #fff;
  2338. }
  2339. .db-list .ownership .prop-box{
  2340. margin:5px 0 0;
  2341. }
  2342. .db-list .ownership .prop-value{
  2343. padding:0;
  2344. font-size:11px;
  2345. font-style:italic;
  2346. }
  2347. .db-list .entry-created{
  2348. padding:0;
  2349. }
  2350. .db-user-box{
  2351. margin:0 0 10px;
  2352. }
  2353. .db-user-box .db-user{
  2354. position:relative;
  2355. display:block;
  2356. float:left;
  2357. margin-right:25px;
  2358. padding-right:20px;
  2359. font-size:12px;
  2360. line-height:1.25; /*15px*/
  2361. font-style:italic;
  2362. color:#999;
  2363. }
  2364. .db-user-box .db-user:hover{
  2365. color:#f00;
  2366. }
  2367. .db-user-box .change-pwd{
  2368. position:relative;
  2369. top:1px;
  2370. display:inline-block;
  2371. border-bottom:1px solid #c9cabc;
  2372. text-transform:uppercase;
  2373. line-height:13px;
  2374. cursor:pointer;
  2375. visibility:hidden;
  2376. }
  2377. .add-db-user{
  2378. border-bottom:1px solid #c9cabc;
  2379. text-transform:uppercase;
  2380. line-height:13px;
  2381. padding-left:10px;
  2382. background:url(../images/auth-plus.png) no-repeat 0 50%;
  2383. color:#555;
  2384. cursor:pointer;
  2385. }
  2386. .backup-db{
  2387. float:left;
  2388. position:relative;
  2389. top:2px;
  2390. display:-moz-inline-stack;
  2391. display:inline-block;
  2392. vertical-align:top;
  2393. border-bottom:1px solid #cacbbd;
  2394. font-size:12px;
  2395. line-height:13px;
  2396. color:#777;
  2397. cursor:pointer;
  2398. }
  2399. .db-list .b-usage-box{
  2400. float:right;
  2401. position:relative;
  2402. top:1px;
  2403. }
  2404. .db-list .b-usage-box .usage-box{
  2405. width:auto;
  2406. }
  2407. .db-list .b-usage-box .value,
  2408. .db-list .b-usage-box .max-size{
  2409. color:#797979;
  2410. }
  2411. .db-list .b-usage-box .value-box{
  2412. width:60px;
  2413. margin-right:5px;
  2414. }
  2415. .db-list .b-usage-box .max-size{
  2416. float:left;
  2417. }
  2418. .db-list .b-usage-box .max-size .units{
  2419. color:#ABABAB;
  2420. }
  2421. /* Backups list
  2422. - - - - - - - - - - - - - - - - - - - */
  2423. .backups-list{}
  2424. .backups-list .row{
  2425. padding:25px 10px 15px;
  2426. }
  2427. .backups-list .ownership{
  2428. padding:5px 0 0;
  2429. }
  2430. .backups-list .props-main{
  2431. padding-top:5px;
  2432. }
  2433. .backups-list .props-main .prop-box{
  2434. margin:0;
  2435. }
  2436. .backups-list .props-additional{
  2437. width:165px;
  2438. padding:4px 0 0;
  2439. }
  2440. .backups-list .props-ext{
  2441. width:165px;
  2442. padding:0;
  2443. }
  2444. .backups-list .entry-created{
  2445. width:185px;
  2446. padding:0;
  2447. }
  2448. .backups-list .backup-date,
  2449. .backups-list .backup-weekday{
  2450. display:-moz-inline-stack;
  2451. display:inline-block;
  2452. vertical-align:top;
  2453. }
  2454. .backups-list .backup-date .backup-day{
  2455. display:block;
  2456. width:105px;
  2457. font-size:14px;
  2458. font-family:Arial,Helvetica,sans-serif;
  2459. font-weight:bold;
  2460. line-height:20px;
  2461. color:#47443f;
  2462. }
  2463. .backups-list .backup-weekday{
  2464. padding-top:4px;
  2465. color:#408abb;
  2466. }
  2467. .backups-list .backup-time,
  2468. .backups-list .generation-time .prop-value{
  2469. font-size:10px;
  2470. color:#999;
  2471. }
  2472. .backups-list .generation-time .prop-value{
  2473. color:#9C9C9C;
  2474. }
  2475. .backups-list .generation-time{
  2476. padding-top:4px;
  2477. }
  2478. .backups-list .backup-size{
  2479. display:-moz-inline-stack;
  2480. display:inline-block;
  2481. padding-right:12px;
  2482. font-size:10px;
  2483. line-height:24px;
  2484. background:url(../images/green-bracket-l.png) no-repeat 0 50%;
  2485. color:#595959;
  2486. }
  2487. .backups-list .backup-size-inner{
  2488. display:-moz-inline-stack;
  2489. display:inline-block;
  2490. padding:0 10px;
  2491. background:url(../images/green-bracket-r.png) no-repeat 100% 50%;
  2492. }
  2493. .backups-list .backup-url,
  2494. .backups-list .backup-actions{
  2495. font-size:13px;
  2496. color:#999;
  2497. }
  2498. .backups-list .backup-actions{
  2499. background:#ccc;
  2500. }
  2501. .backups-list .backup-actions-url{
  2502. float:right;
  2503. display:-moz-inline-stack;
  2504. display:inline-block;
  2505. vertical-align:top;
  2506. -webkit-border-radius:9px;
  2507. -moz-border-radius:9px;
  2508. border-radius:9px;
  2509. border:2px solid #fff;
  2510. color:#999;
  2511. line-height:26px;
  2512. }
  2513. .backups-list .row a.backup-actions-url:hover{
  2514. padding:0 12px;
  2515. border-color:#c8c09c;
  2516. background-color:#feff99;
  2517. color:#444428;
  2518. font-size:14px;
  2519. font-family:Arial, Helvetica, sans-serif;
  2520. font-weight:bold;
  2521. cursor:pointer;
  2522. text-decoration:none;
  2523. text-transform:uppercase;
  2524. }
  2525. .backups-list .detailed-restore-ext{
  2526. display:none;
  2527. }
  2528. .backups-list a.detailed-restore-url:hover .detailed-restore-title{
  2529. text-transform:none;
  2530. }
  2531. .backups-list a.detailed-restore-url:hover .detailed-restore-ext{
  2532. display:inline-block;
  2533. }
  2534. .backups-list .restore-url{
  2535. margin-left:10px;
  2536. color:#93b749;
  2537. }
  2538. .backup-tree{
  2539. padding-left:70px;
  2540. }
  2541. .backup-tree .backup-tree-item{
  2542. padding:0 0 7px 25px;
  2543. background:url(../images/backup-checkbox.png) no-repeat 0 .5em;
  2544. }
  2545. .backup-tree .unchecked{
  2546. background:url(../images/backup-checkbox-unchecked.png) no-repeat 0 .5em;
  2547. }
  2548. .backup-tree .checked{
  2549. background:url(../images/backup-checkbox-checked.png) no-repeat 0 .5em;
  2550. }
  2551. .backup-tree .backup-sections,
  2552. .backup-tree .backup-sections .sub-tree{
  2553. padding:10px 0 0 25px;
  2554. }
  2555. .backup-tree .node-item{
  2556. font-size:13px;
  2557. font-weight:bold;
  2558. padding-left:15px;
  2559. background:url(../images/backup-collapsed-ico.png) no-repeat 0 .3em;
  2560. border-bottom:1px dashed #cfd19f;
  2561. color:#5a6962;
  2562. cursor:pointer;
  2563. }
  2564. .backup-tree .node-item:hover{
  2565. color:#ffcf0b;
  2566. }
  2567. .backup-tree .expanded{
  2568. background:url(../images/backup-expand-ico.png) no-repeat 0 .45em;
  2569. }
  2570. .backup-tree .backup-sections .sub-tree .node-item{
  2571. font-style:italic;
  2572. color:#abad85;
  2573. padding:0;
  2574. background:none;
  2575. border:none;
  2576. }
  2577. .backup-tree .backup-sections .sub-tree .node-item:hover{
  2578. color:#abad85;
  2579. }
  2580. .backup-tree .backup-sections .sub-tree .checked .node-item{
  2581. color:#5a6962;
  2582. font-style:normal;
  2583. }
  2584. /* Highlighted backup row */
  2585. .backup-details-row_highlighted,
  2586. .backups-list .backup-details-row_highlighted:hover{
  2587. background:#666;
  2588. }
  2589. .backup-details-row_highlighted .notes-wrap{
  2590. font-size:14px;
  2591. line-height:25px;
  2592. font-weight:bold;
  2593. text-transform:uppercase;
  2594. color:#bad23e;
  2595. text-align:center;
  2596. padding:0 0 10px;
  2597. }
  2598. .backup-details-row_highlighted .restore-ico{
  2599. padding:4px 0 4px 30px;
  2600. line-height:25px;
  2601. background:url(../images/backup-restore-ico.png) no-repeat;
  2602. }
  2603. .backup-details-row_highlighted .backup-time{
  2604. color:#fff;
  2605. }
  2606. .backup-details-row_highlighted .ownership .prop-value{
  2607. color:#c8c8c8;
  2608. }
  2609. .backups-list .backup-details-row_highlighted .backup-day{
  2610. color:#fff;
  2611. }
  2612. .backups-list .backup-details-row_highlighted .backup-size{
  2613. color:#ccc;
  2614. }
  2615. .backups-list .backup-details-row_highlighted .backup-actions{
  2616. display:none;
  2617. }
  2618. /* row hover effect
  2619. - - - - - - - - - - - - - - - - - - - */
  2620. .row:hover{
  2621. background-color:#ffffcb;
  2622. }
  2623. .ip-list .row:hover .ip-adr,
  2624. .domains-list .row:hover .names .primary,
  2625. .dns-list .row:hover .names .primary,
  2626. .cron-list .row:hover .cron-command-line,
  2627. .users-list .row:hover .username-box .nickname,
  2628. .db-list .row:hover .db-name{
  2629. border-bottom-style:dashed;
  2630. border-bottom-color:#e5e5e5;
  2631. border-bottom-color:#bbb;
  2632. }
  2633. .ip-list .row:hover .ip-adr:hover,
  2634. .domains-list .row:hover .names .primary:hover,
  2635. .dns-list .row:hover .names .primary:hover,
  2636. .cron-list .row:hover .cron-command-line:hover,
  2637. .users-list .row:hover .username-box .nickname:hover,
  2638. .db-list .row:hover .db-name:hover{
  2639. cursor:pointer;
  2640. border-bottom-style:solid;
  2641. border-bottom-color:#b4c775;
  2642. }
  2643. .ip-list .ip-details-suspended:hover .ip-adr,
  2644. .ip-list .ip-details-suspended:hover .ip-adr:hover{
  2645. border:none;
  2646. cursor:default;
  2647. }
  2648. .backups-list .row:hover .backup-actions-url{
  2649. border-color:#ffffcb;
  2650. }
  2651. .row:hover .ip-status-info{
  2652. background:url(../images/enabled-ico_.png) no-repeat 100% 50%;
  2653. }
  2654. .row:hover .delete-entry,
  2655. .row:hover .db-user-box .db-user{
  2656. background:url(../images/delete-ico-off.png) no-repeat 100% 4px;
  2657. }
  2658. .row:hover .ip-suspended-status{
  2659. background:url(../images/suspended-ico.png) no-repeat 100% 65%;
  2660. }
  2661. .ip-status-info:hover .ip-status-text,
  2662. .delete-entry:hover .delete-entry-text,
  2663. .row:hover .db-user-box .change-pwd{
  2664. visibility:visible;
  2665. }
  2666. .row .ip-status-info:hover{
  2667. background-image:url(../images/enabled-ico-hover.png);
  2668. }
  2669. .row .delete-entry:hover,
  2670. .row .db-user-box .db-user:hover{
  2671. background-image:url(../images/delete-ico.png);
  2672. cursor:pointer;
  2673. }
  2674. .row .delete-entry:active{
  2675. background-image:url(../images/delete-ico-active.png);
  2676. cursor:pointer;
  2677. }
  2678. .delete-entry:hover .delete-entry-text{
  2679. color:#333;
  2680. }
  2681. .delete-entry .delete-entry-text:hover{
  2682. cursor:pointer;
  2683. }
  2684. .delete-entry .delete-entry-text:active{
  2685. color:#f00;
  2686. }
  2687. .row:hover .show-records,
  2688. .row:hover .hide-records,
  2689. .row:hover .template-box .prop-value,
  2690. .domains-list .row:hover .stats-box .stats-auth-text,
  2691. .domains-list .row:hover .nginx-box .nginx-ext-list,
  2692. .row:hover .db-user-box .change-pwd,
  2693. .row:hover .add-db-user,
  2694. .row:hover .backup-db,
  2695. .row:hover .user-backups-box .prop-title{
  2696. color:#6aa0ac;
  2697. border-bottom-color:#cacbbd;
  2698. }
  2699. .row:hover .template-box .prop-value:hover,
  2700. .row:hover .show-records:hover,
  2701. .hide-records:hover,
  2702. .domains-list .row:hover .stats-box .stats-auth-text:hover,
  2703. .domains-list .row:hover .nginx-box .nginx-ext-list:hover,
  2704. .row .db-user-box .change-pwd:hover,
  2705. .row .add-db-user:hover,
  2706. .row .backup-db:hover,
  2707. .row .user-backups-box:hover .prop-title{
  2708. color:#575757;
  2709. border-bottom-color:#b4c775;
  2710. }
  2711. .row .template-box .prop-value:active,
  2712. .row .show-records:active,
  2713. .hide-records:active,
  2714. .domains-list .row:hover .stats-box .stats-auth-text:active,
  2715. .domains-list .row:hover .nginx-box .nginx-ext-list:active,
  2716. .users-list .username-box .nickname:active,
  2717. .users-list .user-backups-box .prop-title:active,
  2718. .row .db-user-box .change-pwd:active,
  2719. .row .add-db-user:active,
  2720. .row .backup-db:active,
  2721. .row .user-backups-box .prop-title:active{
  2722. color:#b4c775;
  2723. }
  2724. /* Checked row
  2725. - - - - - - - - - - - - - - - - - - - */
  2726. .checked-row{
  2727. background-color:#e4f7bf;
  2728. }
  2729. .checked-row .row-actions-box .check-control{
  2730. background-position:0 -30px;
  2731. }
  2732. .domains-list .checked-row .names .primary,
  2733. .dns-list .checked-row .names .primary,
  2734. .cron-list .checked-row .cron-command-line,
  2735. .users-list .checked-row .username-box .nickname,
  2736. .db-list .checked-row .db-name{
  2737. border-bottom:1px solid #e4f7bf;
  2738. }
  2739. /* Suspended row
  2740. - - - - - - - - - - - - - - - - - - - */
  2741. .ip-details-suspended,
  2742. .suspended-row{}
  2743. .ip-details-suspended:hover,
  2744. .suspended-row:hover{
  2745. background-color:#fff;
  2746. }
  2747. .ip-details-suspended .entry-created,
  2748. .suspended-row .entry-created,
  2749. .suspended-row .username-box .role{
  2750. color:#ccc;
  2751. }
  2752. .ip-details-suspended .ip-adr,
  2753. .suspended-row .ip-adr,
  2754. .suspended-row .cron-command-line,
  2755. .suspended-row .username-box,
  2756. .suspended-row .username-box .nickname,
  2757. .suspended-row .user-name .prop-value,
  2758. .suspended-row .user-backups-box .prop-title,
  2759. .suspended-row .user-details .user-email,
  2760. .suspended-row .user-details .user-reports,
  2761. .suspended-row .template-box .prop-value,
  2762. .suspended-row .stats-box-title{
  2763. color:#ccc;
  2764. border:none;
  2765. }
  2766. .ip-details-suspended:hover .ip-adr,
  2767. .suspended-row:hover .ip-adr,
  2768. .cron-list .suspended-row:hover .cron-command-line,
  2769. .users-list .suspended-row:hover .username-box .nickname,
  2770. .users-list .suspended-row:hover .user-backups-box .prop-title{
  2771. border:none;
  2772. }
  2773. .ip-details-suspended:hover .ip-adr:hover,
  2774. .suspended-row:hover .ip-adr:hover,
  2775. .cron-list .suspended-row:hover .cron-command-line:hover,
  2776. .users-list .suspended-row:hover .username-box .nickname:hover,
  2777. .users-list .suspended-row:hover .user-backups-box .prop-title:hover{
  2778. border:none;
  2779. cursor:default;
  2780. }
  2781. .users-list .suspended-row .username-box .nickname:active,
  2782. .users-list .suspended-row .user-backups-box .prop-title:active{
  2783. color:#ccc;
  2784. }
  2785. .ip-details-suspended .prop-title,
  2786. .ip-details-suspended .prop-value,
  2787. .suspended-row .prop-title,
  2788. .suspended-row .prop-value,
  2789. .suspended-row .b-usage-box .value,
  2790. .suspended-row .b-usage-box .max-size,
  2791. .suspended-row .b-usage-box .max-size .units,
  2792. .suspended-row .b-usage-box2 .value,
  2793. .suspended-row .b-usage-box2 .max-size{
  2794. color:#ccc;
  2795. }
  2796. .suspended-row .b-usage-box .bar,
  2797. .suspended-row .b-usage-box2 .graph .bar {
  2798. background-color:#ccc;
  2799. }
  2800. .suspended-row:hover .show-records,
  2801. .suspended-row:hover .hide-records,
  2802. .suspended-row:hover .template-box .prop-value,
  2803. .domains-list .suspended-row:hover .stats-box .stats-auth-text,
  2804. .domains-list .suspended-row:hover .nginx-box .nginx-ext-list,
  2805. .suspended-row:hover .user-backups-box .prop-title,
  2806. .suspended-row:hover .template-box .prop-value:hover,
  2807. .suspended-row:hover .show-records:hover,
  2808. .suspended-row .hide-records:hover,
  2809. .domains-list .suspended-row:hover .stats-box .stats-auth-text:hover,
  2810. .domains-list .suspended-row:hover .nginx-box .nginx-ext-list:hover{
  2811. color:#ccc;
  2812. border:none;
  2813. cursor:default;
  2814. }
  2815. .suspended-row:hover .template-box .prop-value:active,
  2816. .suspended-row:hover .show-records:active,
  2817. .suspended-row .hide-records:active,
  2818. .domains-list .suspended-row:hover .stats-box .stats-auth-text:active,
  2819. .domains-list .suspended-row:hover .nginx-box .nginx-ext-list:active,
  2820. .users-list .suspended-row .username-box .nickname:active,
  2821. .users-list .suspended-row .user-backups-box .prop-title:active{
  2822. color:#ccc;
  2823. }
  2824. .suspended-row .stats-box-title{
  2825. background-image:url(../images/stats-curve-grey.png);
  2826. }
  2827. .success-box {border: 1px dashed #BBBF45;color: #BBBF45;}