vesta.css 66 KB

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