main.css 62 KB

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