cascade.css 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950
  1. /*!
  2. * LuCI Bootstrap Theme
  3. * Copyright 2012 Nut & Bolt
  4. * By David Menting <david@nut-bolt.nl>
  5. * Based on Bootstrap v1.4.0
  6. *
  7. * Copyright 2011 Twitter, Inc
  8. * Licensed under the Apache License v2.0
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Designed and built with all the love in the world @twitter by @mdo and @fat.
  12. */
  13. /* Reset.less
  14. * Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
  15. * ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
  16. html {
  17. margin: 0;
  18. padding: 0;
  19. }
  20. body {
  21. margin: 0;
  22. padding: 5px;
  23. }
  24. h1, h2, h3, h4, h5, h6, p, pre, a, abbr, acronym, code, del, em, img, q, s,
  25. small, strike, strong, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset,
  26. form, label, legend, button, table, caption, tbody, tfoot, thead, tr, th, td {
  27. margin: 0;
  28. padding: 0;
  29. border: 0;
  30. font-weight: normal;
  31. font-style: normal;
  32. font-size: 100%;
  33. line-height: 1;
  34. font-family: inherit;
  35. }
  36. abbr[title], acronym[title] {
  37. border-bottom: 1px dotted;
  38. cursor: help;
  39. }
  40. table {
  41. border-collapse: collapse;
  42. border-spacing: 0;
  43. }
  44. ol, ul {
  45. list-style: none;
  46. }
  47. q:before,
  48. q:after,
  49. blockquote:before,
  50. blockquote:after {
  51. content: "";
  52. }
  53. html {
  54. overflow-y: scroll;
  55. font-size: 100%;
  56. -webkit-text-size-adjust: 100%;
  57. -ms-text-size-adjust: 100%;
  58. }
  59. a:focus {
  60. outline: thin dotted;
  61. }
  62. a:hover, a:active {
  63. outline: 0;
  64. }
  65. article,
  66. aside,
  67. details,
  68. figcaption,
  69. figure,
  70. footer,
  71. header,
  72. hgroup,
  73. nav,
  74. section {
  75. display: block;
  76. }
  77. sub, sup {
  78. font-size: 75%;
  79. line-height: 0;
  80. position: relative;
  81. vertical-align: baseline;
  82. }
  83. sup {
  84. top: -0.5em;
  85. }
  86. sub {
  87. bottom: -0.25em;
  88. }
  89. img {
  90. border: 0;
  91. -ms-interpolation-mode: bicubic;
  92. }
  93. button,
  94. input,
  95. select,
  96. option,
  97. textarea {
  98. font-size: 100%;
  99. margin: 0;
  100. -webkit-box-sizing: border-box;
  101. -moz-box-sizing: border-box;
  102. box-sizing: border-box;
  103. vertical-align: baseline;
  104. *vertical-align: middle;
  105. }
  106. button, input {
  107. line-height: normal;
  108. *overflow: visible;
  109. }
  110. button::-moz-focus-inner, input::-moz-focus-inner {
  111. border: 0;
  112. padding: 0;
  113. }
  114. button,
  115. input[type="button"],
  116. input[type="reset"],
  117. input[type="submit"] {
  118. cursor: pointer;
  119. -webkit-appearance: button;
  120. }
  121. input[type="search"] {
  122. -webkit-appearance: textfield;
  123. -webkit-box-sizing: content-box;
  124. -moz-box-sizing: content-box;
  125. box-sizing: content-box;
  126. }
  127. input[type="search"]::-webkit-search-decoration {
  128. -webkit-appearance: none;
  129. }
  130. textarea {
  131. overflow: auto;
  132. vertical-align: top;
  133. }
  134. /*
  135. * Scaffolding
  136. * Basic and global styles for generating a grid system, structural layout, and page templates
  137. * ------------------------------------------------------------------------------------------- */
  138. body {
  139. background-color: #ffffff;
  140. margin: 0;
  141. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  142. font-size: 13px;
  143. font-weight: normal;
  144. line-height: 18px;
  145. color: #404040;
  146. padding-top: 58px;
  147. }
  148. .container {
  149. width: 100%;
  150. max-width: 940px;
  151. margin-left: auto;
  152. margin-right: auto;
  153. zoom: 1;
  154. }
  155. .container:before, .container:after {
  156. display: table;
  157. content: "";
  158. zoom: 1;
  159. }
  160. .container:after {
  161. clear: both;
  162. }
  163. a {
  164. color: #0069d6;
  165. text-decoration: none;
  166. line-height: inherit;
  167. font-weight: inherit;
  168. }
  169. a:hover {
  170. color: #00438a;
  171. text-decoration: underline;
  172. }
  173. .pull-right {
  174. float: right;
  175. }
  176. .pull-left {
  177. float: left;
  178. }
  179. /* Typography.less
  180. * Headings, body text, lists, code, and more for a versatile and durable typography system
  181. * ---------------------------------------------------------------------------------------- */
  182. p,
  183. .cbi-map-descr,
  184. .cbi-section-descr {
  185. font-size: 13px;
  186. font-weight: normal;
  187. line-height: 18px;
  188. margin-bottom: 9px;
  189. }
  190. p small {
  191. font-size: 11px;
  192. color: #bfbfbf;
  193. }
  194. h1,
  195. h2,
  196. h3,
  197. h4,
  198. h5,
  199. h6 {
  200. font-weight: bold;
  201. color: #404040;
  202. }
  203. h1 small,
  204. h2 small,
  205. h3 small,
  206. h4 small,
  207. h5 small,
  208. h6 small {
  209. color: #bfbfbf;
  210. }
  211. h1 {
  212. margin-bottom: 18px;
  213. font-size: 30px;
  214. line-height: 36px;
  215. }
  216. h1 small {
  217. font-size: 18px;
  218. }
  219. h2 {
  220. font-size: 24px;
  221. line-height: 36px;
  222. }
  223. h2 small {
  224. font-size: 14px;
  225. }
  226. h3,
  227. h4,
  228. h5,
  229. h6 {
  230. line-height: 36px;
  231. }
  232. h3 {
  233. font-size: 18px;
  234. }
  235. h3 small {
  236. font-size: 14px;
  237. }
  238. h4 {
  239. font-size: 16px;
  240. }
  241. h4 small {
  242. font-size: 12px;
  243. }
  244. h5 {
  245. font-size: 14px;
  246. }
  247. h6 {
  248. font-size: 13px;
  249. color: #bfbfbf;
  250. text-transform: uppercase;
  251. }
  252. ul, ol {
  253. margin: 0 0 18px 25px;
  254. }
  255. ul ul,
  256. ul ol,
  257. ol ol,
  258. ol ul {
  259. margin-bottom: 0;
  260. }
  261. ul {
  262. list-style: disc;
  263. }
  264. ol {
  265. list-style: decimal;
  266. }
  267. li {
  268. line-height: 18px;
  269. color: #808080;
  270. }
  271. ul.unstyled {
  272. list-style: none;
  273. margin-left: 0;
  274. }
  275. dl {
  276. margin-bottom: 18px;
  277. }
  278. dl dt, dl dd {
  279. line-height: 18px;
  280. }
  281. dl dt {
  282. font-weight: bold;
  283. }
  284. dl dd {
  285. margin-left: 9px;
  286. }
  287. hr {
  288. margin: 20px 0 19px;
  289. border: 0;
  290. border-bottom: 1px solid #eee;
  291. }
  292. strong {
  293. font-style: inherit;
  294. font-weight: bold;
  295. }
  296. em {
  297. font-style: italic;
  298. font-weight: inherit;
  299. line-height: inherit;
  300. }
  301. small { font-size: 0.9em }
  302. address {
  303. display: block;
  304. line-height: 18px;
  305. margin-bottom: 18px;
  306. }
  307. code, pre {
  308. padding: 0 3px 2px;
  309. font-family: Monaco, Andale Mono, Courier New, monospace;
  310. font-size: 12px;
  311. -webkit-border-radius: 3px;
  312. -moz-border-radius: 3px;
  313. border-radius: 3px;
  314. }
  315. code {
  316. background-color: #fee9cc;
  317. color: rgba(0, 0, 0, 0.75);
  318. padding: 1px 3px;
  319. }
  320. pre {
  321. background-color: #f5f5f5;
  322. display: block;
  323. padding: 8.5px;
  324. margin: 0 0 18px;
  325. line-height: 18px;
  326. font-size: 12px;
  327. border: 1px solid #ccc;
  328. border: 1px solid rgba(0, 0, 0, 0.15);
  329. -webkit-border-radius: 3px;
  330. -moz-border-radius: 3px;
  331. border-radius: 3px;
  332. white-space: pre;
  333. white-space: pre-wrap;
  334. word-wrap: break-word;
  335. }
  336. /* Forms.less
  337. * Base styles for various input types, form layouts, and states
  338. * ------------------------------------------------------------- */
  339. form {
  340. margin-bottom: 18px;
  341. }
  342. fieldset {
  343. margin-bottom: 9px;
  344. padding-top: 9px;
  345. }
  346. fieldset legend {
  347. display: block;
  348. font-size: 19.5px;
  349. line-height: 1;
  350. color: #404040;
  351. padding-top: 20px;
  352. *padding: 0 0 5px 0px;
  353. /* IE6-7 */
  354. *line-height: 1.5;
  355. /* IE6-7 */
  356. }
  357. form .cbi-tab-descr {
  358. line-height: 18px;
  359. margin-bottom: 18px;
  360. }
  361. form .clearfix,
  362. form .cbi-value {
  363. margin-bottom: 18px;
  364. zoom: 1;
  365. overflow: hidden;
  366. }
  367. form .clearfix:before, form .clearfix:after,
  368. form .cbi-value:before, form .cbi-value:after {
  369. display: table;
  370. content: "";
  371. zoom: 1;
  372. }
  373. form .clearfix:after
  374. form .cbi-value:after {
  375. clear: both;
  376. }
  377. label,
  378. input,
  379. select,
  380. textarea {
  381. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  382. font-size: 13px;
  383. font-weight: normal;
  384. line-height: normal;
  385. }
  386. form .input,
  387. form .cbi-value-field {
  388. margin-left: 200px;
  389. }
  390. form .cbi-value label.cbi-value-title {
  391. padding-top: 6px;
  392. font-size: 13px;
  393. line-height: 18px;
  394. float: left;
  395. width: 180px;
  396. text-align: right;
  397. color: #404040;
  398. }
  399. input[type=checkbox], input[type=radio] {
  400. cursor: pointer;
  401. }
  402. input,
  403. textarea,
  404. select,
  405. .uneditable-input {
  406. display: inline-block;
  407. width: 210px;
  408. height: 30px;
  409. padding: 4px;
  410. font-size: 13px;
  411. line-height: 18px;
  412. color: #808080;
  413. border: 1px solid #ccc;
  414. -webkit-border-radius: 3px;
  415. -moz-border-radius: 3px;
  416. border-radius: 3px;
  417. }
  418. select {
  419. padding: initial;
  420. }
  421. input[type=checkbox], input[type=radio] {
  422. width: auto;
  423. height: auto;
  424. padding: 0;
  425. margin: 3px 0;
  426. *margin-top: 0;
  427. /* IE6-7 */
  428. line-height: normal;
  429. border: none;
  430. }
  431. input[type=file] {
  432. background-color: #ffffff;
  433. padding: initial;
  434. border: initial;
  435. line-height: initial;
  436. -webkit-box-shadow: none;
  437. -moz-box-shadow: none;
  438. box-shadow: none;
  439. width: auto !important;
  440. }
  441. input[type=button], input[type=reset], input[type=submit] {
  442. width: auto;
  443. height: auto;
  444. }
  445. select, input[type=file] {
  446. *height: auto;
  447. *margin-top: 4px;
  448. /* For IE7, add top margin to align select with labels */
  449. }
  450. select[multiple] {
  451. height: inherit;
  452. background-color: #ffffff;
  453. }
  454. textarea {
  455. height: auto;
  456. }
  457. .uneditable-input {
  458. background-color: #ffffff;
  459. display: block;
  460. border-color: #eee;
  461. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  462. -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  463. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  464. cursor: not-allowed;
  465. }
  466. ::-moz-placeholder {
  467. color: #bfbfbf;
  468. }
  469. ::-webkit-input-placeholder {
  470. color: #bfbfbf;
  471. }
  472. input, textarea {
  473. -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  474. -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  475. -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
  476. -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  477. transition: border linear 0.2s, box-shadow linear 0.2s;
  478. -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  479. -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  480. box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  481. }
  482. input:focus, textarea:focus {
  483. outline: 0;
  484. border-color: rgba(82, 168, 236, 0.8);
  485. -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  486. -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  487. box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  488. }
  489. input[type=file]:focus, input[type=checkbox]:focus, select:focus {
  490. -webkit-box-shadow: none;
  491. -moz-box-shadow: none;
  492. box-shadow: none;
  493. outline: 1px dotted #666;
  494. }
  495. form .clearfix.error > label, form .clearfix.error .help-block, form .clearfix.error .help-inline {
  496. color: #b94a48;
  497. }
  498. form .clearfix.error input, form .clearfix.error textarea {
  499. color: #b94a48;
  500. border-color: #ee5f5b;
  501. }
  502. form .clearfix.error input:focus, form .clearfix.error textarea:focus {
  503. border-color: #e9322d;
  504. -webkit-box-shadow: 0 0 6px #f8b9b7;
  505. -moz-box-shadow: 0 0 6px #f8b9b7;
  506. box-shadow: 0 0 6px #f8b9b7;
  507. }
  508. form .clearfix.error .input-prepend .add-on, form .clearfix.error .input-append .add-on {
  509. color: #b94a48;
  510. background-color: #fce6e6;
  511. border-color: #b94a48;
  512. }
  513. form .clearfix.warning > label, form .clearfix.warning .help-block, form .clearfix.warning .help-inline {
  514. color: #c09853;
  515. }
  516. form .clearfix.warning input, form .clearfix.warning textarea {
  517. color: #c09853;
  518. border-color: #ccae64;
  519. }
  520. form .clearfix.warning input:focus, form .clearfix.warning textarea:focus {
  521. border-color: #be9a3f;
  522. -webkit-box-shadow: 0 0 6px #e5d6b1;
  523. -moz-box-shadow: 0 0 6px #e5d6b1;
  524. box-shadow: 0 0 6px #e5d6b1;
  525. }
  526. form .clearfix.warning .input-prepend .add-on, form .clearfix.warning .input-append .add-on {
  527. color: #c09853;
  528. background-color: #d2b877;
  529. border-color: #c09853;
  530. }
  531. form .clearfix.success > label, form .clearfix.success .help-block, form .clearfix.success .help-inline {
  532. color: #468847;
  533. }
  534. form .clearfix.success input, form .clearfix.success textarea {
  535. color: #468847;
  536. border-color: #57a957;
  537. }
  538. form .clearfix.success input:focus, form .clearfix.success textarea:focus {
  539. border-color: #458845;
  540. -webkit-box-shadow: 0 0 6px #9acc9a;
  541. -moz-box-shadow: 0 0 6px #9acc9a;
  542. box-shadow: 0 0 6px #9acc9a;
  543. }
  544. form .clearfix.success .input-prepend .add-on, form .clearfix.success .input-append .add-on {
  545. color: #468847;
  546. background-color: #bcddbc;
  547. border-color: #468847;
  548. }
  549. input[disabled],
  550. select[disabled],
  551. textarea[disabled],
  552. input[readonly],
  553. select[readonly],
  554. textarea[readonly] {
  555. background-color: #f5f5f5;
  556. border-color: #ddd;
  557. }
  558. .actions,
  559. .cbi-page-actions {
  560. background: #f5f5f5;
  561. margin-bottom: 18px;
  562. padding: 17px 20px 18px 150px;
  563. border-top: 1px solid #ddd;
  564. -webkit-border-radius: 0 0 3px 3px;
  565. -moz-border-radius: 0 0 3px 3px;
  566. border-radius: 0 0 3px 3px;
  567. text-align: right;
  568. }
  569. .actions .secondary-action,
  570. .cbi-page-actions .secondary-action{
  571. float: right;
  572. }
  573. .actions .secondary-action a,
  574. .cbi-page-actions .secondary-action a {
  575. line-height: 30px;
  576. }
  577. .actions .secondary-action a:hover,
  578. .cbi-page-actions .secondary-action a:hover {
  579. text-decoration: underline;
  580. }
  581. .help-inline, .help-block {
  582. font-size: 13px;
  583. line-height: 18px;
  584. color: #bfbfbf;
  585. }
  586. .help-inline {
  587. padding-left: 5px;
  588. *position: relative;
  589. /* IE6-7 */
  590. *top: -5px;
  591. /* IE6-7 */
  592. }
  593. .help-block {
  594. display: block;
  595. max-width: 600px;
  596. }
  597. /*
  598. * Tables.less
  599. * Tables for, you guessed it, tabular data
  600. * ---------------------------------------- */
  601. table {
  602. width: 100%;
  603. margin-bottom: 18px;
  604. padding: 0;
  605. font-size: 13px;
  606. border-collapse: collapse;
  607. }
  608. table th, table td {
  609. padding: 10px 10px 9px;
  610. line-height: 18px;
  611. text-align: left;
  612. }
  613. table th {
  614. padding-top: 9px;
  615. font-weight: bold;
  616. vertical-align: middle;
  617. }
  618. table td {
  619. vertical-align: top;
  620. border-top: 1px solid #ddd;
  621. }
  622. table tbody th {
  623. border-top: 1px solid #ddd;
  624. vertical-align: top;
  625. }
  626. /* Patterns.less
  627. * Repeatable UI elements outside the base styles provided from the scaffolding
  628. * ---------------------------------------------------------------------------- */
  629. header {
  630. height: 40px;
  631. position: fixed;
  632. top: 0;
  633. left: 0;
  634. right: 0;
  635. z-index: 10000;
  636. overflow: visible;
  637. color: #BFBFBF;
  638. }
  639. header a {
  640. color: #bfbfbf;
  641. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  642. }
  643. header h3 a:hover, header .brand:hover, header ul .active > a {
  644. background-color: #333;
  645. background-color: rgba(255, 255, 255, 0.05);
  646. color: #ffffff;
  647. text-decoration: none;
  648. }
  649. header h3 {
  650. position: relative;
  651. }
  652. header h3 a, header .brand {
  653. float: left;
  654. display: block;
  655. padding: 8px 20px 12px;
  656. margin-left: -20px;
  657. color: #ffffff;
  658. font-size: 20px;
  659. font-weight: 200;
  660. line-height: 1;
  661. }
  662. header p {
  663. margin: 0;
  664. line-height: 40px;
  665. }
  666. header .fill {
  667. background-color: #222;
  668. background-color: #222222;
  669. background-repeat: repeat-x;
  670. background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
  671. background-image: -moz-linear-gradient(top, #333333, #222222);
  672. background-image: -ms-linear-gradient(top, #333333, #222222);
  673. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
  674. background-image: -webkit-linear-gradient(top, #333333, #222222);
  675. background-image: -o-linear-gradient(top, #333333, #222222);
  676. background-image: linear-gradient(top, #333333, #222222);
  677. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
  678. -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  679. -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  680. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  681. padding: 0 5px;
  682. }
  683. header div > ul, .nav {
  684. display: block;
  685. float: left;
  686. margin: 0 10px 0 0;
  687. position: relative;
  688. left: 0;
  689. }
  690. header div > ul > li, .nav > li {
  691. display: block;
  692. float: left;
  693. }
  694. header div > ul a, .nav a {
  695. display: block;
  696. float: none;
  697. padding: 10px 10px 11px;
  698. line-height: 19px;
  699. text-decoration: none;
  700. }
  701. header div > ul a:hover, .nav a:hover {
  702. color: #ffffff;
  703. text-decoration: none;
  704. }
  705. header div > ul .active > a, .nav .active > a {
  706. background-color: #222;
  707. background-color: rgba(0, 0, 0, 0.5);
  708. }
  709. header div > ul.secondary-nav, .nav.secondary-nav {
  710. float: right;
  711. margin-left: 10px;
  712. margin-right: 0;
  713. }
  714. header div > ul.secondary-nav .menu-dropdown,
  715. .nav.secondary-nav .menu-dropdown,
  716. header div > ul.secondary-nav .dropdown-menu,
  717. .nav.secondary-nav .dropdown-menu {
  718. right: 0;
  719. border: 0;
  720. }
  721. header div > ul a.menu:hover,
  722. .nav a.menu:hover,
  723. header div > ul li.open .menu,
  724. .nav li.open .menu,
  725. header div > ul .dropdown-toggle:hover,
  726. .nav .dropdown-toggle:hover,
  727. header div > ul .dropdown.open .dropdown-toggle,
  728. .nav .dropdown.open .dropdown-toggle {
  729. background: #444;
  730. background: rgba(255, 255, 255, 0.05);
  731. }
  732. header div > ul .menu-dropdown,
  733. .nav .menu-dropdown,
  734. header div > ul .dropdown-menu,
  735. .nav .dropdown-menu {
  736. background-color: #333;
  737. }
  738. header div > ul .menu-dropdown a.menu,
  739. .nav .menu-dropdown a.menu,
  740. header div > ul .dropdown-menu a.menu,
  741. .nav .dropdown-menu a.menu,
  742. header div > ul .menu-dropdown .dropdown-toggle,
  743. .nav .menu-dropdown .dropdown-toggle,
  744. header div > ul .dropdown-menu .dropdown-toggle,
  745. .nav .dropdown-menu .dropdown-toggle {
  746. color: #ffffff;
  747. }
  748. header div > ul .menu-dropdown a.menu.open,
  749. .nav .menu-dropdown a.menu.open,
  750. header div > ul .dropdown-menu a.menu.open,
  751. .nav .dropdown-menu a.menu.open,
  752. header div > ul .menu-dropdown .dropdown-toggle.open,
  753. .nav .menu-dropdown .dropdown-toggle.open,
  754. header div > ul .dropdown-menu .dropdown-toggle.open,
  755. .nav .dropdown-menu .dropdown-toggle.open {
  756. background: #444;
  757. background: rgba(255, 255, 255, 0.05);
  758. }
  759. header div > ul .menu-dropdown li a,
  760. .nav .menu-dropdown li a,
  761. header div > ul .dropdown-menu li a,
  762. .nav .dropdown-menu li a {
  763. color: #999;
  764. text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
  765. }
  766. header div > ul .menu-dropdown li a:hover,
  767. .nav .menu-dropdown li a:hover,
  768. header div > ul .dropdown-menu li a:hover,
  769. .nav .dropdown-menu li a:hover {
  770. background-color: #191919;
  771. background-repeat: repeat-x;
  772. background-image: -khtml-gradient(linear, left top, left bottom, from(#292929), to(#191919));
  773. background-image: -moz-linear-gradient(top, #292929, #191919);
  774. background-image: -ms-linear-gradient(top, #292929, #191919);
  775. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #292929), color-stop(100%, #191919));
  776. background-image: -webkit-linear-gradient(top, #292929, #191919);
  777. background-image: -o-linear-gradient(top, #292929, #191919);
  778. background-image: linear-gradient(top, #292929, #191919);
  779. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#292929', endColorstr='#191919', GradientType=0);
  780. color: #ffffff;
  781. }
  782. header div > ul .menu-dropdown .active a,
  783. .nav .menu-dropdown .active a,
  784. header div > ul .dropdown-menu .active a,
  785. .nav .dropdown-menu .active a {
  786. color: #ffffff;
  787. }
  788. header div > ul .menu-dropdown .divider,
  789. .nav .menu-dropdown .divider,
  790. header div > ul .dropdown-menu .divider,
  791. .nav .dropdown-menu .divider {
  792. background-color: #222;
  793. border-color: #444;
  794. }
  795. header ul .menu-dropdown li a, header ul .dropdown-menu li a {
  796. padding: 4px 15px;
  797. }
  798. li.menu, .dropdown {
  799. position: relative;
  800. }
  801. a.menu:after, .dropdown-toggle:after {
  802. width: 0;
  803. height: 0;
  804. display: inline-block;
  805. content: "&darr;";
  806. text-indent: -99999px;
  807. vertical-align: top;
  808. margin-top: 8px;
  809. margin-left: 4px;
  810. border-left: 4px solid transparent;
  811. border-right: 4px solid transparent;
  812. border-top: 4px solid #ffffff;
  813. filter: alpha(opacity=50);
  814. -khtml-opacity: 0.5;
  815. -moz-opacity: 0.5;
  816. opacity: 0.5;
  817. }
  818. .menu-dropdown, .dropdown-menu {
  819. background-color: #ffffff;
  820. float: left;
  821. position: absolute;
  822. top: 40px;
  823. left: -9999px;
  824. z-index: 900;
  825. min-width: 160px;
  826. max-width: 220px;
  827. _width: 160px;
  828. margin-left: 0;
  829. margin-right: 0;
  830. padding: 6px 0;
  831. zoom: 1;
  832. border-color: #999;
  833. border-color: rgba(0, 0, 0, 0.2);
  834. border-style: solid;
  835. border-width: 0 1px 1px;
  836. -webkit-border-radius: 0 0 6px 6px;
  837. -moz-border-radius: 0 0 6px 6px;
  838. border-radius: 0 0 6px 6px;
  839. -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  840. -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  841. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  842. -webkit-background-clip: padding-box;
  843. -moz-background-clip: padding-box;
  844. background-clip: padding-box;
  845. }
  846. .menu-dropdown li, .dropdown-menu li {
  847. float: none;
  848. display: block;
  849. background-color: none;
  850. }
  851. .menu-dropdown .divider, .dropdown-menu .divider {
  852. height: 1px;
  853. margin: 5px 0;
  854. overflow: hidden;
  855. background-color: #eee;
  856. border-bottom: 1px solid #ffffff;
  857. }
  858. header .dropdown-menu a, .dropdown-menu a {
  859. display: block;
  860. padding: 4px 15px;
  861. clear: both;
  862. font-weight: normal;
  863. line-height: 18px;
  864. color: #808080;
  865. text-shadow: 0 1px 0 #ffffff;
  866. }
  867. header .dropdown-menu a:hover,
  868. .dropdown-menu a:hover,
  869. header .dropdown-menu a.hover,
  870. .dropdown-menu a.hover {
  871. background-color: #dddddd;
  872. background-repeat: repeat-x;
  873. background-image: -khtml-gradient(linear, left top, left bottom, from(#eeeeee), to(#dddddd));
  874. background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
  875. background-image: -ms-linear-gradient(top, #eeeeee, #dddddd);
  876. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-stop(100%, #dddddd));
  877. background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
  878. background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
  879. background-image: linear-gradient(top, #eeeeee, #dddddd);
  880. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#dddddd', GradientType=0);
  881. color: #404040;
  882. text-decoration: none;
  883. -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025);
  884. -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025);
  885. box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025);
  886. }
  887. .open .menu,
  888. .dropdown.open .menu,
  889. .open .dropdown-toggle,
  890. .dropdown.open .dropdown-toggle {
  891. color: #ffffff;
  892. background: #ccc;
  893. background: rgba(0, 0, 0, 0.3);
  894. }
  895. .open .menu-dropdown,
  896. .dropdown.open .menu-dropdown,
  897. .open .dropdown-menu,
  898. .dropdown.open .dropdown-menu {
  899. left: 0;
  900. }
  901. .dropdown:hover ul.dropdown-menu {
  902. left: 0;
  903. }
  904. .dropdown-menu .dropdown-menu {
  905. position: absolute;
  906. left: 159px;
  907. }
  908. .dropdown-menu li {
  909. position: relative;
  910. }
  911. .tabs, .cbi-tabmenu {
  912. margin: 0 0 18px;
  913. padding: 0;
  914. list-style: none;
  915. zoom: 1;
  916. }
  917. .tabs:before,
  918. .cbi-tabmenu:before,
  919. .tabs:after,
  920. .cbi-tabmenu:after {
  921. display: table;
  922. content: "";
  923. zoom: 1;
  924. }
  925. .tabs:after, .cbi-tabmenu:after {
  926. clear: both;
  927. }
  928. .tabs > li, .cbi-tabmenu > li {
  929. float: left;
  930. }
  931. .tabs > li > a, .cbi-tabmenu > li > a {
  932. display: block;
  933. }
  934. .tabs,
  935. .cbi-tabmenu {
  936. border-color: #ddd;
  937. border-style: solid;
  938. border-width: 0 0 1px;
  939. }
  940. .tabs > li,
  941. .cbi-tabmenu > li {
  942. position: relative;
  943. margin-bottom: -1px;
  944. }
  945. .tabs > li > a,
  946. .cbi-tabmenu > li > a {
  947. padding: 0 15px;
  948. margin-right: 2px;
  949. line-height: 34px;
  950. border: 1px solid transparent;
  951. -webkit-border-radius: 4px 4px 0 0;
  952. -moz-border-radius: 4px 4px 0 0;
  953. border-radius: 4px 4px 0 0;
  954. }
  955. .tabs > li > a:hover,
  956. .cbi-tabmenu > li > a:hover {
  957. text-decoration: none;
  958. background-color: #eee;
  959. border-color: #eee #eee #ddd;
  960. }
  961. .tabs .active > a, .tabs .active > a:hover,
  962. .cbi-tabmenu .active > a, .cbi-tabmenu .active > a:hover,
  963. .cbi-tab > a:link, .cbi-tab > a:hover {
  964. color: #808080;
  965. background-color: #ffffff;
  966. border: 1px solid #ddd;
  967. border-bottom-color: transparent;
  968. cursor: default;
  969. }
  970. .tabs .menu-dropdown, .tabs .dropdown-menu,
  971. .cbi-tabmenu .menu-dropdown, .cbi-tabmenu .dropdown-menu {
  972. top: 35px;
  973. border-width: 1px;
  974. -webkit-border-radius: 0 6px 6px 6px;
  975. -moz-border-radius: 0 6px 6px 6px;
  976. border-radius: 0 6px 6px 6px;
  977. }
  978. .tabs a.menu:after, .tabs .dropdown-toggle:after,
  979. .cbi-tabmenu a.menu:after, .cbi-tabmenu .dropdown-toggle:after {
  980. border-top-color: #999;
  981. margin-top: 15px;
  982. margin-left: 5px;
  983. }
  984. .tabs li.open.menu .menu, .tabs .open.dropdown .dropdown-toggle,
  985. .cbi-tabmenu li.open.menu .menu, .cbi-tabmenu .open.dropdown .dropdown-toggle {
  986. border-color: #999;
  987. }
  988. .tabs li.open a.menu:after, .tabs .dropdown.open .dropdown-toggle:after,
  989. .cbi-tabmenu li.open a.menu:after, .cbi-tabmenu .dropdown.open .dropdown-toggle:after {
  990. border-top-color: #555;
  991. }
  992. .tab-content > .tab-pane,
  993. .tab-content > div {
  994. display: none;
  995. }
  996. .tab-content > .active {
  997. display: block;
  998. }
  999. .breadcrumb {
  1000. padding: 7px 14px;
  1001. margin: 0 0 18px;
  1002. background-color: #f5f5f5;
  1003. background-repeat: repeat-x;
  1004. background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#f5f5f5));
  1005. background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
  1006. background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
  1007. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f5f5f5));
  1008. background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
  1009. background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
  1010. background-image: linear-gradient(top, #ffffff, #f5f5f5);
  1011. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
  1012. border: 1px solid #ddd;
  1013. -webkit-border-radius: 3px;
  1014. -moz-border-radius: 3px;
  1015. border-radius: 3px;
  1016. -webkit-box-shadow: inset 0 1px 0 #ffffff;
  1017. -moz-box-shadow: inset 0 1px 0 #ffffff;
  1018. box-shadow: inset 0 1px 0 #ffffff;
  1019. }
  1020. .breadcrumb li {
  1021. display: inline;
  1022. text-shadow: 0 1px 0 #ffffff;
  1023. }
  1024. .breadcrumb .divider {
  1025. padding: 0 5px;
  1026. color: #bfbfbf;
  1027. }
  1028. .breadcrumb .active a {
  1029. color: #404040;
  1030. }
  1031. footer {
  1032. margin-top: 17px;
  1033. padding-top: 17px;
  1034. border-top: 1px solid #eee;
  1035. }
  1036. .btn.danger,
  1037. .alert-message.danger,
  1038. .btn.danger:hover,
  1039. .alert-message.danger:hover,
  1040. .btn.error,
  1041. .alert-message.error,
  1042. .btn.error:hover,
  1043. .alert-message.error:hover,
  1044. .btn.success,
  1045. .alert-message.success,
  1046. .btn.success:hover,
  1047. .alert-message.success:hover,
  1048. .btn.info,
  1049. .alert-message.info,
  1050. .btn.info:hover,
  1051. .alert-message.info:hover {
  1052. color: #ffffff;
  1053. }
  1054. .btn .close, .alert-message .close {
  1055. font-family: Arial, sans-serif;
  1056. line-height: 18px;
  1057. }
  1058. .btn.danger,
  1059. .alert-message.danger,
  1060. .btn.error,
  1061. .alert-message.error {
  1062. background-color: #c43c35;
  1063. background-repeat: repeat-x;
  1064. background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
  1065. background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  1066. background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
  1067. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
  1068. background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  1069. background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  1070. background-image: linear-gradient(top, #ee5f5b, #c43c35);
  1071. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
  1072. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  1073. border-color: #c43c35 #c43c35 #882a25;
  1074. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  1075. }
  1076. .btn.success, .alert-message.success {
  1077. background-color: #57a957;
  1078. background-repeat: repeat-x;
  1079. background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
  1080. background-image: -moz-linear-gradient(top, #62c462, #57a957);
  1081. background-image: -ms-linear-gradient(top, #62c462, #57a957);
  1082. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
  1083. background-image: -webkit-linear-gradient(top, #62c462, #57a957);
  1084. background-image: -o-linear-gradient(top, #62c462, #57a957);
  1085. background-image: linear-gradient(top, #62c462, #57a957);
  1086. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
  1087. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  1088. border-color: #57a957 #57a957 #3d773d;
  1089. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  1090. }
  1091. .btn.info, .alert-message.info {
  1092. background-color: #339bb9;
  1093. background-repeat: repeat-x;
  1094. background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));
  1095. background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
  1096. background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
  1097. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));
  1098. background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
  1099. background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
  1100. background-image: linear-gradient(top, #5bc0de, #339bb9);
  1101. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
  1102. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  1103. border-color: #339bb9 #339bb9 #22697d;
  1104. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  1105. }
  1106. .btn,
  1107. .cbi-button {
  1108. cursor: pointer;
  1109. display: inline-block;
  1110. background-color: #e6e6e6;
  1111. background-repeat: no-repeat;
  1112. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  1113. background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1114. background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  1115. background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1116. background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1117. background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1118. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  1119. padding: 5px 14px 6px;
  1120. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  1121. color: #333;
  1122. font-size: 13px;
  1123. line-height: normal;
  1124. border: 1px solid #ccc;
  1125. border-bottom-color: #bbb;
  1126. -webkit-border-radius: 4px;
  1127. -moz-border-radius: 4px;
  1128. border-radius: 4px;
  1129. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  1130. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  1131. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  1132. }
  1133. .btn:hover,
  1134. .cbi-button:hover {
  1135. color: #333;
  1136. text-decoration: none;
  1137. }
  1138. .btn:focus,
  1139. .cbi-button:focus {
  1140. outline: 1px dotted #666;
  1141. }
  1142. .btn.primary,
  1143. .cbi-page-actions .cbi-button-apply,
  1144. .cbi-page-actions .cbi-button-save,
  1145. .cbi-page-actions .cbi-button-reset {
  1146. color: #ffffff;
  1147. padding: 5px 14px 6px;
  1148. background-color: #0064cd;
  1149. background-repeat: repeat-x;
  1150. background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  1151. background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  1152. background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  1153. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  1154. background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  1155. background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  1156. background-image: linear-gradient(top, #049cdb, #0064cd);
  1157. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
  1158. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  1159. border-color: #0064cd #0064cd #003f81;
  1160. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  1161. }
  1162. .cbi-input-invalid,
  1163. .cbi-value-error input {
  1164. color: #FF0000;
  1165. border-color: #FF0000;
  1166. }
  1167. .cbi-button-up,
  1168. .cbi-input-up {
  1169. background-position: center center;
  1170. background-image: url('../resources/cbi/up.gif'), -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  1171. background-image: url('../resources/cbi/up.gif'), -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1172. background-image: url('../resources/cbi/up.gif'), -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  1173. background-image: url('../resources/cbi/up.gif'), -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1174. background-image: url('../resources/cbi/up.gif'), -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1175. background-image: url('../resources/cbi/up.gif'), linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1176. }
  1177. .cbi-button-down,
  1178. .cbi-input-down {
  1179. background-position: center center;
  1180. background-image: url('../resources/cbi/down.gif'), -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  1181. background-image: url('../resources/cbi/down.gif'), -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1182. background-image: url('../resources/cbi/down.gif'), -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  1183. background-image: url('../resources/cbi/down.gif'), -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1184. background-image: url('../resources/cbi/down.gif'), -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1185. background-image: url('../resources/cbi/down.gif'), linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1186. }
  1187. .cbi-button-find,
  1188. .cbi-input-find {
  1189. background-position: 6px center, left top;
  1190. padding-left: 28px;
  1191. background-image: url('../resources/cbi/find.gif'), -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  1192. background-image: url('../resources/cbi/find.gif'), -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1193. background-image: url('../resources/cbi/find.gif'), -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  1194. background-image: url('../resources/cbi/find.gif'), -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1195. background-image: url('../resources/cbi/find.gif'), -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1196. background-image: url('../resources/cbi/find.gif'), linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1197. }
  1198. .cbi-button-add,
  1199. .cbi-input-add {
  1200. background-position: 6px center, left top;
  1201. padding-left: 28px;
  1202. background-image: url('../resources/cbi/add.gif'), -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  1203. background-image: url('../resources/cbi/add.gif'), -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1204. background-image: url('../resources/cbi/add.gif'), -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  1205. background-image: url('../resources/cbi/add.gif'), -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1206. background-image: url('../resources/cbi/add.gif'), -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1207. background-image: url('../resources/cbi/add.gif'), linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1208. }
  1209. .cbi-button-apply,
  1210. .cbi-input-apply {
  1211. background-position: 6px center, left top;
  1212. padding-left: 28px;
  1213. background-image: url('../resources/cbi/apply.gif'), -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  1214. background-image: url('../resources/cbi/apply.gif'), -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1215. background-image: url('../resources/cbi/apply.gif'), -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  1216. background-image: url('../resources/cbi/apply.gif'), -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1217. background-image: url('../resources/cbi/apply.gif'), -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1218. background-image: url('../resources/cbi/apply.gif'), linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1219. }
  1220. .cbi-button-reset,
  1221. .cbi-input-reset {
  1222. background-position: 6px center, left top;
  1223. padding-left: 28px;
  1224. background-image: url('../resources/cbi/reset.gif'), -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  1225. background-image: url('../resources/cbi/reset.gif'), -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1226. background-image: url('../resources/cbi/reset.gif'), -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  1227. background-image: url('../resources/cbi/reset.gif'), -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1228. background-image: url('../resources/cbi/reset.gif'), -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1229. background-image: url('../resources/cbi/reset.gif'), linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1230. }
  1231. .cbi-button-edit,
  1232. .cbi-input-edit {
  1233. background-position: 6px center, left top;
  1234. padding-left: 28px;
  1235. background-image: url('../resources/cbi/edit.gif'), -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  1236. background-image: url('../resources/cbi/edit.gif'), -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1237. background-image: url('../resources/cbi/edit.gif'), -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  1238. background-image: url('../resources/cbi/edit.gif'), -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1239. background-image: url('../resources/cbi/edit.gif'), -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1240. background-image: url('../resources/cbi/edit.gif'), linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1241. }
  1242. .cbi-button-remove,
  1243. .cbi-input-remove {
  1244. background-position: 6px center, left top;
  1245. padding-left: 28px;
  1246. background-image: url('../resources/cbi/remove.gif'), -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  1247. background-image: url('../resources/cbi/remove.gif'), -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1248. background-image: url('../resources/cbi/remove.gif'), -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  1249. background-image: url('../resources/cbi/remove.gif'), -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1250. background-image: url('../resources/cbi/remove.gif'), -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1251. background-image: url('../resources/cbi/remove.gif'), linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1252. }
  1253. .cbi-button-reload,
  1254. .cbi-input-reload {
  1255. background-position: 6px center, left top;
  1256. padding-left: 28px;
  1257. background-image: url('../resources/cbi/reload.gif'), -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  1258. background-image: url('../resources/cbi/reload.gif'), -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1259. background-image: url('../resources/cbi/reload.gif'), -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  1260. background-image: url('../resources/cbi/reload.gif'), -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1261. background-image: url('../resources/cbi/reload.gif'), -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1262. background-image: url('../resources/cbi/reload.gif'), linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1263. }
  1264. .cbi-button-link,
  1265. .cbi-input-link {
  1266. background-position: 6px center, left top;
  1267. padding-left: 28px;
  1268. background-image: url('../resources/cbi/link.gif'), -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  1269. background-image: url('../resources/cbi/link.gif'), -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1270. background-image: url('../resources/cbi/link.gif'), -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  1271. background-image: url('../resources/cbi/link.gif'), -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1272. background-image: url('../resources/cbi/link.gif'), -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1273. background-image: url('../resources/cbi/link.gif'), linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1274. }
  1275. .cbi-button-download,
  1276. .cbi-input-download {
  1277. background-position: 6px center, left top;
  1278. padding-left: 28px;
  1279. background-image: url('../resources/cbi/download.gif'), -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  1280. background-image: url('../resources/cbi/download.gif'), -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1281. background-image: url('../resources/cbi/download.gif'), -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  1282. background-image: url('../resources/cbi/download.gif'), -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1283. background-image: url('../resources/cbi/download.gif'), -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1284. background-image: url('../resources/cbi/download.gif'), linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1285. }
  1286. .btn.active, .btn:active {
  1287. -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
  1288. -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
  1289. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
  1290. }
  1291. .btn.disabled {
  1292. cursor: default;
  1293. background-image: none;
  1294. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  1295. filter: alpha(opacity=65);
  1296. -khtml-opacity: 0.65;
  1297. -moz-opacity: 0.65;
  1298. opacity: 0.65;
  1299. -webkit-box-shadow: none;
  1300. -moz-box-shadow: none;
  1301. box-shadow: none;
  1302. }
  1303. .btn[disabled] {
  1304. cursor: default;
  1305. background-image: none;
  1306. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  1307. filter: alpha(opacity=65);
  1308. -khtml-opacity: 0.65;
  1309. -moz-opacity: 0.65;
  1310. opacity: 0.65;
  1311. -webkit-box-shadow: none;
  1312. -moz-box-shadow: none;
  1313. box-shadow: none;
  1314. }
  1315. .btn.large {
  1316. font-size: 15px;
  1317. line-height: normal;
  1318. padding: 9px 14px 9px;
  1319. -webkit-border-radius: 6px;
  1320. -moz-border-radius: 6px;
  1321. border-radius: 6px;
  1322. }
  1323. .btn.small {
  1324. padding: 7px 9px 7px;
  1325. font-size: 11px;
  1326. }
  1327. /* Button icons for specific pages */
  1328. .Startup .cbi-section-table input.cbi-input-apply,
  1329. .Startup .cbi-section-table input.cbi-button-apply {
  1330. background-image: url("../resources/cbi/apply.gif");
  1331. background-position: 7px 4px;
  1332. padding: 3px 9px 3px 27px;
  1333. }
  1334. .Processes .cbi-section-table input.cbi-input-reload,
  1335. .Startup .cbi-section-table input.cbi-input-reload {
  1336. background-image: url("../resources/cbi/reload.gif");
  1337. background-position: 7px 4px;
  1338. padding: 3px 9px 3px 27px;
  1339. }
  1340. .Processes .cbi-section-table input.cbi-input-remove,
  1341. .Processes .cbi-section-table div.cbi-section-remove input,
  1342. .Startup .cbi-section-table input.cbi-input-remove,
  1343. .Startup .cbi-section-table div.cbi-section-remove input {
  1344. background-image: url("../resources/cbi/remove.gif");
  1345. background-position: 7px 4px;
  1346. padding: 3px 9px 3px 27px;
  1347. }
  1348. .Processes .cbi-section-table input.cbi-input-reset,
  1349. .Processes .cbi-section-table input.cbi-button-reset,
  1350. .Startup .cbi-section-table input.cbi-input-reset,
  1351. .Startup .cbi-section-table input.cbi-button-reset {
  1352. background-image: url("../resources/cbi/reset.gif");
  1353. background-position: 7px 4px;
  1354. padding: 3px 9px 3px 27px;
  1355. }
  1356. .Startup .cbi-section-table input.cbi-input-save,
  1357. .Startup .cbi-section-table input.cbi-button-save {
  1358. background-image: url("../resources/cbi/save.gif");
  1359. background-position: 7px 4px;
  1360. padding: 3px 9px 3px 27px;
  1361. }
  1362. :root .alert-message, :root .btn {
  1363. border-radius: 0 0;
  1364. }
  1365. button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
  1366. padding: 0;
  1367. border: 0;
  1368. }
  1369. .close {
  1370. float: right;
  1371. color: #000000;
  1372. font-size: 20px;
  1373. font-weight: bold;
  1374. line-height: 13.5px;
  1375. text-shadow: 0 1px 0 #ffffff;
  1376. filter: alpha(opacity=25);
  1377. -khtml-opacity: 0.25;
  1378. -moz-opacity: 0.25;
  1379. opacity: 0.25;
  1380. }
  1381. .close:hover {
  1382. color: #000000;
  1383. text-decoration: none;
  1384. filter: alpha(opacity=40);
  1385. -khtml-opacity: 0.4;
  1386. -moz-opacity: 0.4;
  1387. opacity: 0.4;
  1388. }
  1389. .alert-message {
  1390. position: relative;
  1391. padding: 7px 15px;
  1392. margin-bottom: 18px;
  1393. color: #404040;
  1394. background-color: #eedc94;
  1395. background-repeat: repeat-x;
  1396. background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));
  1397. background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
  1398. background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
  1399. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));
  1400. background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
  1401. background-image: -o-linear-gradient(top, #fceec1, #eedc94);
  1402. background-image: linear-gradient(top, #fceec1, #eedc94);
  1403. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0);
  1404. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  1405. border-color: #eedc94 #eedc94 #e4c652;
  1406. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  1407. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  1408. border-width: 1px;
  1409. border-style: solid;
  1410. -webkit-border-radius: 4px;
  1411. -moz-border-radius: 4px;
  1412. border-radius: 4px;
  1413. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  1414. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  1415. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  1416. }
  1417. .alert-message .close {
  1418. margin-top: 1px;
  1419. *margin-top: 0;
  1420. }
  1421. .alert-message a {
  1422. font-weight: bold;
  1423. color: #404040;
  1424. }
  1425. .alert-message.danger p a,
  1426. .alert-message.error p a,
  1427. .alert-message.success p a,
  1428. .alert-message.info p a {
  1429. color: #ffffff;
  1430. }
  1431. .alert-message h5 {
  1432. line-height: 18px;
  1433. }
  1434. .alert-message p {
  1435. margin-bottom: 0;
  1436. }
  1437. .alert-message div {
  1438. margin-top: 5px;
  1439. margin-bottom: 2px;
  1440. line-height: 28px;
  1441. }
  1442. .alert-message .btn {
  1443. -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  1444. -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  1445. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
  1446. }
  1447. .label {
  1448. padding: 1px 3px 2px;
  1449. font-size: 9.75px;
  1450. font-weight: bold;
  1451. color: #ffffff !important;
  1452. text-transform: uppercase;
  1453. white-space: nowrap;
  1454. background-color: #bfbfbf;
  1455. -webkit-border-radius: 3px;
  1456. -moz-border-radius: 3px;
  1457. border-radius: 3px;
  1458. text-shadow: none;
  1459. }
  1460. a.label:link,
  1461. a.label:visited {
  1462. color: #ffffff;
  1463. }
  1464. a.label:hover {
  1465. text-decoration: none;
  1466. }
  1467. .label.important {
  1468. background-color: #c43c35;
  1469. }
  1470. .label.warning {
  1471. background-color: #f89406;
  1472. }
  1473. .label.success {
  1474. background-color: #46a546;
  1475. }
  1476. .label.notice {
  1477. background-color: #62cffc;
  1478. }
  1479. /* LuCI specific items */
  1480. .hidden { display: none }
  1481. #memtotal > div,
  1482. #memfree > div,
  1483. #memcache > div,
  1484. #membuff > div,
  1485. #conns > div {
  1486. border: 1px solid #CCCCCC;
  1487. border-radius: 3px 3px 3px 3px;
  1488. color: #808080;
  1489. display: inline-block;
  1490. font-size: 13px;
  1491. height: 22 dpx;
  1492. line-height: 18px;
  1493. }
  1494. #xhr_poll_status {
  1495. cursor: pointer;
  1496. }
  1497. form.inline { display: inline }
  1498. header .pull-right { padding-top: 8px; }
  1499. #modemenu li:last-child span.divider { display: none }
  1500. #syslog { width: 100%; }
  1501. .cbi-section-table tbody tr:nth-child(odd) td, .cbi-section-table tbody tr:nth-child(odd) th {
  1502. background-color: #f9f9f9;
  1503. }
  1504. .cbi-section-table tbody tr:hover td, .cbi-section-table tbody tr:hover th {
  1505. background-color: #f5f5f5;
  1506. }
  1507. .cbi-section-table tr.cbi-section-table-descr th {
  1508. font-weight: normal;
  1509. }
  1510. .left { text-align: left !important; }
  1511. .right { text-align: right !important; }
  1512. .cbi-value-field { line-height: 1.5em; }
  1513. .cbi-value-field input[type=checkbox],
  1514. .cbi-value-field input[type=radio] {
  1515. margin-top: 8px;
  1516. margin-right: 6px;
  1517. }
  1518. table table td,
  1519. .cbi-value-field table td {
  1520. border: none;
  1521. }
  1522. table.cbi-section-table input,
  1523. table.cbi-section-table textarea,
  1524. table.cbi-section-table select {
  1525. width: auto;
  1526. }
  1527. table.cbi-section-table td.cbi-section-table-cell {
  1528. white-space: nowrap;
  1529. text-align: right;
  1530. }
  1531. table.cbi-section-table td.cbi-section-table-cell select {
  1532. width: inherit;
  1533. }
  1534. .cbi-value-description { display: inline; }
  1535. .cbi-value-description img { vertical-align: middle; }
  1536. .cbi-section-error {
  1537. border: 1px solid #FF0000;
  1538. border-radius: 3px;
  1539. background-color: #FCE6E6;
  1540. padding: 5px;
  1541. }
  1542. .cbi-section-error ul { margin: 0 0 0 20px; }
  1543. .cbi-section-error ul li {
  1544. color: #FF0000;
  1545. font-weight: bold;
  1546. }
  1547. .ifacebox {
  1548. background-color: #FFFFFF;
  1549. border: 1px solid #CCCCCC;
  1550. margin: 0 10px;
  1551. text-align: center;
  1552. white-space: nowrap;
  1553. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  1554. background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1555. background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  1556. background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1557. background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1558. background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1559. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  1560. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  1561. -webkit-border-radius: 4px;
  1562. -moz-border-radius: 4px;
  1563. border-radius: 4px;
  1564. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  1565. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  1566. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  1567. }
  1568. .ifacebox .ifacebox-head {
  1569. border-bottom: 1px solid #CCCCCC;
  1570. padding: 2px;
  1571. }
  1572. .ifacebox .ifacebox-body {
  1573. padding: 6px;
  1574. }
  1575. .ifacebadge {
  1576. display: inline-block;
  1577. white-space: nowrap;
  1578. background-color: #FFFFFF;
  1579. border: 1px solid #CCCCCC;
  1580. padding: 2px;
  1581. margin-left: 2px;
  1582. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  1583. background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1584. background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  1585. background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1586. background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1587. background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  1588. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  1589. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  1590. -webkit-border-radius: 4px;
  1591. -moz-border-radius: 4px;
  1592. border-radius: 4px;
  1593. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  1594. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  1595. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  1596. }
  1597. .ifacebadge-active {
  1598. border-color: #000000;
  1599. font-weight: bold;
  1600. }
  1601. .zonebadge {
  1602. padding: 2px;
  1603. border-radius: 4px;
  1604. display: inline-block;
  1605. white-space: nowrap;
  1606. color: #666666;
  1607. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  1608. cursor: pointer;
  1609. }
  1610. .zonebadge > em,
  1611. .zonebadge > strong {
  1612. margin: 5px;
  1613. display: inline-block;
  1614. }
  1615. .zonebadge input {
  1616. width: 6em;
  1617. }
  1618. .zonebadge-empty {
  1619. border: 1px dashed #AAAAAA;
  1620. color: #AAAAAA;
  1621. font-style: italic;
  1622. font-size: smaller;
  1623. }
  1624. div.cbi-value var,
  1625. td.cbi-value-field var {
  1626. font-style: italic;
  1627. color: #0069D6;
  1628. }
  1629. .uci-change-list {
  1630. font-family: monospace;
  1631. }
  1632. .uci-change-list ins,
  1633. .uci-change-legend-label ins {
  1634. text-decoration: none;
  1635. border: 1px solid #00FF00;
  1636. background-color: #CCFFCC;
  1637. display: block;
  1638. padding: 2px;
  1639. }
  1640. .uci-change-list del,
  1641. .uci-change-legend-label del {
  1642. text-decoration: none;
  1643. border: 1px solid #FF0000;
  1644. background-color: #FFCCCC;
  1645. display: block;
  1646. font-style: normal;
  1647. padding: 2px;
  1648. }
  1649. .uci-change-list var,
  1650. .uci-change-legend-label var {
  1651. text-decoration: none;
  1652. border: 1px solid #CCCCCC;
  1653. background-color: #EEEEEE;
  1654. display: block;
  1655. font-style: normal;
  1656. padding: 2px;
  1657. }
  1658. .uci-change-list var ins,
  1659. .uci-change-list var del {
  1660. /*display: inline;*/
  1661. border: none;
  1662. white-space: pre;
  1663. font-style: normal;
  1664. padding: 0px;
  1665. }
  1666. .uci-change-legend {
  1667. padding: 5px;
  1668. }
  1669. .uci-change-legend-label {
  1670. width: 150px;
  1671. float: left;
  1672. }
  1673. .uci-change-legend-label > ins,
  1674. .uci-change-legend-label > del,
  1675. .uci-change-legend-label > var {
  1676. float: left;
  1677. margin-right: 4px;
  1678. width: 10px;
  1679. height: 10px;
  1680. display: block;
  1681. }
  1682. .uci-change-legend-label var ins,
  1683. .uci-change-legend-label var del {
  1684. line-height: 6px;
  1685. border: none;
  1686. }