cascade.scss 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029
  1. /* ATTENTION: This file is not compiled when building gluon.
  2. The compiled version is at ../files/www/luci-static/gluon/cascade.css
  3. Use sass like this to update it:
  4. sass cascade.scss ../files/www/luci-static/gluon/cascade.css
  5. When commiting changes to this file make sure to commit the respective
  6. changes to the compilid version within the same commit!
  7. */
  8. @charset "utf-8";
  9. $ffyellow: #ffb400;
  10. $ffmagenta: #dc0067;
  11. $ffzusatz: #009ee0;
  12. $red: #ee3300;
  13. @mixin button {
  14. &::-moz-focus-inner {
  15. padding: 0;
  16. border: 0;
  17. }
  18. display: inline-block;
  19. zoom: 1;
  20. line-height: normal;
  21. white-space: nowrap;
  22. vertical-align: baseline;
  23. text-align: center;
  24. cursor: pointer;
  25. -webkit-user-drag: none;
  26. -webkit-user-select: none;
  27. -moz-user-select: none;
  28. -ms-user-select: none;
  29. user-select: none;
  30. font-size: 100%;
  31. padding: 0.5em 1em;
  32. color: rgba(0, 0, 0, 0.80);
  33. border: none rgba(0, 0, 0, 0);
  34. background-color: #E6E6E6;
  35. text-decoration: none;
  36. border-radius: 2px;
  37. /* Transitions */
  38. -webkit-transition: 0.1s linear -webkit-box-shadow;
  39. -moz-transition: 0.1s linear -moz-box-shadow;
  40. -ms-transition: 0.1s linear box-shadow;
  41. -o-transition: 0.1s linear box-shadow;
  42. transition: 0.1s linear box-shadow;
  43. &:active {
  44. box-shadow: 0 0 0 1px rgba(0,0,0, 0.15) inset, 0 0 6px rgba(0,0,0, 0.20) inset;
  45. }
  46. &:focus {
  47. outline: 0;
  48. }
  49. &:hover, &:focus {
  50. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), color-stop(40%, rgba(0,0,0, 0.05)), to(rgba(0,0,0, 0.10)));
  51. background-image: -webkit-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
  52. background-image: -moz-linear-gradient(top, rgba(0,0,0, 0.05) 0%, rgba(0,0,0, 0.10));
  53. background-image: -o-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
  54. background-image: linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
  55. }
  56. &[disabled] {
  57. border: none;
  58. background-image: none;
  59. opacity: 0.40;
  60. cursor: not-allowed;
  61. box-shadow: none;
  62. }
  63. }
  64. @mixin button-primary {
  65. background-color: $ffzusatz;
  66. color: #fff;
  67. }
  68. .lang_he {
  69. direction: RTL;
  70. unicode-bidi: embed;
  71. }
  72. .hidden {
  73. display: none;
  74. }
  75. html {
  76. min-height: 100%;
  77. height: auto;
  78. position:relative;
  79. }
  80. body, input, select, option {
  81. font-family: 'Open Sans', Arial, sans-serif;
  82. font-size: 12pt;
  83. }
  84. body {
  85. color: rgb(77, 78, 83);
  86. line-height: 1.5em;
  87. margin: 0;
  88. display: flex;
  89. flex-direction: column;
  90. min-height: 100vh;
  91. background-color: #f3f3f3;
  92. }
  93. a img {
  94. border: none;
  95. text-decoration: none;
  96. }
  97. .tabmenu1 {
  98. text-align: center;
  99. }
  100. ul.tabmenu {
  101. list-style: none;
  102. padding: 0;
  103. margin: 2em 0;
  104. display: inline-flex;
  105. }
  106. ul.tabmenu li {
  107. white-space: nowrap;
  108. margin: 0 0.5em;
  109. padding: 0;
  110. text-align: center;
  111. a {
  112. display: block;
  113. text-decoration: none;
  114. padding: 1em;
  115. margin: 0;
  116. color: #333;
  117. border-radius: 2em;
  118. &:hover {
  119. background: lighten($ffyellow, 35);
  120. }
  121. }
  122. &.active a {
  123. font-weight: bold;
  124. background: white;
  125. color: #333;
  126. }
  127. }
  128. abbr,
  129. acronym {
  130. font-style: normal;
  131. font-variant: normal;
  132. }
  133. abbr[title],
  134. acronym[title] {
  135. border-bottom: 1px dotted;
  136. cursor: help;
  137. }
  138. a:link abbr[title],
  139. a:visited abbr[title],
  140. a:link acronym[title],
  141. a:visited acronym[title] {
  142. cursor: pointer;
  143. }
  144. code {
  145. font-family: monospace;
  146. white-space: pre;
  147. }
  148. #maincontent ul {
  149. margin-left: 2em;
  150. }
  151. .warning {
  152. color: red;
  153. background-color: white;
  154. font-weight: bold;
  155. }
  156. .clear {
  157. clear: both;
  158. }
  159. .error {
  160. color: #ff0000;
  161. background-color: white;
  162. }
  163. div.hostinfo {
  164. margin: 0;
  165. padding: 0;
  166. font-size: 80%;
  167. padding: 0.5em;
  168. flex: 1;
  169. font-weight: bold;
  170. }
  171. #xhr_poll_status {
  172. cursor: pointer;
  173. }
  174. #xhr_poll_status #xhr_poll_status_off {
  175. font-weight: bold;
  176. color: #FF0000;
  177. }
  178. #xhr_poll_status #xhr_poll_status_on {
  179. font-weight: bold;
  180. color: #00FF00;
  181. }
  182. #menubar {
  183. display: flex;
  184. background: $ffmagenta;
  185. color: #ffffff;
  186. }
  187. #menubar .warning {
  188. color: red;
  189. background-color: #557788;
  190. }
  191. #menubar a:link,
  192. #menubar a:visited {
  193. position: relative;
  194. display: block;
  195. padding: 0.5em;
  196. text-decoration: none;
  197. font-size: 80%;
  198. font-weight: normal;
  199. color: white;
  200. }
  201. #menubar a:link:hover,
  202. #menubar a:visited:hover,
  203. #menubar a:link:focus,
  204. #menubar a:visited:focus {
  205. background: $ffyellow;
  206. color: black;
  207. }
  208. #menubar a:link.active,
  209. #menubar a:visited.active {
  210. background: $ffyellow;
  211. color: black;
  212. font-weight: bold;
  213. }
  214. #menubar a:link.warning,
  215. #menubar a:visited.warning {
  216. background: #000000;
  217. color: red;
  218. font-weight: bold;
  219. }
  220. #modemenu {
  221. list-style: none;
  222. margin: 0;
  223. padding: 0;
  224. }
  225. #modemenu li {
  226. display: inline-block;
  227. }
  228. #savemenu {
  229. }
  230. .lang_he #savemenu {
  231. }
  232. .lang_de #submenu_admin_uci {
  233. width: 12em;
  234. }
  235. .lang_ru #submenu_admin_uci {
  236. width: 11.5em;
  237. }
  238. textarea#syslog {
  239. width: 98%;
  240. min-height: 500px;
  241. border: 3px solid #cccccc;
  242. padding: 5px;
  243. font-family: monospace;
  244. }
  245. #maincontent {
  246. padding: 0 1em 2em;
  247. max-width: 60em;
  248. min-width: 40em;
  249. margin: 1em auto;
  250. }
  251. .lang_he #maincontent {
  252. direction: rtl;
  253. }
  254. #maincontent h2 {
  255. }
  256. #maincontent h3 {
  257. }
  258. #maincontent p {
  259. margin-bottom: 1em;
  260. }
  261. .cbi-section {
  262. margin: 0;
  263. padding: 0;
  264. border: none;
  265. }
  266. .cbi-section legend {
  267. font-size: 1.4em;
  268. font-weight: bold;
  269. position: relative;
  270. padding: 0;
  271. margin-bottom: 0.5em;
  272. }
  273. .cbi-section h2 {
  274. margin: 0em 0 0.5em -0.5em !important;
  275. }
  276. .cbi-section h3 {
  277. text-decoration: none !important;
  278. font-weight: bold !important;
  279. color: #555555 !important;
  280. margin: 0.25em !important;
  281. font-size: 100% !important;
  282. }
  283. .cbi-section-descr {
  284. margin-bottom: 2em;
  285. }
  286. .cbi-title-ref {
  287. color: inherit;
  288. text-decoration: none;
  289. padding-right: 18px;
  290. background: url('../resources/cbi/link.gif') no-repeat scroll right center;
  291. background-color: inherit;
  292. }
  293. ul.cbi-apply {
  294. font-size: 90%;
  295. }
  296. input:-webkit-input-placeholder {
  297. color: #AAAAAA;
  298. }
  299. input:-moz-placeholder {
  300. color: #AAAAAA;
  301. }
  302. input:-ms-input-placeholder {
  303. color: #AAAAAA;
  304. }
  305. input[type=checkbox] {
  306. display: none;
  307. & + label {
  308. display: inline-block;
  309. width: 1em;
  310. height: 1em;
  311. margin: 0;
  312. }
  313. &:checked + label:after {
  314. content: '✔';
  315. color: $ffmagenta;
  316. vertical-align: middle;
  317. position: absolute;
  318. top: 50%;
  319. left: 0;
  320. margin-top: -0.5em;
  321. width: 100%;
  322. text-align: center;
  323. font-size: 1.7em;
  324. }
  325. }
  326. input[type=submit],
  327. input[type=reset],
  328. input[type=image],
  329. input[type=button] {
  330. cursor: pointer;
  331. }
  332. select,
  333. input,
  334. textarea,
  335. input[type=checkbox] + label {
  336. color: darken($ffzusatz, 30);
  337. border: none;
  338. background: lighten($ffyellow, 30);
  339. border-radius: 3pt;
  340. padding: 0.5em;
  341. }
  342. input[type=image] {
  343. border: none;
  344. }
  345. select,
  346. input[type=text],
  347. input[type=password] {
  348. width: 20em;
  349. }
  350. td select,
  351. td input[type=text],
  352. td input[type=password] {
  353. width: 99%;
  354. }
  355. img.cbi-image-button {
  356. cursor: pointer;
  357. margin: 0 2px;
  358. vertical-align: middle;
  359. }
  360. input.cbi-button {
  361. @include button;
  362. margin-left: 0.5em;
  363. background-repeat: no-repeat;
  364. }
  365. input.cbi-input-user {
  366. background-image: url('../resources/cbi/user.gif');
  367. background-repeat: no-repeat;
  368. background-position: 1px center;
  369. color: #000000;
  370. text-indent: 17px;
  371. }
  372. input.cbi-input-find,
  373. input.cbi-button-find {
  374. background-image: url('../resources/cbi/find.gif');
  375. color: #000000;
  376. padding-left: 17px;
  377. }
  378. input.cbi-input-reload {
  379. background-image: url('../resources/cbi/reload.gif');
  380. color: #000000;
  381. padding-left: 17px;
  382. }
  383. input.cbi-input-add,
  384. input.cbi-button-add {
  385. background-image: url('../resources/cbi/add.gif');
  386. color: #000000;
  387. padding-left: 17px;
  388. padding-right: 1px;
  389. }
  390. input.cbi-input-fieldadd,
  391. input.cbi-button-fieldadd {
  392. background-image: url(../resources/cbi/fieldadd.gif);
  393. color: #000000;
  394. padding-left: 17px;
  395. padding-right: 1px;
  396. }
  397. input.cbi-input-reset,
  398. input.cbi-button-reset {
  399. background-color: $red;
  400. color: #fff;
  401. }
  402. input.cbi-input-save,
  403. input.cbi-button-save {
  404. @include button-primary;
  405. }
  406. input.cbi-input-apply,
  407. input.cbi-button-apply {
  408. @include button-primary;
  409. }
  410. input.cbi-input-link,
  411. input.cbi-button-link {
  412. background-image: url('../resources/cbi/link.gif');
  413. color: #000000;
  414. padding-left: 17px;
  415. padding-right: 1px;
  416. }
  417. input.cbi-input-download,
  418. input.cbi-button-download {
  419. background-image: url('../resources/cbi/download.gif');
  420. color: #000000;
  421. padding-left: 17px;
  422. padding-right: 1px;
  423. }
  424. input.cbi-input-remove,
  425. div.cbi-section-remove input {
  426. background-image: url('../resources/cbi/remove.gif');
  427. color: #000000;
  428. padding-left: 17px;
  429. padding-right: 1px;
  430. }
  431. input.cbi-button-up {
  432. background-image: url('../resources/cbi/up.gif');
  433. padding-left: 11px;
  434. padding-right: 1px;
  435. }
  436. input.cbi-button-down {
  437. background-image: url('../resources/cbi/down.gif');
  438. padding-left: 11px;
  439. padding-right: 1px;
  440. }
  441. input.cbi-button-edit {
  442. background-image: url('../resources/cbi/edit.gif');
  443. color: #000000;
  444. padding-left: 17px;
  445. padding-right: 1px;
  446. }
  447. input.cbi-button-reload {
  448. background-image: url('../resources/cbi/reload.gif');
  449. color: #000000;
  450. padding-left: 17px;
  451. padding-right: 1px;
  452. }
  453. input.cbi-button-remove {
  454. background-image: url('../resources/cbi/remove.gif');
  455. color: #000000;
  456. padding-left: 17px;
  457. padding-right: 1px;
  458. }
  459. .cbi-input-invalid {
  460. background: $red !important;
  461. color: white;
  462. }
  463. div.cbi-section-remove input {
  464. border-bottom: none;
  465. }
  466. textarea {
  467. margin-left: -1px;
  468. margin-bottom: 0.5em;
  469. }
  470. table td,
  471. table th {
  472. color: #000000;
  473. }
  474. table.smalltext {
  475. background: #f5f5f5;
  476. color: #000000;
  477. border-top: 1px solid #666666;
  478. border-right: 1px solid #666666;
  479. border-bottom: 1px solid #666666;
  480. font-size: 90%;
  481. width: 80%;
  482. margin-left: auto;
  483. margin-right: auto;
  484. border-collapse: collapse;
  485. }
  486. table.smalltext tr:hover td {
  487. background-color: #bbddee;
  488. color: #000000;
  489. }
  490. table.smalltext tr th {
  491. padding: 0 0.25em;
  492. border-left: 1px solid #666666;
  493. text-align: left;
  494. }
  495. table.smalltext tr td {
  496. padding: 0 0.25em;
  497. border-top: 1px solid #666666;
  498. border-left: 1px solid #666666;
  499. }
  500. table.cbi-section-table .cbi-rowstyle-1 {
  501. background-color: #eeeeff;
  502. color: #000000;
  503. }
  504. table.cbi-section-table .cbi-rowstyle-1:hover,
  505. table.cbi-section-table .cbi-rowstyle-2:hover {
  506. background-color: #b2c8d4;
  507. color: #000000;
  508. }
  509. table.cbi-section-table .cbi-section-table-cell {
  510. padding: 3px;
  511. white-space: nowrap;
  512. }
  513. .cbi-section .cbi-rowstyle-1 h3 {
  514. background-color: #eeeeff;
  515. color: #555555;
  516. }
  517. .cbi-rowstyle-2 {
  518. color: #000000;
  519. }
  520. div.cbi-value {
  521. display: flex;
  522. flex-direction: row;
  523. margin-bottom: 0.5em;
  524. }
  525. .cbi-value-title {
  526. flex: 2;
  527. text-align: right;
  528. padding-right: 1em;
  529. font-weight: bold;
  530. }
  531. div.cbi-value-field {
  532. flex: 3;
  533. position: relative;
  534. input, select, input + label {
  535. position: relative;
  536. top: -0.39em;
  537. }
  538. }
  539. div.cbi-value-field-long {
  540. flex: 10;
  541. position: relative;
  542. input, select, input + label {
  543. position: relative;
  544. top: -0.39em;
  545. }
  546. }
  547. div.cbi-value-field-long-after {
  548. flex: 2;
  549. }
  550. div.cbi-value-description {
  551. font-size: 8pt;
  552. }
  553. div.cbi-section-create {
  554. clear: left;
  555. white-space: nowrap;
  556. vertical-align: top;
  557. }
  558. div.cbi-section-create .cbi-button {
  559. margin: 0.25em;
  560. }
  561. input.cbi-section-create-name {
  562. margin-right: -0.25em;
  563. }
  564. div.cbi-map-descr {
  565. margin-bottom: 1em;
  566. }
  567. .cbi-map-descr:empty, .cbi-section-descr:empty {
  568. display: none;
  569. }
  570. .cbi-map-descr, .cbi-section-descr, .cbi-page-actions {
  571. padding: 1em;
  572. background: #ececec;
  573. }
  574. .cbi-page-actions {
  575. text-align: right;
  576. display: flex;
  577. display: -moz-flex;
  578. -moz-flex-flow: row-reverse;
  579. flex-flow: row-reverse;
  580. }
  581. div.cbi-optionals {
  582. padding: 0.25em;
  583. border-bottom: 1px dotted #bbbbbb;
  584. }
  585. div.cbi-section-remove {
  586. float: right;
  587. }
  588. .cbi-section-node {
  589. clear: both;
  590. position: relative;
  591. border: none;
  592. }
  593. .cbi-section-node-tabbed {
  594. border-top-left-radius: 0;
  595. }
  596. .cbi-section-node .cbi-value-last {
  597. border-bottom: none;
  598. }
  599. .cbi-section-node table div {
  600. padding-bottom: 0;
  601. border-bottom: none;
  602. }
  603. .cbi-section-node div.cbi-section-table-row {
  604. margin: 0.25em;
  605. }
  606. table.cbi-section-table {
  607. width: 100%;
  608. font-size: 95%;
  609. }
  610. table.cbi-section-table th,
  611. table.cbi-section-table td {
  612. text-align: center;
  613. }
  614. tr.cbi-section-table-descr th {
  615. font-weight: normal;
  616. font-size: 90%;
  617. vertical-align: top;
  618. }
  619. td.cbi-section-table-optionals {
  620. text-align: left !important;
  621. padding-top: 1em;
  622. }
  623. .cbi-value-helpicon img {
  624. display: none;
  625. }
  626. div.cbi-error {
  627. font-size: 95%;
  628. font-weight: bold;
  629. color: #ff0000;
  630. background-color: #ffffff;
  631. }
  632. td.cbi-value-error {
  633. border-color: red;
  634. }
  635. .cbi-value-error input,
  636. .cbi-value-error select {
  637. background-color: #ffcccc;
  638. }
  639. .cbi-section-error {
  640. color: red;
  641. background-color: white;
  642. font-size: 95%;
  643. border: 1px dotted red;
  644. margin: 3px;
  645. padding: 3px;
  646. }
  647. .cbi-value-field var {
  648. color: #2222FF;
  649. }
  650. ul.cbi-tabmenu {
  651. padding: 3px 0;
  652. margin-left: 0 !important;
  653. list-style-type: none;
  654. position: relative;
  655. z-index: 10;
  656. top: 4px;
  657. line-height: 20px;
  658. }
  659. ul.cbi-tabmenu li.cbi-tab,
  660. ul.cbi-tabmenu li.cbi-tab-disabled {
  661. display: inline;
  662. margin: 0;
  663. }
  664. ul.cbi-tabmenu li.cbi-tab a,
  665. ul.cbi-tabmenu li.cbi-tab-disabled a {
  666. text-decoration: none;
  667. padding: 3px 7px;
  668. margin-right: 3px;
  669. border: 1px solid #BBBBBB;
  670. border-bottom: none;
  671. border-radius: 3px 3px 0 0;
  672. background-color: #EEEEEE;
  673. color: #BBBBBB;
  674. }
  675. ul.cbi-tabmenu li.cbi-tab-highlighted a {
  676. color: #000000;
  677. background-color: #FFEEAA;
  678. }
  679. ul.cbi-tabmenu li a:hover {
  680. color: #000000;
  681. }
  682. ul.cbi-tabmenu li.cbi-tab a {
  683. padding-top: 4px;
  684. color: #000000;
  685. background-color: #FFFFFF;
  686. }
  687. div.cbi-tab-descr {
  688. background-image: url(/luci-static/resources/cbi/help.gif);
  689. background-position: 0.25em 50%;
  690. background-repeat: no-repeat;
  691. border-bottom: 1px solid #CCCCCC;
  692. margin: 0.25em 0.25em 2em;
  693. padding: 0.5em 0.5em 0.5em 2em;
  694. }
  695. .left {
  696. text-align: left !important;
  697. }
  698. .right {
  699. text-align: right !important;
  700. }
  701. .luci {
  702. position: absolute;
  703. bottom: 0;
  704. left: 1em;
  705. height: 1.5em;
  706. font-size: 80%;
  707. }
  708. .luci a:link,
  709. .luci a:visited {
  710. background-color: transparent;
  711. color: #666666;
  712. text-decoration: none;
  713. font-size: 70%;
  714. }
  715. .inline {
  716. display: inline;
  717. }
  718. .error500 {
  719. white-space: normal;
  720. border: 1px dotted #ff0000;
  721. background-color: #ffffff;
  722. color: #000000;
  723. padding: 0.5em;
  724. }
  725. .errorbox {
  726. border: 1px solid #FF0000;
  727. background-color: #FFCCCC;
  728. padding: 5px;
  729. margin-bottom: 5px;
  730. }
  731. .errorbox a {
  732. color: #000000 !important;
  733. }
  734. .ifacebox {
  735. background-color: #FFFFFF;
  736. border: 1px solid #CCCCCC;
  737. margin: 0 10px;
  738. text-align: center;
  739. white-space: nowrap;
  740. }
  741. .ifacebox .ifacebox-head {
  742. border-bottom: 1px solid #CCCCCC;
  743. padding: 2px;
  744. }
  745. .ifacebox .ifacebox-body {
  746. padding: 2px;
  747. }
  748. .ifacebadge {
  749. background-color: #FFFFFF;
  750. border: 1px solid #CCCCCC;
  751. padding: 2px;
  752. margin-left: 2px;
  753. display: inline-block;
  754. }
  755. .ifacebadge-active {
  756. border-color: #000000;
  757. font-weight: bold;
  758. }
  759. .zonebadge {
  760. padding: 2px;
  761. display: inline-block;
  762. white-space: nowrap;
  763. cursor: pointer;
  764. }
  765. .zonebadge em,
  766. .zonebadge strong {
  767. margin: 3px;
  768. display: inline-block;
  769. }
  770. .zonebadge input {
  771. width: 6em;
  772. height: 1.5em;
  773. }
  774. .zonebadge-empty {
  775. border: 1px dashed #AAAAAA;
  776. color: #AAAAAA;
  777. font-style: italic;
  778. font-size: smaller;
  779. }
  780. .uci-change-list {
  781. font-family: monospace;
  782. }
  783. .uci-change-list ins,
  784. .uci-change-legend-label ins {
  785. text-decoration: none;
  786. border: 1px solid #00FF00;
  787. background-color: #CCFFCC;
  788. display: block;
  789. padding: 2px;
  790. }
  791. .uci-change-list del,
  792. .uci-change-legend-label del {
  793. text-decoration: none;
  794. border: 1px solid #FF0000;
  795. background-color: #FFCCCC;
  796. display: block;
  797. font-style: normal;
  798. padding: 2px;
  799. }
  800. .uci-change-list var,
  801. .uci-change-legend-label var {
  802. text-decoration: none;
  803. border: 1px solid #CCCCCC;
  804. background-color: #EEEEEE;
  805. display: block;
  806. font-style: normal;
  807. padding: 2px;
  808. }
  809. .uci-change-list var ins,
  810. .uci-change-list var del {
  811. /*display: inline;*/
  812. border: none;
  813. white-space: pre;
  814. font-style: normal;
  815. padding: 0px;
  816. }
  817. .uci-change-legend {
  818. padding: 5px;
  819. }
  820. .uci-change-legend-label {
  821. width: 150px;
  822. float: left;
  823. font-size: 80%;
  824. }
  825. .uci-change-legend-label>ins,
  826. .uci-change-legend-label>del,
  827. .uci-change-legend-label>var {
  828. float: left;
  829. margin-right: 4px;
  830. width: 10px;
  831. height: 10px;
  832. display: block;
  833. }
  834. .uci-change-legend-label var ins,
  835. .uci-change-legend-label var del {
  836. line-height: 6px;
  837. border: none;
  838. }
  839. // Hide show/hide password toggle image
  840. .cbi-input-password + img {
  841. display: none;
  842. }
  843. .the-key {
  844. text-align: left;
  845. font-size: 1.4em;
  846. background: lighten($ffyellow, 35);
  847. border: 3pt dashed $ffmagenta;
  848. margin-bottom: 0.5em;
  849. padding: 0.5em
  850. }