main.css 66 KB

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