cascade.scss 16 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013
  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.5em;
  528. }
  529. .cbi-value-title {
  530. flex: 2;
  531. text-align: right;
  532. padding-top: 0.39em;
  533. padding-right: 1em;
  534. font-weight: bold;
  535. }
  536. div.cbi-value-field {
  537. flex: 3;
  538. }
  539. div.cbi-value-description {
  540. font-size: 8pt;
  541. }
  542. div.cbi-section-create {
  543. clear: left;
  544. white-space: nowrap;
  545. vertical-align: top;
  546. }
  547. div.cbi-section-create .cbi-button {
  548. margin: 0.25em;
  549. }
  550. input.cbi-section-create-name {
  551. margin-right: -0.25em;
  552. }
  553. div.cbi-map-descr {
  554. margin-bottom: 1em;
  555. }
  556. .cbi-map-descr:empty, .cbi-section-descr:empty {
  557. display: none;
  558. }
  559. .cbi-map-descr, .cbi-section-descr, .cbi-page-actions {
  560. padding: 1em;
  561. background: #ececec;
  562. }
  563. .cbi-page-actions {
  564. text-align: right;
  565. display: flex;
  566. display: -moz-flex;
  567. -moz-flex-flow: row-reverse;
  568. flex-flow: row-reverse;
  569. }
  570. div.cbi-optionals {
  571. padding: 0.25em;
  572. border-bottom: 1px dotted #bbbbbb;
  573. }
  574. div.cbi-section-remove {
  575. float: right;
  576. }
  577. .cbi-section-node {
  578. clear: both;
  579. position: relative;
  580. border: none;
  581. }
  582. .cbi-section-node-tabbed {
  583. border-top-left-radius: 0;
  584. }
  585. .cbi-section-node .cbi-value-last {
  586. border-bottom: none;
  587. }
  588. .cbi-section-node table div {
  589. padding-bottom: 0;
  590. border-bottom: none;
  591. }
  592. .cbi-section-node div.cbi-section-table-row {
  593. margin: 0.25em;
  594. }
  595. table.cbi-section-table {
  596. width: 100%;
  597. font-size: 95%;
  598. }
  599. table.cbi-section-table th,
  600. table.cbi-section-table td {
  601. text-align: center;
  602. }
  603. tr.cbi-section-table-descr th {
  604. font-weight: normal;
  605. font-size: 90%;
  606. vertical-align: top;
  607. }
  608. td.cbi-section-table-optionals {
  609. text-align: left !important;
  610. padding-top: 1em;
  611. }
  612. .cbi-value-helpicon img {
  613. display: none;
  614. }
  615. div.cbi-error {
  616. font-size: 95%;
  617. font-weight: bold;
  618. color: #ff0000;
  619. background-color: #ffffff;
  620. }
  621. td.cbi-value-error {
  622. border-color: red;
  623. }
  624. .cbi-value-error input,
  625. .cbi-value-error select {
  626. background-color: #ffcccc;
  627. }
  628. .cbi-section-error {
  629. color: red;
  630. background-color: white;
  631. font-size: 95%;
  632. border: 1px dotted red;
  633. margin: 3px;
  634. padding: 3px;
  635. }
  636. .cbi-value-field var {
  637. color: #2222FF;
  638. }
  639. ul.cbi-tabmenu {
  640. padding: 3px 0;
  641. margin-left: 0 !important;
  642. list-style-type: none;
  643. position: relative;
  644. z-index: 10;
  645. top: 4px;
  646. line-height: 20px;
  647. }
  648. ul.cbi-tabmenu li.cbi-tab,
  649. ul.cbi-tabmenu li.cbi-tab-disabled {
  650. display: inline;
  651. margin: 0;
  652. }
  653. ul.cbi-tabmenu li.cbi-tab a,
  654. ul.cbi-tabmenu li.cbi-tab-disabled a {
  655. text-decoration: none;
  656. padding: 3px 7px;
  657. margin-right: 3px;
  658. border: 1px solid #BBBBBB;
  659. border-bottom: none;
  660. border-radius: 3px 3px 0 0;
  661. background-color: #EEEEEE;
  662. color: #BBBBBB;
  663. }
  664. ul.cbi-tabmenu li.cbi-tab-highlighted a {
  665. color: #000000;
  666. background-color: #FFEEAA;
  667. }
  668. ul.cbi-tabmenu li a:hover {
  669. color: #000000;
  670. }
  671. ul.cbi-tabmenu li.cbi-tab a {
  672. padding-top: 4px;
  673. color: #000000;
  674. background-color: #FFFFFF;
  675. }
  676. div.cbi-tab-descr {
  677. background-image: url(/luci-static/resources/cbi/help.gif);
  678. background-position: 0.25em 50%;
  679. background-repeat: no-repeat;
  680. border-bottom: 1px solid #CCCCCC;
  681. margin: 0.25em 0.25em 2em;
  682. padding: 0.5em 0.5em 0.5em 2em;
  683. }
  684. .left {
  685. text-align: left !important;
  686. }
  687. .right {
  688. text-align: right !important;
  689. }
  690. .luci {
  691. position: absolute;
  692. bottom: 0;
  693. left: 1em;
  694. height: 1.5em;
  695. font-size: 80%;
  696. }
  697. .luci a:link,
  698. .luci a:visited {
  699. background-color: transparent;
  700. color: #666666;
  701. text-decoration: none;
  702. font-size: 70%;
  703. }
  704. .inline {
  705. display: inline;
  706. }
  707. .error500 {
  708. white-space: normal;
  709. border: 1px dotted #ff0000;
  710. background-color: #ffffff;
  711. color: #000000;
  712. padding: 0.5em;
  713. }
  714. .errorbox {
  715. border: 1px solid #FF0000;
  716. background-color: #FFCCCC;
  717. padding: 5px;
  718. margin-bottom: 5px;
  719. }
  720. .errorbox a {
  721. color: #000000 !important;
  722. }
  723. .ifacebox {
  724. background-color: #FFFFFF;
  725. border: 1px solid #CCCCCC;
  726. margin: 0 10px;
  727. text-align: center;
  728. white-space: nowrap;
  729. }
  730. .ifacebox .ifacebox-head {
  731. border-bottom: 1px solid #CCCCCC;
  732. padding: 2px;
  733. }
  734. .ifacebox .ifacebox-body {
  735. padding: 2px;
  736. }
  737. .ifacebadge {
  738. background-color: #FFFFFF;
  739. border: 1px solid #CCCCCC;
  740. padding: 2px;
  741. margin-left: 2px;
  742. display: inline-block;
  743. }
  744. .ifacebadge-active {
  745. border-color: #000000;
  746. font-weight: bold;
  747. }
  748. .zonebadge {
  749. padding: 2px;
  750. display: inline-block;
  751. white-space: nowrap;
  752. cursor: pointer;
  753. }
  754. .zonebadge em,
  755. .zonebadge strong {
  756. margin: 3px;
  757. display: inline-block;
  758. }
  759. .zonebadge input {
  760. width: 6em;
  761. height: 1.5em;
  762. }
  763. .zonebadge-empty {
  764. border: 1px dashed #AAAAAA;
  765. color: #AAAAAA;
  766. font-style: italic;
  767. font-size: smaller;
  768. }
  769. .uci-change-list {
  770. font-family: monospace;
  771. }
  772. .uci-change-list ins,
  773. .uci-change-legend-label ins {
  774. text-decoration: none;
  775. border: 1px solid #00FF00;
  776. background-color: #CCFFCC;
  777. display: block;
  778. padding: 2px;
  779. }
  780. .uci-change-list del,
  781. .uci-change-legend-label del {
  782. text-decoration: none;
  783. border: 1px solid #FF0000;
  784. background-color: #FFCCCC;
  785. display: block;
  786. font-style: normal;
  787. padding: 2px;
  788. }
  789. .uci-change-list var,
  790. .uci-change-legend-label var {
  791. text-decoration: none;
  792. border: 1px solid #CCCCCC;
  793. background-color: #EEEEEE;
  794. display: block;
  795. font-style: normal;
  796. padding: 2px;
  797. }
  798. .uci-change-list var ins,
  799. .uci-change-list var del {
  800. /*display: inline;*/
  801. border: none;
  802. white-space: pre;
  803. font-style: normal;
  804. padding: 0px;
  805. }
  806. .uci-change-legend {
  807. padding: 5px;
  808. }
  809. .uci-change-legend-label {
  810. width: 150px;
  811. float: left;
  812. font-size: 80%;
  813. }
  814. .uci-change-legend-label>ins,
  815. .uci-change-legend-label>del,
  816. .uci-change-legend-label>var {
  817. float: left;
  818. margin-right: 4px;
  819. width: 10px;
  820. height: 10px;
  821. display: block;
  822. }
  823. .uci-change-legend-label var ins,
  824. .uci-change-legend-label var del {
  825. line-height: 6px;
  826. border: none;
  827. }
  828. // Hide show/hide password toggle image
  829. .cbi-input-password + img {
  830. display: none;
  831. }
  832. .the-key {
  833. text-align: left;
  834. font-size: 1.4em;
  835. background: lighten($ffyellow, 35);
  836. border: 3pt dashed $ffmagenta;
  837. margin-bottom: 0.5em;
  838. padding: 0.5em
  839. }