main.css 64 KB

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