cascade.scss 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020
  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. color: $ffmagenta;
  270. position: relative;
  271. padding: 0;
  272. margin-bottom: 0.5em;
  273. }
  274. .cbi-section h2 {
  275. margin: 0em 0 0.5em -0.5em !important;
  276. }
  277. .cbi-section h3 {
  278. text-decoration: none !important;
  279. font-weight: bold !important;
  280. color: #555555 !important;
  281. margin: 0.25em !important;
  282. font-size: 100% !important;
  283. }
  284. .cbi-section-descr {
  285. margin-bottom: 2em;
  286. }
  287. .cbi-title-ref {
  288. color: inherit;
  289. text-decoration: none;
  290. padding-right: 18px;
  291. background: url('../resources/cbi/link.gif') no-repeat scroll right center;
  292. background-color: inherit;
  293. }
  294. ul.cbi-apply {
  295. font-size: 90%;
  296. }
  297. input:-webkit-input-placeholder {
  298. color: #AAAAAA;
  299. }
  300. input:-moz-placeholder {
  301. color: #AAAAAA;
  302. }
  303. input:-ms-input-placeholder {
  304. color: #AAAAAA;
  305. }
  306. input[type=checkbox] {
  307. -moz-appearance:none;
  308. -webkit-appearance:none;
  309. -o-appearance:none;
  310. appearance: none;
  311. width: 2em;
  312. height: 2em;
  313. margin: 0;
  314. &:checked {
  315. position: relative;
  316. &::after {
  317. content: '✔';
  318. color: $ffmagenta;
  319. vertical-align: middle;
  320. position: absolute;
  321. top: 50%;
  322. left: 0;
  323. margin-top: -0.6em;
  324. width: 100%;
  325. text-align: center;
  326. font-size: 1.7em;
  327. }
  328. }
  329. }
  330. input[type=submit],
  331. input[type=reset],
  332. input[type=image],
  333. input[type=button] {
  334. cursor: pointer;
  335. }
  336. select,
  337. input,
  338. textarea {
  339. color: darken($ffzusatz, 30);
  340. border: none;
  341. background: lighten($ffyellow, 30);
  342. border-radius: 3pt;
  343. padding: 0.5em;
  344. }
  345. input[type=image] {
  346. border: none;
  347. }
  348. select,
  349. input[type=text],
  350. input[type=password] {
  351. width: 20em;
  352. }
  353. td select,
  354. td input[type=text],
  355. td input[type=password] {
  356. width: 99%;
  357. }
  358. img.cbi-image-button {
  359. cursor: pointer;
  360. margin: 0 2px;
  361. vertical-align: middle;
  362. }
  363. input.cbi-button {
  364. @include button;
  365. background-repeat: no-repeat;
  366. }
  367. input.cbi-input-user {
  368. background-image: url('../resources/cbi/user.gif');
  369. background-repeat: no-repeat;
  370. background-position: 1px center;
  371. color: #000000;
  372. text-indent: 17px;
  373. }
  374. input.cbi-input-find,
  375. input.cbi-button-find {
  376. background-image: url('../resources/cbi/find.gif');
  377. color: #000000;
  378. padding-left: 17px;
  379. }
  380. input.cbi-input-reload {
  381. background-image: url('../resources/cbi/reload.gif');
  382. color: #000000;
  383. padding-left: 17px;
  384. }
  385. input.cbi-input-add,
  386. input.cbi-button-add {
  387. background-image: url('../resources/cbi/add.gif');
  388. color: #000000;
  389. padding-left: 17px;
  390. padding-right: 1px;
  391. }
  392. input.cbi-input-fieldadd,
  393. input.cbi-button-fieldadd {
  394. background-image: url(../resources/cbi/fieldadd.gif);
  395. color: #000000;
  396. padding-left: 17px;
  397. padding-right: 1px;
  398. }
  399. input.cbi-input-reset,
  400. input.cbi-button-reset {
  401. background-color: $red;
  402. color: #fff;
  403. }
  404. input.cbi-input-save,
  405. input.cbi-button-save {
  406. @include button-primary;
  407. }
  408. input.cbi-input-apply,
  409. input.cbi-button-apply {
  410. @include button-primary;
  411. }
  412. input.cbi-input-link,
  413. input.cbi-button-link {
  414. background-image: url('../resources/cbi/link.gif');
  415. color: #000000;
  416. padding-left: 17px;
  417. padding-right: 1px;
  418. }
  419. input.cbi-input-download,
  420. input.cbi-button-download {
  421. background-image: url('../resources/cbi/download.gif');
  422. color: #000000;
  423. padding-left: 17px;
  424. padding-right: 1px;
  425. }
  426. input.cbi-input-remove,
  427. div.cbi-section-remove input {
  428. background-image: url('../resources/cbi/remove.gif');
  429. color: #000000;
  430. padding-left: 17px;
  431. padding-right: 1px;
  432. }
  433. input.cbi-button-up {
  434. background-image: url('../resources/cbi/up.gif');
  435. padding-left: 11px;
  436. padding-right: 1px;
  437. }
  438. input.cbi-button-down {
  439. background-image: url('../resources/cbi/down.gif');
  440. padding-left: 11px;
  441. padding-right: 1px;
  442. }
  443. input.cbi-button-edit {
  444. background-image: url('../resources/cbi/edit.gif');
  445. color: #000000;
  446. padding-left: 17px;
  447. padding-right: 1px;
  448. }
  449. input.cbi-button-reload {
  450. background-image: url('../resources/cbi/reload.gif');
  451. color: #000000;
  452. padding-left: 17px;
  453. padding-right: 1px;
  454. }
  455. input.cbi-button-remove {
  456. background-image: url('../resources/cbi/remove.gif');
  457. color: #000000;
  458. padding-left: 17px;
  459. padding-right: 1px;
  460. }
  461. .cbi-input-invalid {
  462. background: $red !important;
  463. color: white;
  464. }
  465. div.cbi-section-remove input {
  466. border-bottom: none;
  467. }
  468. textarea {
  469. margin-left: -1px;
  470. margin-bottom: 0.5em;
  471. }
  472. form > div > input[type=submit],
  473. form > div > input[type=reset] {
  474. margin-left: 0.5em;
  475. }
  476. table td,
  477. table th {
  478. color: #000000;
  479. }
  480. table.smalltext {
  481. background: #f5f5f5;
  482. color: #000000;
  483. border-top: 1px solid #666666;
  484. border-right: 1px solid #666666;
  485. border-bottom: 1px solid #666666;
  486. font-size: 90%;
  487. width: 80%;
  488. margin-left: auto;
  489. margin-right: auto;
  490. border-collapse: collapse;
  491. }
  492. table.smalltext tr:hover td {
  493. background-color: #bbddee;
  494. color: #000000;
  495. }
  496. table.smalltext tr th {
  497. padding: 0 0.25em;
  498. border-left: 1px solid #666666;
  499. text-align: left;
  500. }
  501. table.smalltext tr td {
  502. padding: 0 0.25em;
  503. border-top: 1px solid #666666;
  504. border-left: 1px solid #666666;
  505. }
  506. table.cbi-section-table .cbi-rowstyle-1 {
  507. background-color: #eeeeff;
  508. color: #000000;
  509. }
  510. table.cbi-section-table .cbi-rowstyle-1:hover,
  511. table.cbi-section-table .cbi-rowstyle-2:hover {
  512. background-color: #b2c8d4;
  513. color: #000000;
  514. }
  515. table.cbi-section-table .cbi-section-table-cell {
  516. padding: 3px;
  517. white-space: nowrap;
  518. }
  519. .cbi-section .cbi-rowstyle-1 h3 {
  520. background-color: #eeeeff;
  521. color: #555555;
  522. }
  523. .cbi-rowstyle-2 {
  524. color: #000000;
  525. }
  526. div.cbi-value {
  527. display: flex;
  528. flex-direction: row;
  529. margin-bottom: 0.5em;
  530. }
  531. .cbi-value-title {
  532. flex: 2;
  533. text-align: right;
  534. padding-right: 1em;
  535. font-weight: bold;
  536. }
  537. div.cbi-value-field {
  538. flex: 3;
  539. input, select {
  540. position: relative;
  541. top: -0.39em;
  542. }
  543. }
  544. div.cbi-value-description {
  545. font-size: 8pt;
  546. }
  547. div.cbi-section-create {
  548. clear: left;
  549. white-space: nowrap;
  550. vertical-align: top;
  551. }
  552. div.cbi-section-create .cbi-button {
  553. margin: 0.25em;
  554. }
  555. input.cbi-section-create-name {
  556. margin-right: -0.25em;
  557. }
  558. div.cbi-map-descr {
  559. margin-bottom: 1em;
  560. }
  561. .cbi-map-descr:empty, .cbi-section-descr:empty {
  562. display: none;
  563. }
  564. .cbi-map-descr, .cbi-section-descr, .cbi-page-actions {
  565. padding: 1em;
  566. background: #ececec;
  567. }
  568. .cbi-page-actions {
  569. text-align: right;
  570. display: flex;
  571. display: -moz-flex;
  572. -moz-flex-flow: row-reverse;
  573. flex-flow: row-reverse;
  574. }
  575. div.cbi-optionals {
  576. padding: 0.25em;
  577. border-bottom: 1px dotted #bbbbbb;
  578. }
  579. div.cbi-section-remove {
  580. float: right;
  581. }
  582. .cbi-section-node {
  583. clear: both;
  584. position: relative;
  585. border: none;
  586. }
  587. .cbi-section-node-tabbed {
  588. border-top-left-radius: 0;
  589. }
  590. .cbi-section-node .cbi-value-last {
  591. border-bottom: none;
  592. }
  593. .cbi-section-node table div {
  594. padding-bottom: 0;
  595. border-bottom: none;
  596. }
  597. .cbi-section-node div.cbi-section-table-row {
  598. margin: 0.25em;
  599. }
  600. table.cbi-section-table {
  601. width: 100%;
  602. font-size: 95%;
  603. }
  604. table.cbi-section-table th,
  605. table.cbi-section-table td {
  606. text-align: center;
  607. }
  608. tr.cbi-section-table-descr th {
  609. font-weight: normal;
  610. font-size: 90%;
  611. vertical-align: top;
  612. }
  613. td.cbi-section-table-optionals {
  614. text-align: left !important;
  615. padding-top: 1em;
  616. }
  617. .cbi-value-helpicon img {
  618. display: none;
  619. }
  620. div.cbi-error {
  621. font-size: 95%;
  622. font-weight: bold;
  623. color: #ff0000;
  624. background-color: #ffffff;
  625. }
  626. td.cbi-value-error {
  627. border-color: red;
  628. }
  629. .cbi-value-error input,
  630. .cbi-value-error select {
  631. background-color: #ffcccc;
  632. }
  633. .cbi-section-error {
  634. color: red;
  635. background-color: white;
  636. font-size: 95%;
  637. border: 1px dotted red;
  638. margin: 3px;
  639. padding: 3px;
  640. }
  641. .cbi-value-field var {
  642. color: #2222FF;
  643. }
  644. ul.cbi-tabmenu {
  645. padding: 3px 0;
  646. margin-left: 0 !important;
  647. list-style-type: none;
  648. position: relative;
  649. z-index: 10;
  650. top: 4px;
  651. line-height: 20px;
  652. }
  653. ul.cbi-tabmenu li.cbi-tab,
  654. ul.cbi-tabmenu li.cbi-tab-disabled {
  655. display: inline;
  656. margin: 0;
  657. }
  658. ul.cbi-tabmenu li.cbi-tab a,
  659. ul.cbi-tabmenu li.cbi-tab-disabled a {
  660. text-decoration: none;
  661. padding: 3px 7px;
  662. margin-right: 3px;
  663. border: 1px solid #BBBBBB;
  664. border-bottom: none;
  665. border-radius: 3px 3px 0 0;
  666. background-color: #EEEEEE;
  667. color: #BBBBBB;
  668. }
  669. ul.cbi-tabmenu li.cbi-tab-highlighted a {
  670. color: #000000;
  671. background-color: #FFEEAA;
  672. }
  673. ul.cbi-tabmenu li a:hover {
  674. color: #000000;
  675. }
  676. ul.cbi-tabmenu li.cbi-tab a {
  677. padding-top: 4px;
  678. color: #000000;
  679. background-color: #FFFFFF;
  680. }
  681. div.cbi-tab-descr {
  682. background-image: url(/luci-static/resources/cbi/help.gif);
  683. background-position: 0.25em 50%;
  684. background-repeat: no-repeat;
  685. border-bottom: 1px solid #CCCCCC;
  686. margin: 0.25em 0.25em 2em;
  687. padding: 0.5em 0.5em 0.5em 2em;
  688. }
  689. .left {
  690. text-align: left !important;
  691. }
  692. .right {
  693. text-align: right !important;
  694. }
  695. .luci {
  696. position: absolute;
  697. bottom: 0;
  698. left: 1em;
  699. height: 1.5em;
  700. font-size: 80%;
  701. }
  702. .luci a:link,
  703. .luci a:visited {
  704. background-color: transparent;
  705. color: #666666;
  706. text-decoration: none;
  707. font-size: 70%;
  708. }
  709. .inline {
  710. display: inline;
  711. }
  712. .error500 {
  713. white-space: normal;
  714. border: 1px dotted #ff0000;
  715. background-color: #ffffff;
  716. color: #000000;
  717. padding: 0.5em;
  718. }
  719. .errorbox {
  720. border: 1px solid #FF0000;
  721. background-color: #FFCCCC;
  722. padding: 5px;
  723. margin-bottom: 5px;
  724. }
  725. .errorbox a {
  726. color: #000000 !important;
  727. }
  728. .ifacebox {
  729. background-color: #FFFFFF;
  730. border: 1px solid #CCCCCC;
  731. margin: 0 10px;
  732. text-align: center;
  733. white-space: nowrap;
  734. }
  735. .ifacebox .ifacebox-head {
  736. border-bottom: 1px solid #CCCCCC;
  737. padding: 2px;
  738. }
  739. .ifacebox .ifacebox-body {
  740. padding: 2px;
  741. }
  742. .ifacebadge {
  743. background-color: #FFFFFF;
  744. border: 1px solid #CCCCCC;
  745. padding: 2px;
  746. margin-left: 2px;
  747. display: inline-block;
  748. }
  749. .ifacebadge-active {
  750. border-color: #000000;
  751. font-weight: bold;
  752. }
  753. .zonebadge {
  754. padding: 2px;
  755. display: inline-block;
  756. white-space: nowrap;
  757. cursor: pointer;
  758. }
  759. .zonebadge em,
  760. .zonebadge strong {
  761. margin: 3px;
  762. display: inline-block;
  763. }
  764. .zonebadge input {
  765. width: 6em;
  766. height: 1.5em;
  767. }
  768. .zonebadge-empty {
  769. border: 1px dashed #AAAAAA;
  770. color: #AAAAAA;
  771. font-style: italic;
  772. font-size: smaller;
  773. }
  774. .uci-change-list {
  775. font-family: monospace;
  776. }
  777. .uci-change-list ins,
  778. .uci-change-legend-label ins {
  779. text-decoration: none;
  780. border: 1px solid #00FF00;
  781. background-color: #CCFFCC;
  782. display: block;
  783. padding: 2px;
  784. }
  785. .uci-change-list del,
  786. .uci-change-legend-label del {
  787. text-decoration: none;
  788. border: 1px solid #FF0000;
  789. background-color: #FFCCCC;
  790. display: block;
  791. font-style: normal;
  792. padding: 2px;
  793. }
  794. .uci-change-list var,
  795. .uci-change-legend-label var {
  796. text-decoration: none;
  797. border: 1px solid #CCCCCC;
  798. background-color: #EEEEEE;
  799. display: block;
  800. font-style: normal;
  801. padding: 2px;
  802. }
  803. .uci-change-list var ins,
  804. .uci-change-list var del {
  805. /*display: inline;*/
  806. border: none;
  807. white-space: pre;
  808. font-style: normal;
  809. padding: 0px;
  810. }
  811. .uci-change-legend {
  812. padding: 5px;
  813. }
  814. .uci-change-legend-label {
  815. width: 150px;
  816. float: left;
  817. font-size: 80%;
  818. }
  819. .uci-change-legend-label>ins,
  820. .uci-change-legend-label>del,
  821. .uci-change-legend-label>var {
  822. float: left;
  823. margin-right: 4px;
  824. width: 10px;
  825. height: 10px;
  826. display: block;
  827. }
  828. .uci-change-legend-label var ins,
  829. .uci-change-legend-label var del {
  830. line-height: 6px;
  831. border: none;
  832. }
  833. // Hide show/hide password toggle image
  834. .cbi-input-password + img {
  835. display: none;
  836. }
  837. .the-key {
  838. text-align: left;
  839. font-size: 1.4em;
  840. background: lighten($ffyellow, 35);
  841. border: 3pt dashed $ffmagenta;
  842. margin-bottom: 0.5em;
  843. padding: 0.5em
  844. }