cascade.scss 16 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012
  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 {
  81. font-family: 'Open Sans', Arial, sans-serif;
  82. font-size: 12pt;
  83. color: rgb(77, 78, 83);
  84. line-height: 1.5em;
  85. margin: 0;
  86. display: flex;
  87. flex-direction: column;
  88. min-height: 100vh;
  89. background-color: #f3f3f3;
  90. }
  91. a img {
  92. border: none;
  93. text-decoration: none;
  94. }
  95. .tabmenu1 {
  96. text-align: center;
  97. }
  98. ul.tabmenu {
  99. list-style: none;
  100. padding: 0;
  101. margin: 2em 0;
  102. display: inline-flex;
  103. }
  104. ul.tabmenu li {
  105. white-space: nowrap;
  106. margin: 0 0.5em;
  107. padding: 0;
  108. text-align: center;
  109. a {
  110. display: block;
  111. text-decoration: none;
  112. padding: 1em;
  113. margin: 0;
  114. color: #333;
  115. border-radius: 2em;
  116. &:hover {
  117. background: lighten($ffyellow, 35);
  118. }
  119. }
  120. &.active a {
  121. font-weight: bold;
  122. background: white;
  123. color: #333;
  124. }
  125. }
  126. abbr,
  127. acronym {
  128. font-style: normal;
  129. font-variant: normal;
  130. }
  131. abbr[title],
  132. acronym[title] {
  133. border-bottom: 1px dotted;
  134. cursor: help;
  135. }
  136. a:link abbr[title],
  137. a:visited abbr[title],
  138. a:link acronym[title],
  139. a:visited acronym[title] {
  140. cursor: pointer;
  141. }
  142. code {
  143. font-family: monospace;
  144. white-space: pre;
  145. }
  146. #maincontent ul {
  147. margin-left: 2em;
  148. }
  149. .warning {
  150. color: red;
  151. background-color: white;
  152. font-weight: bold;
  153. }
  154. .clear {
  155. clear: both;
  156. }
  157. .error {
  158. color: #ff0000;
  159. background-color: white;
  160. }
  161. div.hostinfo {
  162. margin: 0;
  163. padding: 0;
  164. font-size: 80%;
  165. padding: 0.5em;
  166. flex: 1;
  167. font-weight: bold;
  168. }
  169. #xhr_poll_status {
  170. cursor: pointer;
  171. }
  172. #xhr_poll_status #xhr_poll_status_off {
  173. font-weight: bold;
  174. color: #FF0000;
  175. }
  176. #xhr_poll_status #xhr_poll_status_on {
  177. font-weight: bold;
  178. color: #00FF00;
  179. }
  180. #menubar {
  181. display: flex;
  182. background: $ffmagenta;
  183. color: #ffffff;
  184. }
  185. #menubar .warning {
  186. color: red;
  187. background-color: #557788;
  188. }
  189. #menubar a:link,
  190. #menubar a:visited {
  191. position: relative;
  192. display: block;
  193. padding: 0.5em;
  194. text-decoration: none;
  195. font-size: 80%;
  196. font-weight: normal;
  197. color: white;
  198. }
  199. #menubar a:link:hover,
  200. #menubar a:visited:hover,
  201. #menubar a:link:focus,
  202. #menubar a:visited:focus {
  203. background: $ffyellow;
  204. color: black;
  205. }
  206. #menubar a:link.active,
  207. #menubar a:visited.active {
  208. background: $ffyellow;
  209. color: black;
  210. font-weight: bold;
  211. }
  212. #menubar a:link.warning,
  213. #menubar a:visited.warning {
  214. background: #000000;
  215. color: red;
  216. font-weight: bold;
  217. }
  218. #modemenu {
  219. list-style: none;
  220. margin: 0;
  221. padding: 0;
  222. }
  223. #modemenu li {
  224. display: inline-block;
  225. }
  226. #savemenu {
  227. }
  228. .lang_he #savemenu {
  229. }
  230. .lang_de #submenu_admin_uci {
  231. width: 12em;
  232. }
  233. .lang_ru #submenu_admin_uci {
  234. width: 11.5em;
  235. }
  236. textarea#syslog {
  237. width: 98%;
  238. min-height: 500px;
  239. border: 3px solid #cccccc;
  240. padding: 5px;
  241. font-family: monospace;
  242. }
  243. #maincontent {
  244. padding: 0 1em 2em;
  245. max-width: 60em;
  246. min-width: 40em;
  247. margin: 1em auto;
  248. }
  249. .lang_he #maincontent {
  250. direction: rtl;
  251. }
  252. #maincontent h2 {
  253. }
  254. #maincontent h3 {
  255. }
  256. #maincontent p {
  257. margin-bottom: 1em;
  258. }
  259. .cbi-section {
  260. margin: 0;
  261. padding: 0;
  262. border: none;
  263. }
  264. .cbi-section legend {
  265. font-size: 1.4em;
  266. font-weight: bold;
  267. color: $ffmagenta;
  268. position: relative;
  269. padding: 0;
  270. margin-bottom: 0.5em;
  271. }
  272. .cbi-section h2 {
  273. margin: 0em 0 0.5em -0.5em !important;
  274. }
  275. .cbi-section h3 {
  276. text-decoration: none !important;
  277. font-weight: bold !important;
  278. color: #555555 !important;
  279. margin: 0.25em !important;
  280. font-size: 100% !important;
  281. }
  282. .cbi-section-descr {
  283. margin-bottom: 2em;
  284. }
  285. .cbi-title-ref {
  286. color: inherit;
  287. text-decoration: none;
  288. padding-right: 18px;
  289. background: url('../resources/cbi/link.gif') no-repeat scroll right center;
  290. background-color: inherit;
  291. }
  292. ul.cbi-apply {
  293. font-size: 90%;
  294. }
  295. input:-webkit-input-placeholder {
  296. color: #AAAAAA;
  297. }
  298. input:-moz-placeholder {
  299. color: #AAAAAA;
  300. }
  301. input:-ms-input-placeholder {
  302. color: #AAAAAA;
  303. }
  304. input[type=checkbox] {
  305. -moz-appearance:none;
  306. -webkit-appearance:none;
  307. -o-appearance:none;
  308. appearance: none;
  309. width: 2em;
  310. height: 2em;
  311. margin: 0;
  312. &:checked {
  313. position: relative;
  314. &::after {
  315. content: '✔';
  316. color: $ffmagenta;
  317. vertical-align: middle;
  318. position: absolute;
  319. top: 50%;
  320. left: 0;
  321. margin-top: -0.5em;
  322. width: 100%;
  323. text-align: center;
  324. font-size: 1.7em;
  325. }
  326. }
  327. }
  328. input[type=submit],
  329. input[type=reset],
  330. input[type=image],
  331. input[type=button] {
  332. cursor: pointer;
  333. }
  334. select,
  335. input,
  336. textarea {
  337. color: darken($ffzusatz, 30);
  338. border: none;
  339. background: lighten($ffyellow, 30);
  340. border-radius: 3pt;
  341. padding: 0.5em;
  342. }
  343. input[type=image] {
  344. border: none;
  345. }
  346. select,
  347. input[type=text],
  348. input[type=password] {
  349. width: 20em;
  350. }
  351. td select,
  352. td input[type=text],
  353. td input[type=password] {
  354. width: 99%;
  355. }
  356. img.cbi-image-button {
  357. cursor: pointer;
  358. margin: 0 2px;
  359. vertical-align: middle;
  360. }
  361. input.cbi-button {
  362. @include button;
  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. form > div > input[type=submit],
  471. form > div > input[type=reset] {
  472. margin-left: 0.5em;
  473. }
  474. table td,
  475. table th {
  476. color: #000000;
  477. }
  478. table.smalltext {
  479. background: #f5f5f5;
  480. color: #000000;
  481. border-top: 1px solid #666666;
  482. border-right: 1px solid #666666;
  483. border-bottom: 1px solid #666666;
  484. font-size: 90%;
  485. width: 80%;
  486. margin-left: auto;
  487. margin-right: auto;
  488. border-collapse: collapse;
  489. }
  490. table.smalltext tr:hover td {
  491. background-color: #bbddee;
  492. color: #000000;
  493. }
  494. table.smalltext tr th {
  495. padding: 0 0.25em;
  496. border-left: 1px solid #666666;
  497. text-align: left;
  498. }
  499. table.smalltext tr td {
  500. padding: 0 0.25em;
  501. border-top: 1px solid #666666;
  502. border-left: 1px solid #666666;
  503. }
  504. table.cbi-section-table .cbi-rowstyle-1 {
  505. background-color: #eeeeff;
  506. color: #000000;
  507. }
  508. table.cbi-section-table .cbi-rowstyle-1:hover,
  509. table.cbi-section-table .cbi-rowstyle-2:hover {
  510. background-color: #b2c8d4;
  511. color: #000000;
  512. }
  513. table.cbi-section-table .cbi-section-table-cell {
  514. padding: 3px;
  515. white-space: nowrap;
  516. }
  517. .cbi-section .cbi-rowstyle-1 h3 {
  518. background-color: #eeeeff;
  519. color: #555555;
  520. }
  521. .cbi-rowstyle-2 {
  522. color: #000000;
  523. }
  524. div.cbi-value {
  525. display: flex;
  526. flex-direction: row;
  527. margin-bottom: 0.8em;
  528. }
  529. .cbi-value-title {
  530. flex: 2;
  531. text-align: right;
  532. padding-right: 1em;
  533. font-weight: bold;
  534. }
  535. div.cbi-value-field {
  536. flex: 3;
  537. }
  538. div.cbi-value-description {
  539. font-size: 8pt;
  540. }
  541. div.cbi-section-create {
  542. clear: left;
  543. white-space: nowrap;
  544. vertical-align: top;
  545. }
  546. div.cbi-section-create .cbi-button {
  547. margin: 0.25em;
  548. }
  549. input.cbi-section-create-name {
  550. margin-right: -0.25em;
  551. }
  552. div.cbi-map-descr {
  553. margin-bottom: 1em;
  554. }
  555. .cbi-map-descr:empty, .cbi-section-descr:empty {
  556. display: none;
  557. }
  558. .cbi-map-descr, .cbi-section-descr, .cbi-page-actions {
  559. padding: 1em;
  560. background: #ececec;
  561. }
  562. .cbi-page-actions {
  563. text-align: right;
  564. display: flex;
  565. display: -moz-flex;
  566. -moz-flex-flow: row-reverse;
  567. flex-flow: row-reverse;
  568. }
  569. div.cbi-optionals {
  570. padding: 0.25em;
  571. border-bottom: 1px dotted #bbbbbb;
  572. }
  573. div.cbi-section-remove {
  574. float: right;
  575. }
  576. .cbi-section-node {
  577. clear: both;
  578. position: relative;
  579. border: none;
  580. }
  581. .cbi-section-node-tabbed {
  582. border-top-left-radius: 0;
  583. }
  584. .cbi-section-node .cbi-value-last {
  585. border-bottom: none;
  586. }
  587. .cbi-section-node table div {
  588. padding-bottom: 0;
  589. border-bottom: none;
  590. }
  591. .cbi-section-node div.cbi-section-table-row {
  592. margin: 0.25em;
  593. }
  594. table.cbi-section-table {
  595. width: 100%;
  596. font-size: 95%;
  597. }
  598. table.cbi-section-table th,
  599. table.cbi-section-table td {
  600. text-align: center;
  601. }
  602. tr.cbi-section-table-descr th {
  603. font-weight: normal;
  604. font-size: 90%;
  605. vertical-align: top;
  606. }
  607. td.cbi-section-table-optionals {
  608. text-align: left !important;
  609. padding-top: 1em;
  610. }
  611. .cbi-value-helpicon img {
  612. display: none;
  613. }
  614. div.cbi-error {
  615. font-size: 95%;
  616. font-weight: bold;
  617. color: #ff0000;
  618. background-color: #ffffff;
  619. }
  620. td.cbi-value-error {
  621. border-color: red;
  622. }
  623. .cbi-value-error input,
  624. .cbi-value-error select {
  625. background-color: #ffcccc;
  626. }
  627. .cbi-section-error {
  628. color: red;
  629. background-color: white;
  630. font-size: 95%;
  631. border: 1px dotted red;
  632. margin: 3px;
  633. padding: 3px;
  634. }
  635. .cbi-value-field var {
  636. color: #2222FF;
  637. }
  638. ul.cbi-tabmenu {
  639. padding: 3px 0;
  640. margin-left: 0 !important;
  641. list-style-type: none;
  642. position: relative;
  643. z-index: 10;
  644. top: 4px;
  645. line-height: 20px;
  646. }
  647. ul.cbi-tabmenu li.cbi-tab,
  648. ul.cbi-tabmenu li.cbi-tab-disabled {
  649. display: inline;
  650. margin: 0;
  651. }
  652. ul.cbi-tabmenu li.cbi-tab a,
  653. ul.cbi-tabmenu li.cbi-tab-disabled a {
  654. text-decoration: none;
  655. padding: 3px 7px;
  656. margin-right: 3px;
  657. border: 1px solid #BBBBBB;
  658. border-bottom: none;
  659. border-radius: 3px 3px 0 0;
  660. background-color: #EEEEEE;
  661. color: #BBBBBB;
  662. }
  663. ul.cbi-tabmenu li.cbi-tab-highlighted a {
  664. color: #000000;
  665. background-color: #FFEEAA;
  666. }
  667. ul.cbi-tabmenu li a:hover {
  668. color: #000000;
  669. }
  670. ul.cbi-tabmenu li.cbi-tab a {
  671. padding-top: 4px;
  672. color: #000000;
  673. background-color: #FFFFFF;
  674. }
  675. div.cbi-tab-descr {
  676. background-image: url(/luci-static/resources/cbi/help.gif);
  677. background-position: 0.25em 50%;
  678. background-repeat: no-repeat;
  679. border-bottom: 1px solid #CCCCCC;
  680. margin: 0.25em 0.25em 2em;
  681. padding: 0.5em 0.5em 0.5em 2em;
  682. }
  683. .left {
  684. text-align: left !important;
  685. }
  686. .right {
  687. text-align: right !important;
  688. }
  689. .luci {
  690. position: absolute;
  691. bottom: 0;
  692. left: 1em;
  693. height: 1.5em;
  694. font-size: 80%;
  695. }
  696. .luci a:link,
  697. .luci a:visited {
  698. background-color: transparent;
  699. color: #666666;
  700. text-decoration: none;
  701. font-size: 70%;
  702. }
  703. .inline {
  704. display: inline;
  705. }
  706. .error500 {
  707. white-space: normal;
  708. border: 1px dotted #ff0000;
  709. background-color: #ffffff;
  710. color: #000000;
  711. padding: 0.5em;
  712. }
  713. .errorbox {
  714. border: 1px solid #FF0000;
  715. background-color: #FFCCCC;
  716. padding: 5px;
  717. margin-bottom: 5px;
  718. }
  719. .errorbox a {
  720. color: #000000 !important;
  721. }
  722. .ifacebox {
  723. background-color: #FFFFFF;
  724. border: 1px solid #CCCCCC;
  725. margin: 0 10px;
  726. text-align: center;
  727. white-space: nowrap;
  728. }
  729. .ifacebox .ifacebox-head {
  730. border-bottom: 1px solid #CCCCCC;
  731. padding: 2px;
  732. }
  733. .ifacebox .ifacebox-body {
  734. padding: 2px;
  735. }
  736. .ifacebadge {
  737. background-color: #FFFFFF;
  738. border: 1px solid #CCCCCC;
  739. padding: 2px;
  740. margin-left: 2px;
  741. display: inline-block;
  742. }
  743. .ifacebadge-active {
  744. border-color: #000000;
  745. font-weight: bold;
  746. }
  747. .zonebadge {
  748. padding: 2px;
  749. display: inline-block;
  750. white-space: nowrap;
  751. cursor: pointer;
  752. }
  753. .zonebadge em,
  754. .zonebadge strong {
  755. margin: 3px;
  756. display: inline-block;
  757. }
  758. .zonebadge input {
  759. width: 6em;
  760. height: 1.5em;
  761. }
  762. .zonebadge-empty {
  763. border: 1px dashed #AAAAAA;
  764. color: #AAAAAA;
  765. font-style: italic;
  766. font-size: smaller;
  767. }
  768. .uci-change-list {
  769. font-family: monospace;
  770. }
  771. .uci-change-list ins,
  772. .uci-change-legend-label ins {
  773. text-decoration: none;
  774. border: 1px solid #00FF00;
  775. background-color: #CCFFCC;
  776. display: block;
  777. padding: 2px;
  778. }
  779. .uci-change-list del,
  780. .uci-change-legend-label del {
  781. text-decoration: none;
  782. border: 1px solid #FF0000;
  783. background-color: #FFCCCC;
  784. display: block;
  785. font-style: normal;
  786. padding: 2px;
  787. }
  788. .uci-change-list var,
  789. .uci-change-legend-label var {
  790. text-decoration: none;
  791. border: 1px solid #CCCCCC;
  792. background-color: #EEEEEE;
  793. display: block;
  794. font-style: normal;
  795. padding: 2px;
  796. }
  797. .uci-change-list var ins,
  798. .uci-change-list var del {
  799. /*display: inline;*/
  800. border: none;
  801. white-space: pre;
  802. font-style: normal;
  803. padding: 0px;
  804. }
  805. .uci-change-legend {
  806. padding: 5px;
  807. }
  808. .uci-change-legend-label {
  809. width: 150px;
  810. float: left;
  811. font-size: 80%;
  812. }
  813. .uci-change-legend-label>ins,
  814. .uci-change-legend-label>del,
  815. .uci-change-legend-label>var {
  816. float: left;
  817. margin-right: 4px;
  818. width: 10px;
  819. height: 10px;
  820. display: block;
  821. }
  822. .uci-change-legend-label var ins,
  823. .uci-change-legend-label var del {
  824. line-height: 6px;
  825. border: none;
  826. }
  827. // Hide show/hide password toggle image
  828. .cbi-input-password + img {
  829. display: none;
  830. }
  831. .the-key {
  832. text-align: left;
  833. font-size: 1.4em;
  834. background: lighten($ffyellow, 35);
  835. border: 3pt dashed $ffmagenta;
  836. margin-bottom: 0.5em;
  837. padding: 0.5em
  838. }