main.css 63 KB

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