luci-theme-bootstrap, luci-theme-openwrt: allow dynlist .add-item to expand
[project/luci.git] / themes / luci-theme-bootstrap / htdocs / luci-static / bootstrap / cascade.css
index 260f5e31cc297c7aaa5630bee5a39b36efcd49fd..bb0a0987da93bd31dd4179db2f9e96009be90d87 100644 (file)
 /* Reset.less
  * Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here      that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
  * ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
-html {
-       margin: 0;
-       padding: 0;
-}
-
-body {
-       margin: 0;
-       padding: 5px;
-}
 
-h1, h2, h3, h4, h5, h6, p, pre, a, abbr, acronym, code, del, em, img, ins, q, s,
-small, strike, strong, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset,
-form, label, legend, button, table, caption, tbody, tfoot, thead, tr, th, td,
-.table, .tbody, .tfoot, .thead, .tr, .th, .td {
+* {
        margin: 0;
        padding: 0;
        border: 0;
-       font-weight: normal;
-       font-style: normal;
-       font-size: 100%;
-       line-height: 1;
-       font-family: inherit;
+       box-sizing: border-box;
 }
 
 abbr[title], acronym[title] {
@@ -52,15 +36,7 @@ ol, ul {
        list-style: none;
 }
 
-q:before,
-q:after,
-blockquote:before,
-blockquote:after {
-       content: "";
-}
-
 html {
-       overflow-y: scroll;
        font-size: 100%;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
@@ -74,14 +50,8 @@ a:hover, a:active {
        outline: 0;
 }
 
-article,
-aside,
-details,
-figcaption,
-figure,
 footer,
 header,
-hgroup,
 nav,
 section {
        display: block;
@@ -103,7 +73,6 @@ sub {
 }
 
 img {
-       border: 0;
        -ms-interpolation-mode: bicubic;
 }
 
@@ -116,12 +85,7 @@ textarea {
        margin: 0;
        box-sizing: border-box;
        vertical-align: baseline;
-       *vertical-align: middle;
-}
-
-button, input {
        line-height: normal;
-       *overflow: visible;
 }
 
 button::-moz-focus-inner, input::-moz-focus-inner {
@@ -164,13 +128,12 @@ textarea {
  * ------------------------------------------------------------------------------------------- */
 body {
        background-color: #fff;
-       margin: 0;
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 13px;
        font-weight: normal;
        line-height: 18px;
        color: #404040;
-       padding-top: 58px;
+       padding: 58px 5px 5px 5px;
 }
 
 .container {
@@ -416,11 +379,6 @@ fieldset legend {
        line-height: 1;
        color: #404040;
        padding-top: 20px;
-       *padding: 0 0 5px 0px;
-       /* IE6-7 */
-
-       *line-height: 1.5;
-       /* IE6-7 */
 
 }
 form .cbi-tab-descr {
@@ -429,20 +387,20 @@ form .cbi-tab-descr {
 }
 
 form .clearfix,
-form .cbi-value {
+.cbi-value {
        margin-bottom: 18px;
        zoom: 1;
 }
 
 form .clearfix:before, form .clearfix:after,
-form .cbi-value:before, form .cbi-value:after  {
+.cbi-value:before, .cbi-value:after  {
        display: table;
        content: "";
        zoom: 1;
 }
 
 form .clearfix:after,
-form .cbi-value:after {
+.cbi-value:after {
        clear: both;
 }
 
@@ -457,11 +415,11 @@ textarea {
 }
 
 form .input,
-form .cbi-value-field {
+.cbi-value-field {
        margin-left: 200px;
 }
 
-form .cbi-value label.cbi-value-title {
+.cbi-value label.cbi-value-title {
        padding-top: 6px;
        font-size: 13px;
        line-height: 18px;
@@ -475,6 +433,12 @@ input[type=checkbox], input[type=radio] {
        cursor: pointer;
 }
 
+label > input[type="checkbox"],
+label > input[type="radio"] {
+       vertical-align: bottom;
+       margin: 0;
+}
+
 input,
 textarea,
 select,
@@ -489,15 +453,57 @@ select,
        color: #808080;
        border: 1px solid #ccc;
        border-radius: 3px;
-       box-sizing: border-box;
 }
 
-.cbi-dropdown {
+.cbi-dropdown,
+.cbi-dynlist {
        min-width: 210px;
        max-width: 400px;
        width: auto;
 }
 
+.cbi-dynlist {
+       height: auto;
+       min-height: 30px;
+       display: inline-flex;
+       flex-direction: column;
+}
+
+.cbi-dynlist > .item {
+       margin-bottom: 4px;
+       box-shadow: 0 0 2px #ccc;
+       background: #fff;
+       padding: 2px 2em 2px 4px;
+       border: 1px solid #ccc;
+       border-radius: 3px;
+       position: relative;
+       pointer-events: none;
+}
+
+.cbi-dynlist > .item::after {
+       content: "×";
+       position: absolute;
+       display: inline-flex;
+       align-items: center;
+       top: -1px;
+       right: -1px;
+       bottom: -1px;
+       padding: 0 6px;
+       border: 1px solid #ccc;
+       border-radius: 0 3px 3px 0;
+       font-weight: bold;
+       color: #c44;
+       pointer-events: auto;
+}
+
+.cbi-dynlist > .add-item {
+       display: flex;
+}
+
+.cbi-dynlist > .add-item > input {
+       flex: 1 1 auto;
+}
+
 select {
        padding: initial;
        background: #fff;
@@ -530,12 +536,6 @@ input[type=button], input[type=reset], input[type=submit] {
        height: auto;
 }
 
-select, input[type=file] {
-       *height: auto;
-       *margin-top: 4px;
-       /* For IE7, add top margin to align select with labels */
-}
-
 select[multiple] {
        height: inherit;
        background-color: #fff;
@@ -548,7 +548,8 @@ textarea {
 .td > input[type=text],
 .td > input[type=password],
 .td > select,
-.td > .cbi-dropdown {
+.td > .cbi-dropdown,
+.cbi-dynlist > .add-item > .cbi-dropdown {
        width: 100%;
 }
 
@@ -568,11 +569,12 @@ textarea {
        color: #bfbfbf;
 }
 
-.btn, .cbi-button, input, textarea {
+.item::after, .btn, .cbi-button, input, textarea {
        transition: border linear 0.2s, box-shadow linear 0.2s;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
 }
 
+.item:hover::after,
 .btn:hover, .cbi-button:hover,
 input:focus, textarea:focus {
        outline: 0;
@@ -733,7 +735,7 @@ header {
        top: 0;
        left: 0;
        right: 0;
-       z-index: 10000;
+       z-index: 800;
        overflow: visible;
        color: #BFBFBF;
 }
@@ -1153,6 +1155,59 @@ footer {
        border-top: 1px solid #eee;
 }
 
+#modal_overlay {
+       position: fixed;
+       top: 0;
+       bottom: 0;
+       left: -10000px;
+       right: 10000px;
+       background: rgba(0, 0, 0, 0.7);
+       z-index: 900;
+       overflow-y: scroll;
+       -webkit-overflow-scrolling: touch;
+       transition: opacity .125s ease-in;
+       opacity: 0;
+}
+
+.modal {
+       width: 90%;
+       margin: 5em auto;
+       display: flex;
+       flex-wrap: wrap;
+       min-height: 32px;
+       max-width: 600px;
+       align-items: center;
+       border-radius: 3px;
+       background: #fff;
+       box-shadow: 0 0 3px #444;
+       padding: 1em 1em .5em 1em;
+       max-height: 2400px;
+       min-width: 270px;
+}
+
+.modal > * {
+       flex-basis: 100%;
+       line-height: normal;
+       margin-bottom: .5em;
+}
+
+.modal > pre,
+.modal > textarea {
+       white-space: pre-wrap;
+       overflow: auto;
+}
+
+body.modal-overlay-active {
+       overflow: hidden;
+       height: 100vh;
+}
+
+body.modal-overlay-active #modal_overlay {
+       left: 0;
+       right: 0;
+       opacity: 1;
+}
+
 .btn.danger,
 .alert-message.danger,
 .btn.danger:hover,
@@ -1168,7 +1223,8 @@ footer {
 .btn.info,
 .alert-message.info,
 .btn.info:hover,
-.alert-message.info:hover {
+.alert-message.info:hover,
+.cbi-tooltip.error, .cbi-tooltip.success, .cbi-tooltip.info {
        color: #fff;
 }
 
@@ -1180,30 +1236,32 @@ footer {
 .btn.danger,
 .alert-message.danger,
 .btn.error,
-.alert-message.error {
+.alert-message.error,
+.cbi-tooltip.error {
        background: linear-gradient(to bottom, #ee5f5b, #c43c35) repeat-x;
        text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
        border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
 }
 
-.btn.success, .alert-message.success {
+.btn.success, .alert-message.success, .cbi-tooltip.success {
        background: linear-gradient(to bottom, #62c462, #57a957) repeat-x;
        text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
        border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
 }
 
-.btn.info, .alert-message.info {
+.btn.info, .alert-message.info, .cbi-tooltip.info {
        background: linear-gradient(to bottom, #5bc0de, #339bb9) repeat-x;
        text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
        border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
 }
 
-.alert-message.notice {
+.alert-message.notice, .cbi-tooltip.notice {
        background: linear-gradient(to bottom, #efefef, #fefefe) repeat-x;
        text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
        border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
 }
 
+.item::after,
 .btn,
 .cbi-button {
        cursor: pointer;
@@ -1226,6 +1284,8 @@ footer {
 }
 
 .cbi-input-invalid,
+.cbi-input-invalid.cbi-dropdown,
+.cbi-input-invalid.cbi-dropdown:not([open]) > ul > li,
 .cbi-value-error input {
        color: #f00;
        border-color: #f00;
@@ -1316,6 +1376,7 @@ footer {
        color: #404040;
 }
 
+.cbi-dynlist > .item:focus,
 .cbi-dropdown:focus {
        outline: 2px solid #4b6e9b;
 }
@@ -1352,6 +1413,7 @@ footer {
        font-weight: bold;
        text-shadow: 1px 1px 0px #fff;
        display: none;
+       justify-content: center;
 }
 
 .cbi-dropdown > ul > li {
@@ -1409,10 +1471,11 @@ footer {
        border: 1px solid #918e8c;
        box-shadow: 0 0 4px #918e8c;
        position: absolute;
-       z-index: 1000;
+       z-index: 1100;
        max-width: none;
        min-width: 100%;
        width: auto;
+       transition: max-height .125s ease-in;
 }
 
 .cbi-dropdown > ul > li[display],
@@ -1452,6 +1515,14 @@ footer {
        border-bottom: none;
 }
 
+.cbi-dropdown[open] > ul.dropdown > li[unselectable] {
+       opacity: 0.7;
+}
+
+.cbi-dropdown[open] > ul.dropdown > li > input.create-item-input:first-child:last-child {
+       width: 100%;
+}
+
 .cbi-dropdown[disabled] {
        pointer-events: none;
        opacity: .6;
@@ -1462,12 +1533,11 @@ input[type="password"] + .cbi-button,
 select + .cbi-button {
        border-radius: 0 3px 3px 0;
        border-color: #ccc;
-       margin: 0 0 1px -2px;
+       margin-left: -2px;
        padding: 0 6px;
        vertical-align: top;
-       height: 28px;
+       height: 30px;
        font-size: 14px;
-       font-weight: bold;
        line-height: 28px;
 }
 
@@ -1491,8 +1561,13 @@ select + .cbi-button {
        position: absolute;
        z-index: 1000;
        left: -1000px;
+       box-shadow: 0 0 2px #ccc;
+       border-radius: 3px;
+       background: #fff;
+       white-space: pre;
+       padding: 2px 5px;
        opacity: 0;
-       transition: opacity .25s ease-out;
+       transition: opacity .25s ease-in;
 }
 
 .cbi-tooltip-container:hover .cbi-tooltip:not(:empty) {
@@ -1501,6 +1576,37 @@ select + .cbi-button {
        transition: opacity .25s ease-in;
 }
 
+.cbi-progressbar {
+       border: 1px solid #ccc;
+       border-radius: 3px;
+       position: relative;
+       min-width: 170px;
+       height: 20px;
+       margin: 4px 0;
+       background: #f9f9f9;
+}
+
+.cbi-progressbar > div {
+       background: #90c0e0;
+       height: 100%;
+       transition: width .25s ease-in;
+       width: 0%;
+}
+
+.cbi-progressbar::after {
+       position: absolute;
+       bottom: 0;
+       top: 0;
+       right: 0;
+       left: 0;
+       text-align: center;
+       text-shadow: 0 0 2px #fff;
+       content: attr(title);
+       white-space: pre;
+       overflow: hidden;
+       text-overflow: ellipsis;
+}
+
 .zonebadge .cbi-tooltip {
        padding: 1px;
        background: inherit;
@@ -1672,19 +1778,6 @@ a.label:hover {
 /* LuCI specific items */
 .hidden { display: none }
 
-#memtotal > div,
-#memfree > div,
-#memcache > div,
-#membuff > div,
-#conns > div  {
-         border: 1px solid #ccc;
-         border-radius: 3px 3px 3px 3px;
-         color: #808080;
-         display: inline-block;
-         font-size: 13px;
-         line-height: 18px;
-}
-
 #xhr_poll_status {
          cursor: pointer;
 }
@@ -2033,6 +2126,59 @@ div.cbi-value var,
        bottom: 2px;
 }
 
+#modal_overlay {
+       position: fixed;
+       top: 0;
+       bottom: 0;
+       left: -10000px;
+       right: 10000px;
+       background: rgba(0, 0, 0, 0.7);
+       z-index: 900;
+       overflow-y: scroll;
+       -webkit-overflow-scrolling: touch;
+       transition: opacity .125s ease-in;
+       opacity: 0;
+}
+
+#modal_overlay > .modal {
+       width: 90%;
+       margin: 5em auto;
+       display: flex;
+       flex-wrap: wrap;
+       min-height: 32px;
+       max-width: 600px;
+       align-items: center;
+       border-radius: 3px;
+       background: #fff;
+       box-shadow: 0 0 3px #444;
+       padding: 1em 1em .5em 1em;
+       max-height: 2400px;
+       min-width: 270px;
+}
+
+#modal_overlay .modal > * {
+       flex-basis: 100%;
+       line-height: normal;
+       margin-bottom: .5em;
+}
+
+#modal_overlay .modal > pre,
+#modal_overlay .modal > textarea {
+       white-space: pre-wrap;
+       overflow: auto;
+}
+
+body.modal-overlay-active {
+       overflow: hidden;
+       height: 100vh;
+}
+
+body.modal-overlay-active #modal_overlay {
+       left: 0;
+       right: 0;
+       opacity: 1;
+}
+
 html body.apply-overlay-active {
        height: calc(100vh - 63px);
 }
@@ -2040,3 +2186,33 @@ html body.apply-overlay-active {
 #applyreboot-section {
        line-height: 300%;
 }
+
+[data-page="admin-network-dhcp"] [data-name="ip"] {
+       width: 15%;
+}
+
+@keyframes flash {
+       0% { opacity: 1; }
+       50% { opacity: .5; }
+       100% { opacity: 1; }
+}
+
+.flash {
+       animation: flash .35s;
+}
+
+.spinning {
+       position: relative;
+       padding-left: 32px !important;
+}
+
+.spinning::before {
+       position: absolute;
+       top: 0;
+       left: 0;
+       bottom: 0;
+       width: 32px;
+       content: " ";
+       background: url(../resources/icons/loading.gif) no-repeat center;
+       background-size: 16px;
+}