cascade.scss 16 KB

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