2012-02-15 18:08:44 +00:00
|
|
|
|
/*!
|
|
|
|
|
* LuCI Bootstrap Theme
|
|
|
|
|
* Copyright 2012 Nut & Bolt
|
|
|
|
|
* By David Menting <david@nut-bolt.nl>
|
|
|
|
|
* Based on Bootstrap v1.4.0
|
|
|
|
|
*
|
|
|
|
|
* Copyright 2011 Twitter, Inc
|
|
|
|
|
* Licensed under the Apache License v2.0
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
|
|
|
|
*/
|
2021-09-15 20:34:11 +00:00
|
|
|
|
|
|
|
|
|
/* Variables
|
|
|
|
|
* --------- */
|
|
|
|
|
|
|
|
|
|
:root {
|
|
|
|
|
--background-color-delta-l-sign: -1;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
--background-color-h: 0;
|
|
|
|
|
--background-color-s: 0%;
|
|
|
|
|
--background-color-l: 100%;
|
|
|
|
|
|
|
|
|
|
--background-color-high-hsl:
|
|
|
|
|
var(--background-color-h),
|
|
|
|
|
var(--background-color-s),
|
|
|
|
|
var(--background-color-l);
|
|
|
|
|
--background-color-high: hsl(var(--background-color-high-hsl));
|
|
|
|
|
|
|
|
|
|
--background-color-medium-hsl:
|
|
|
|
|
var(--background-color-h),
|
|
|
|
|
var(--background-color-s),
|
|
|
|
|
calc(var(--background-color-l) + var(--background-color-delta-l-sign) * calc(6 / 255 * 100%));
|
|
|
|
|
--background-color-medium: hsl(var(--background-color-medium-hsl));
|
|
|
|
|
|
|
|
|
|
--background-color-low-hsl:
|
|
|
|
|
var(--background-color-h),
|
|
|
|
|
var(--background-color-s),
|
|
|
|
|
calc(var(--background-color-l) + var(--background-color-delta-l-sign) * calc(10 / 255 * 100%));
|
|
|
|
|
--background-color-low: hsl(var(--background-color-low-hsl));
|
|
|
|
|
|
2021-09-15 20:34:11 +00:00
|
|
|
|
--text-color-delta-l-sign: 1;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
--text-color-h: 0;
|
|
|
|
|
--text-color-s: 0%;
|
|
|
|
|
--text-color-l: 0%;
|
|
|
|
|
|
|
|
|
|
--text-color-highest-hsl:
|
|
|
|
|
var(--text-color-h),
|
|
|
|
|
var(--text-color-s),
|
|
|
|
|
var(--text-color-l);
|
|
|
|
|
--text-color-highest: hsl(var(--text-color-highest-hsl));
|
|
|
|
|
|
|
|
|
|
--text-color-high-hsl:
|
|
|
|
|
var(--text-color-h),
|
|
|
|
|
var(--text-color-s),
|
|
|
|
|
calc(var(--text-color-l) + var(--text-color-delta-l-sign) * calc(64 / 255 * 100%));
|
|
|
|
|
--text-color-high: hsl(var(--text-color-high-hsl));
|
|
|
|
|
|
|
|
|
|
--text-color-medium-hsl:
|
|
|
|
|
var(--text-color-h),
|
|
|
|
|
var(--text-color-s),
|
|
|
|
|
calc(var(--text-color-l) + var(--text-color-delta-l-sign) * calc(128 / 255 * 100%));
|
|
|
|
|
--text-color-medium: hsl(var(--text-color-medium-hsl));
|
|
|
|
|
|
|
|
|
|
--text-color-low-hsl:
|
|
|
|
|
var(--text-color-h),
|
|
|
|
|
var(--text-color-s),
|
|
|
|
|
calc(var(--text-color-l) + var(--text-color-delta-l-sign) * calc(191 / 255 * 100%));
|
|
|
|
|
--text-color-low: hsl(var(--text-color-low-hsl));
|
|
|
|
|
|
2021-09-15 20:34:11 +00:00
|
|
|
|
--border-color-delta-l-sign: -1;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
--border-color-h: var(--background-color-h);
|
|
|
|
|
--border-color-s: var(--background-color-s);
|
|
|
|
|
--border-color-l: var(--background-color-l);
|
|
|
|
|
|
|
|
|
|
--border-color-high-hsl:
|
|
|
|
|
var(--border-color-h),
|
|
|
|
|
var(--border-color-s),
|
|
|
|
|
calc(var(--border-color-l) + var(--border-color-delta-l-sign) * calc(51 / 255 * 100%));
|
|
|
|
|
--border-color-high: hsl(var(--border-color-high-hsl));
|
|
|
|
|
|
|
|
|
|
--border-color-medium-hsl:
|
|
|
|
|
var(--border-color-h),
|
|
|
|
|
var(--border-color-s),
|
|
|
|
|
calc(var(--border-color-l) + var(--border-color-delta-l-sign) * calc(34 / 255 * 100%));
|
|
|
|
|
--border-color-medium: hsl(var(--border-color-medium-hsl));
|
|
|
|
|
|
|
|
|
|
--border-color-low-hsl:
|
|
|
|
|
var(--border-color-h),
|
|
|
|
|
var(--border-color-s),
|
|
|
|
|
calc(var(--border-color-l) + var(--border-color-delta-l-sign) * calc(17 / 255 * 100%));
|
|
|
|
|
--border-color-low: hsl(var(--border-color-low-hsl));
|
|
|
|
|
|
|
|
|
|
--primary-color-high: #1976d2;
|
|
|
|
|
--primary-color-medium: #1564c0;
|
|
|
|
|
--primary-color-low: #0d46a1;
|
|
|
|
|
--on-primary-color: var(--background-color-high);
|
|
|
|
|
|
|
|
|
|
--error-color-high-rgb: 246, 43, 18;
|
|
|
|
|
--error-color-high: rgb(var(--error-color-high-rgb));
|
|
|
|
|
--error-color-medium: #e8210d;
|
|
|
|
|
--error-color-low: #d00000;
|
|
|
|
|
--on-error-color: var(--background-color-high);
|
|
|
|
|
|
|
|
|
|
--success-color-high-rgb: 0, 172, 89;
|
|
|
|
|
--success-color-high: rgb(var(--success-color-high-rgb));
|
|
|
|
|
--success-color-medium: #009a4c;
|
|
|
|
|
--success-color-low: #007936;
|
|
|
|
|
--on-success-color: var(--background-color-high);
|
|
|
|
|
|
|
|
|
|
--warn-color-high: #efbd0b;
|
|
|
|
|
--warn-color-medium: #f0c629;
|
|
|
|
|
--warn-color-low: #f2d24f;
|
|
|
|
|
--on-warn-color: var(--text-color-highest);
|
|
|
|
|
|
|
|
|
|
--disabled-opacity: .7;
|
|
|
|
|
|
2021-11-08 08:56:33 +00:00
|
|
|
|
color-scheme: light;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-07 10:04:52 +00:00
|
|
|
|
:root[data-darkmode="true"] {
|
|
|
|
|
--background-color-delta-l-sign: 1;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
--background-color-h: 0;
|
|
|
|
|
--background-color-s: 0%;
|
|
|
|
|
--background-color-l: calc(34 / 255 * 100%);
|
2021-11-07 10:04:52 +00:00
|
|
|
|
--text-color-delta-l-sign: -1;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
--text-color-h: 0;
|
|
|
|
|
--text-color-s: 0%;
|
|
|
|
|
--text-color-l: 100%;
|
2021-11-07 10:04:52 +00:00
|
|
|
|
--border-color-delta-l-sign: 1;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
|
|
|
|
|
--primary-color-high: #4da1c0;
|
|
|
|
|
--primary-color-medium: #448da6;
|
|
|
|
|
--primary-color-low: #3c7a8d;
|
|
|
|
|
|
|
|
|
|
--error-color-high-rgb: 209, 86, 83;
|
|
|
|
|
--error-color-medium: #bf4e4c;
|
|
|
|
|
--error-color-low: #b14946;
|
|
|
|
|
|
|
|
|
|
--success-color-high-rgb: 0, 166, 108;
|
|
|
|
|
--success-color-medium: #00945e;
|
|
|
|
|
--success-color-low: #008252;
|
|
|
|
|
|
|
|
|
|
--warn-color-high: #a69461;
|
|
|
|
|
--warn-color-medium: #a68d45;
|
|
|
|
|
--warn-color-low: #a68732;
|
|
|
|
|
--on-warn-color: var(--background-color-high);
|
|
|
|
|
|
|
|
|
|
--disabled-opacity: .4;
|
|
|
|
|
|
2021-11-08 08:56:33 +00:00
|
|
|
|
color-scheme: dark;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
/* 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).
|
|
|
|
|
* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
|
2012-11-12 16:49:14 +00:00
|
|
|
|
|
2018-11-13 15:19:23 +00:00
|
|
|
|
* {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
border: 0;
|
2018-11-13 15:19:23 +00:00
|
|
|
|
box-sizing: border-box;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
abbr[title], acronym[title] {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
border-bottom: 1px dotted;
|
2018-07-18 10:02:35 +00:00
|
|
|
|
font-weight: inherit;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
cursor: help;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
table {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
border-spacing: 0;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
ol, ul {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
list-style: none;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
html {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-size: 100%;
|
|
|
|
|
-webkit-text-size-adjust: 100%;
|
|
|
|
|
-ms-text-size-adjust: 100%;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
height: 100%;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
a:focus {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
outline: thin dotted;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
a:hover, a:active {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
outline: 0;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
sub, sup {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-size: 75%;
|
|
|
|
|
line-height: 0;
|
|
|
|
|
position: relative;
|
|
|
|
|
vertical-align: baseline;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
sup {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
top: -0.5em;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
sub {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
bottom: -0.25em;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
img {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
-ms-interpolation-mode: bicubic;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
button,
|
|
|
|
|
input,
|
|
|
|
|
select,
|
2013-01-04 19:55:54 +00:00
|
|
|
|
option,
|
2012-02-15 18:08:44 +00:00
|
|
|
|
textarea {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-size: 100%;
|
|
|
|
|
margin: 0;
|
2013-01-04 19:55:54 +00:00
|
|
|
|
box-sizing: border-box;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
vertical-align: baseline;
|
2021-10-08 22:30:48 +00:00
|
|
|
|
line-height: 2em;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
button::-moz-focus-inner, input::-moz-focus-inner {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
border: 0;
|
|
|
|
|
padding: 0;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
button,
|
|
|
|
|
input[type="button"],
|
|
|
|
|
input[type="reset"],
|
|
|
|
|
input[type="submit"] {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
-webkit-appearance: button;
|
2019-09-04 12:23:31 +00:00
|
|
|
|
word-break: break-all;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2016-01-18 10:06:35 +00:00
|
|
|
|
button[disabled],
|
|
|
|
|
input[type="button"][disabled],
|
|
|
|
|
input[type="reset"][disabled],
|
|
|
|
|
input[type="submit"][disabled] {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
opacity: var(--disabled-opacity);
|
2016-01-18 10:06:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
input[type="search"] {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
-webkit-appearance: textfield;
|
|
|
|
|
box-sizing: content-box;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
input[type="search"]::-webkit-search-decoration {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
-webkit-appearance: none;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
textarea {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
overflow: auto;
|
|
|
|
|
vertical-align: top;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
/*
|
|
|
|
|
* Scaffolding
|
|
|
|
|
* Basic and global styles for generating a grid system, structural layout, and page templates
|
|
|
|
|
* ------------------------------------------------------------------------------------------- */
|
|
|
|
|
body {
|
2021-09-15 20:34:11 +00:00
|
|
|
|
background-color: var(--background-color-high);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
line-height: 18px;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
color: var(--text-color-high);
|
2021-10-08 22:30:48 +00:00
|
|
|
|
padding: 5px;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.container {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 940px;
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
zoom: 1;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
a {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
color: var(--primary-color-high);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
text-decoration: none;
|
|
|
|
|
line-height: inherit;
|
|
|
|
|
font-weight: inherit;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
a:hover {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
color: var(--primary-color-low);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
text-decoration: underline;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.pull-right {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
float: right;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.pull-left {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
float: left;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-11-27 12:57:32 +00:00
|
|
|
|
.nowrap {
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
/* Typography.less
|
|
|
|
|
* Headings, body text, lists, code, and more for a versatile and durable typography system
|
|
|
|
|
* ---------------------------------------------------------------------------------------- */
|
|
|
|
|
p,
|
|
|
|
|
.cbi-map-descr,
|
2018-06-19 15:21:00 +00:00
|
|
|
|
.cbi-section-descr,
|
|
|
|
|
.table .tr.cbi-section-table-descr .th {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
line-height: 18px;
|
|
|
|
|
margin-bottom: 9px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
p small {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-size: 11px;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
color: var(--text-color-low);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
h1,
|
|
|
|
|
h2,
|
2018-06-19 15:21:00 +00:00
|
|
|
|
h3, legend,
|
2012-02-15 18:08:44 +00:00
|
|
|
|
h4,
|
|
|
|
|
h5,
|
|
|
|
|
h6 {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-weight: bold;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
color: var(--text-color-high);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
h1 small,
|
|
|
|
|
h2 small,
|
|
|
|
|
h3 small,
|
|
|
|
|
h4 small,
|
|
|
|
|
h5 small,
|
|
|
|
|
h6 small {
|
2021-09-15 20:34:11 +00:00
|
|
|
|
color: var(--text-color-low);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
h1 {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
margin-bottom: 18px;
|
|
|
|
|
font-size: 30px;
|
|
|
|
|
line-height: 36px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
h1 small {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-size: 18px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
h2 {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-size: 24px;
|
|
|
|
|
line-height: 36px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
h2 small {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-size: 14px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-06-19 15:21:00 +00:00
|
|
|
|
h3, legend,
|
2012-02-15 18:08:44 +00:00
|
|
|
|
h4,
|
|
|
|
|
h5,
|
|
|
|
|
h6 {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
line-height: 36px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-06-19 15:21:00 +00:00
|
|
|
|
h3, legend {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-size: 18px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
h3 small {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-size: 14px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
h4 {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-size: 16px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
h4 small {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-size: 12px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
h5 {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-size: 14px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
h6 {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-size: 13px;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
color: var(--text-color-low);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
text-transform: uppercase;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
ul, ol {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
margin: 0 0 18px 25px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
ul ul,
|
|
|
|
|
ul ol,
|
|
|
|
|
ol ol,
|
|
|
|
|
ol ul {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
margin-bottom: 0;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
ul {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
list-style: disc;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
ol {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
list-style: decimal;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
li {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
line-height: 18px;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
color: var(--text-color-medium);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
ul.unstyled {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
list-style: none;
|
|
|
|
|
margin-left: 0;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
dl {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
margin-bottom: 18px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
dl dt, dl dd {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
line-height: 18px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
dl dt {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-weight: bold;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
dl dd {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
margin-left: 9px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
hr {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
margin: 20px 0 19px;
|
|
|
|
|
border: 0;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
border-bottom: 1px solid var(--border-color-low);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
strong {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-style: inherit;
|
|
|
|
|
font-weight: bold;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
em {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-style: italic;
|
|
|
|
|
font-weight: inherit;
|
|
|
|
|
line-height: inherit;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
small { font-size: 0.9em }
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
address {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
display: block;
|
|
|
|
|
line-height: 18px;
|
|
|
|
|
margin-bottom: 18px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
code, pre {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
padding: 0 3px 2px;
|
|
|
|
|
font-family: Monaco, Andale Mono, Courier New, monospace;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
border-radius: 3px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
code {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
background-color: var(--border-color-low);
|
|
|
|
|
color: var(--text-color-high);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
padding: 1px 3px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
pre {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
--border-color-h: var(--background-color-h);
|
|
|
|
|
--border-color-s: var(--background-color-s);
|
2021-09-15 20:34:11 +00:00
|
|
|
|
--border-color-delta-l: 100%;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
--border-color-l: calc(var(--background-color-l) + var(--background-color-delta-l-sign) * var(--border-color-delta-l));
|
2021-09-15 20:34:11 +00:00
|
|
|
|
--border-color-a: 0.15;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
--border-color: hsla(var(--border-color-hsl), var(--border-color-a));
|
2021-09-15 20:34:11 +00:00
|
|
|
|
|
|
|
|
|
background-color: var(--background-color-low);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
display: block;
|
|
|
|
|
padding: 8.5px;
|
|
|
|
|
margin: 0 0 18px;
|
|
|
|
|
line-height: 18px;
|
|
|
|
|
font-size: 12px;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
border: 1px solid var(--border-color);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
border-radius: 3px;
|
|
|
|
|
white-space: pre;
|
|
|
|
|
white-space: pre-wrap;
|
|
|
|
|
word-wrap: break-word;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
/* Forms.less
|
|
|
|
|
* Base styles for various input types, form layouts, and states
|
|
|
|
|
* ------------------------------------------------------------- */
|
2021-11-13 22:59:39 +00:00
|
|
|
|
form,
|
|
|
|
|
.cbi-value {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
margin-bottom: 18px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
fieldset {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
margin-bottom: 9px;
|
|
|
|
|
padding-top: 9px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
fieldset legend {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
display: block;
|
|
|
|
|
font-size: 19.5px;
|
|
|
|
|
line-height: 1;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
color: var(--text-color-high);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
padding-top: 20px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2021-09-15 20:34:11 +00:00
|
|
|
|
|
2015-02-28 17:20:33 +00:00
|
|
|
|
form .cbi-tab-descr {
|
|
|
|
|
line-height: 18px;
|
|
|
|
|
margin-bottom: 18px;
|
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
label,
|
|
|
|
|
input,
|
2019-07-05 12:11:18 +00:00
|
|
|
|
button,
|
2012-02-15 18:08:44 +00:00
|
|
|
|
select,
|
|
|
|
|
textarea {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
line-height: normal;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
form .input,
|
2018-11-16 18:29:33 +00:00
|
|
|
|
.cbi-value-field {
|
2013-01-04 19:55:54 +00:00
|
|
|
|
margin-left: 200px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-11-16 18:29:33 +00:00
|
|
|
|
.cbi-value label.cbi-value-title {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
padding-top: 6px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
line-height: 18px;
|
|
|
|
|
float: left;
|
2013-01-04 19:55:54 +00:00
|
|
|
|
width: 180px;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
text-align: right;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
color: var(--text-color-high);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-11-13 15:19:23 +00:00
|
|
|
|
label > input[type="checkbox"],
|
|
|
|
|
label > input[type="radio"] {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
vertical-align: text-top;
|
2018-11-13 15:19:23 +00:00
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-13 22:59:39 +00:00
|
|
|
|
label[for] {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
input,
|
|
|
|
|
textarea,
|
|
|
|
|
select,
|
2021-11-13 22:59:39 +00:00
|
|
|
|
.cbi-select,
|
|
|
|
|
.cbi-dropdown:not(.btn):not(.cbi-button) {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 210px;
|
|
|
|
|
padding: 4px;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
background: var(--background-color-high);
|
|
|
|
|
color: var(--text-color-high);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-size: 13px;
|
|
|
|
|
line-height: 18px;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
border: 1px solid var(--border-color-high);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
border-radius: 3px;
|
2018-06-08 05:29:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-22 08:16:45 +00:00
|
|
|
|
input,
|
|
|
|
|
select,
|
2021-11-13 22:59:39 +00:00
|
|
|
|
.cbi-select,
|
|
|
|
|
.cbi-dropdown:not(.btn):not(.cbi-button) {
|
2019-11-22 08:16:45 +00:00
|
|
|
|
height: 30px;
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-10 17:20:56 +00:00
|
|
|
|
.cbi-dropdown:not(.btn):not(.cbi-button),
|
2021-11-16 23:30:58 +00:00
|
|
|
|
.cbi-dynlist {
|
2018-06-08 05:29:44 +00:00
|
|
|
|
min-width: 210px;
|
|
|
|
|
max-width: 400px;
|
|
|
|
|
width: auto;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-10-20 15:56:02 +00:00
|
|
|
|
.cbi-dynlist {
|
|
|
|
|
height: auto;
|
|
|
|
|
min-height: 30px;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-dynlist > .item {
|
|
|
|
|
margin-bottom: 4px;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
box-shadow: 0 0 2px var(--border-color-high);
|
|
|
|
|
background: var(--background-color-high);
|
2018-10-20 15:56:02 +00:00
|
|
|
|
padding: 2px 2em 2px 4px;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
border: 1px solid var(--border-color-high);
|
2018-10-20 15:56:02 +00:00
|
|
|
|
border-radius: 3px;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
color: var(--text-color-high);
|
2018-10-20 15:56:02 +00:00
|
|
|
|
position: relative;
|
|
|
|
|
pointer-events: none;
|
2020-04-03 11:47:00 +00:00
|
|
|
|
overflow: hidden;
|
|
|
|
|
word-break: break-all;
|
2018-10-20 15:56:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-dynlist > .item::after {
|
|
|
|
|
content: "×";
|
|
|
|
|
position: absolute;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
top: -1px;
|
|
|
|
|
right: -1px;
|
|
|
|
|
bottom: -1px;
|
|
|
|
|
padding: 0 6px;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
border: 1px solid var(--border-color-high);
|
2018-10-20 15:56:02 +00:00
|
|
|
|
border-radius: 0 3px 3px 0;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #c44;
|
|
|
|
|
pointer-events: auto;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-20 12:31:58 +00:00
|
|
|
|
.cbi-dynlist > .add-item {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-23 14:08:50 +00:00
|
|
|
|
.cbi-dynlist > .add-item > input,
|
|
|
|
|
.cbi-dynlist > .add-item > button {
|
2018-11-20 12:31:58 +00:00
|
|
|
|
flex: 1 1 auto;
|
2018-11-23 14:08:50 +00:00
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
2018-11-20 12:31:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-13 22:59:39 +00:00
|
|
|
|
.cbi-value-field > .cbi-checkbox {
|
|
|
|
|
height: 30px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-11-13 22:59:39 +00:00
|
|
|
|
.cbi-select {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
padding: 0;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
position: relative;
|
|
|
|
|
background: linear-gradient(var(--background-color-high), var(--border-color-low));
|
|
|
|
|
}
|
2012-02-15 18:08:44 +00:00
|
|
|
|
|
2021-11-13 22:59:39 +00:00
|
|
|
|
.cbi-select select,
|
|
|
|
|
.cbi-select select:focus {
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
appearance: none;
|
|
|
|
|
outline: none;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
border: none;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
background: transparent;
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 100%;
|
2021-11-16 23:30:58 +00:00
|
|
|
|
padding: 0 .3em;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
margin-right: .6em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-select::before {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
2021-11-16 23:30:58 +00:00
|
|
|
|
bottom: 0;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
content: "▾";
|
2021-11-16 23:30:58 +00:00
|
|
|
|
padding: 0 .3em;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
background: linear-gradient(var(--background-color-high), var(--border-color-low));
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
border-radius: 3px;
|
2021-11-16 23:30:58 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-select select option {
|
|
|
|
|
background: var(--background-color-low);
|
|
|
|
|
color: var(--text-color-high);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-select select option:hover {
|
|
|
|
|
background: var(--primary-color-low);
|
|
|
|
|
color: var(--on-primary-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-select select option:checked {
|
|
|
|
|
background: var(--primary-color-medium);
|
|
|
|
|
color: var(--on-primary-color);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
input[type=file] {
|
2018-07-12 16:57:20 +00:00
|
|
|
|
background-color: #fff;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
padding: initial;
|
|
|
|
|
border: initial;
|
|
|
|
|
line-height: initial;
|
|
|
|
|
box-shadow: none;
|
2013-01-04 19:55:54 +00:00
|
|
|
|
width: auto !important;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
input[type=button], input[type=reset], input[type=submit] {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
width: auto;
|
|
|
|
|
height: auto;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
select[multiple] {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
height: inherit;
|
2018-07-12 16:57:20 +00:00
|
|
|
|
background-color: #fff;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-11-13 22:59:39 +00:00
|
|
|
|
input[type="checkbox"],
|
|
|
|
|
input[type="radio"] {
|
|
|
|
|
--bd-color: var(--border-color-high);
|
|
|
|
|
--fg-color: var(--text-color-high);
|
|
|
|
|
|
|
|
|
|
appearance: none;
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
color: var(--fg-color);
|
|
|
|
|
position: relative;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
background: none;
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type="checkbox"]::before,
|
|
|
|
|
input[type="checkbox"]::after,
|
|
|
|
|
input[type="radio"]::before,
|
|
|
|
|
input[type="radio"]::after {
|
|
|
|
|
position: absolute;
|
|
|
|
|
content: "";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type="checkbox"]::before,
|
|
|
|
|
input[type="radio"]::before {
|
|
|
|
|
top: -1px;
|
|
|
|
|
left: -1px;
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
background: linear-gradient(var(--background-color-high), var(--background-color-low));
|
|
|
|
|
border: 1px solid var(--bd-color);
|
|
|
|
|
border-radius: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type="radio"],
|
|
|
|
|
input[type="radio"]::before {
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type="checkbox"]::after,
|
|
|
|
|
input[type="radio"]::after {
|
|
|
|
|
top: 2px;
|
|
|
|
|
left: 2px;
|
|
|
|
|
width: 10px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type="checkbox"]:checked::after,
|
|
|
|
|
input[type="radio"]:checked::after {
|
|
|
|
|
--checkmark-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><path d='m2.5 7.4 7.5 7.5-2.5 2.4L0 10Zm15-5L20 4.9 7.5 17.3 5 15Z'/></svg>");
|
|
|
|
|
-webkit-mask: var(--checkmark-icon) center/cover no-repeat;
|
|
|
|
|
mask: var(--checkmark-icon) center/cover no-repeat;
|
|
|
|
|
background: var(--fg-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type="radio"]:checked:after {
|
|
|
|
|
--checkmark-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><circle cx='10' cy='10' r='8'/></svg>");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input[type="checkbox"].cbi-input-invalid,
|
|
|
|
|
input[type="radio"].cbi-input-invalid {
|
|
|
|
|
--bd-color: var(--error-color-medium);
|
|
|
|
|
--fg-color: var(--error-color-high);
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-29 06:57:22 +00:00
|
|
|
|
.td > input[type=text],
|
|
|
|
|
.td > input[type=password],
|
|
|
|
|
.td > select,
|
2019-11-10 17:20:56 +00:00
|
|
|
|
.td > .cbi-dropdown:not(.btn):not(.cbi-button),
|
2018-10-20 15:56:02 +00:00
|
|
|
|
.cbi-dynlist > .add-item > .cbi-dropdown {
|
2018-06-29 06:57:22 +00:00
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2021-09-15 20:34:11 +00:00
|
|
|
|
::placeholder {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
color: var(--text-color-medium);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-11-13 22:59:39 +00:00
|
|
|
|
.item::after,
|
|
|
|
|
.btn,
|
|
|
|
|
.cbi-button,
|
|
|
|
|
.cbi-select,
|
|
|
|
|
.cbi-dropdown,
|
|
|
|
|
.cbi-dynlist > .item,
|
|
|
|
|
input[type="checkbox"]::before,
|
|
|
|
|
input[type="radio"]::before,
|
|
|
|
|
input, button, textarea {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
transition: border linear 0.2s, box-shadow linear 0.2s;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
box-shadow: inset 0 1px 3px hsla(var(--border-color-low-hsl), .01);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-10-20 15:56:02 +00:00
|
|
|
|
.item:hover::after,
|
2021-11-13 22:59:39 +00:00
|
|
|
|
.btn:hover, .btn:focus,
|
|
|
|
|
.cbi-button:hover, .cbi-button:focus,
|
|
|
|
|
.cbi-select.focus,
|
|
|
|
|
.cbi-dropdown:focus, .cbi-dropdown[open],
|
|
|
|
|
.cbi-dynlist > .item:focus,
|
|
|
|
|
input[type="checkbox"]:focus::before,
|
|
|
|
|
input[type="radio"]:focus::before,
|
|
|
|
|
input:focus, button:hover, textarea:focus {
|
|
|
|
|
--focus-color-rgb: 82, 168, 236;
|
|
|
|
|
|
2012-02-15 20:38:36 +00:00
|
|
|
|
outline: 0;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
border-color: rgba(var(--focus-color-rgb), 0.8) !important;
|
|
|
|
|
box-shadow: inset 0 1px 3px hsla(var(--border-color-low-hsl), .01), 0 0 8px rgba(var(--focus-color-rgb), 0.6);
|
2018-07-15 13:17:32 +00:00
|
|
|
|
text-decoration: none;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-11-13 22:59:39 +00:00
|
|
|
|
.cbi-input-invalid:focus,
|
|
|
|
|
.cbi-select.cbi-input-invalid,
|
|
|
|
|
input[type="checkbox"].cbi-input-invalid:focus::before,
|
|
|
|
|
input[type="radio"].cbi-input-invalid:focus::before {
|
|
|
|
|
--focus-color-rgb: var(--error-color-high-rgb);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
input[disabled],
|
2019-07-05 12:11:18 +00:00
|
|
|
|
button[disabled],
|
2012-02-15 18:08:44 +00:00
|
|
|
|
select[disabled],
|
|
|
|
|
textarea[disabled],
|
2021-11-16 23:30:58 +00:00
|
|
|
|
.cbi-select[disabled]::before,
|
|
|
|
|
.cbi-dropdown[disabled]:not(.btn):not(.cbi-button),
|
2021-11-13 22:59:39 +00:00
|
|
|
|
input[type="checkbox"][disabled]::before,
|
|
|
|
|
input[type="checkbox"][disabled]::after,
|
|
|
|
|
input[type="radio"][disabled]::before,
|
2021-11-16 23:30:58 +00:00
|
|
|
|
input[type="radio"][disabled]::after {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
opacity: var(--disabled-opacity);
|
2018-07-13 07:38:25 +00:00
|
|
|
|
pointer-events: none;
|
|
|
|
|
cursor: default;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-11-16 23:30:58 +00:00
|
|
|
|
input[readonly],
|
2018-07-31 15:24:55 +00:00
|
|
|
|
select[readonly],
|
|
|
|
|
textarea[readonly] {
|
2021-11-16 23:30:58 +00:00
|
|
|
|
border-color: hsla(var(--border-color-high-hsl), var(--disabled-opacity));
|
2018-07-31 15:24:55 +00:00
|
|
|
|
pointer-events: auto;
|
|
|
|
|
cursor: auto;
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-19 15:21:00 +00:00
|
|
|
|
.cbi-optionals,
|
|
|
|
|
.cbi-section-create {
|
|
|
|
|
padding: 0 0 10px 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-section-create {
|
|
|
|
|
margin: -3px;
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-section-create > * {
|
|
|
|
|
margin: 3px;
|
|
|
|
|
flex: 1 1 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-section-create > * > input {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.actions,
|
|
|
|
|
.cbi-page-actions {
|
2021-09-15 20:34:11 +00:00
|
|
|
|
background: var(--background-color-low);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
margin-bottom: 18px;
|
2018-05-28 12:54:50 +00:00
|
|
|
|
padding: 17px 20px 18px 17px;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
border-top: 1px solid var(--border-color-medium);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
border-radius: 0 0 3px 3px;
|
|
|
|
|
text-align: right;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.actions .secondary-action,
|
|
|
|
|
.cbi-page-actions .secondary-action{
|
2012-02-15 20:38:36 +00:00
|
|
|
|
float: right;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.actions .secondary-action a,
|
|
|
|
|
.cbi-page-actions .secondary-action a {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
line-height: 30px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.actions .secondary-action a:hover,
|
|
|
|
|
.cbi-page-actions .secondary-action a:hover {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
text-decoration: underline;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-07-03 16:49:00 +00:00
|
|
|
|
.cbi-page-actions > form {
|
|
|
|
|
display: inline;
|
2018-07-18 10:02:35 +00:00
|
|
|
|
margin: 0;
|
2018-07-03 16:49:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
/*
|
|
|
|
|
* Tables.less
|
|
|
|
|
* Tables for, you guessed it, tabular data
|
|
|
|
|
* ---------------------------------------- */
|
2018-05-28 12:54:50 +00:00
|
|
|
|
.tr { display: table-row; }
|
|
|
|
|
.table[width="33%"], .th[width="33%"], .td[width="33%"] { width: 33%; }
|
|
|
|
|
.table[width="100%"], .th[width="100%"], .td[width="100%"] { width: 100%; }
|
|
|
|
|
|
|
|
|
|
.table {
|
|
|
|
|
display: table;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
width: 100%;
|
|
|
|
|
margin-bottom: 18px;
|
|
|
|
|
padding: 0;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
border-collapse: collapse;
|
2018-06-19 15:21:00 +00:00
|
|
|
|
position: relative;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-05-28 12:54:50 +00:00
|
|
|
|
.table .th, .table .td {
|
|
|
|
|
display: table-cell;
|
|
|
|
|
vertical-align: middle; /* Fixme */
|
2012-02-15 20:38:36 +00:00
|
|
|
|
padding: 10px 10px 9px;
|
|
|
|
|
line-height: 18px;
|
|
|
|
|
text-align: left;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-07-18 10:02:35 +00:00
|
|
|
|
.table .tr:first-child .th {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
padding-top: 9px;
|
|
|
|
|
font-weight: bold;
|
2018-07-18 10:02:35 +00:00
|
|
|
|
vertical-align: top;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-07-18 10:02:35 +00:00
|
|
|
|
.table .td, .table .th {
|
2021-09-15 20:34:11 +00:00
|
|
|
|
border-top: 1px solid var(--border-color-medium);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-06-19 15:21:00 +00:00
|
|
|
|
.tr.placeholder {
|
|
|
|
|
height: calc(3em + 20px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tr.placeholder > .td {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 3em;
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-05 13:39:03 +00:00
|
|
|
|
.tr.drag-over-above,
|
|
|
|
|
.tr.drag-over-below {
|
|
|
|
|
border: 2px solid #0069d6;
|
|
|
|
|
border-width: 2px 0 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tr.drag-over-below {
|
|
|
|
|
border-width: 0 0 2px 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
/* Patterns.less
|
|
|
|
|
* Repeatable UI elements outside the base styles provided from the scaffolding
|
|
|
|
|
* ---------------------------------------------------------------------------- */
|
|
|
|
|
header {
|
2021-10-08 22:30:48 +00:00
|
|
|
|
position: sticky;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
top: 0;
|
2018-11-05 17:07:42 +00:00
|
|
|
|
z-index: 800;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
overflow: visible;
|
2012-12-23 23:18:17 +00:00
|
|
|
|
color: #BFBFBF;
|
2021-10-08 22:30:48 +00:00
|
|
|
|
margin: -5px -5px 15px -5px;
|
|
|
|
|
display: flex;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
header a {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
color: #bfbfbf;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
text-shadow: 0 -1px 0 hsla(var(--border-color-low-hsl), .25);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-10-08 22:30:48 +00:00
|
|
|
|
header .brand:hover, header ul .active > a {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
background-color: #333;
|
|
|
|
|
background-color: rgba(255, 255, 255, 0.05);
|
2018-07-12 16:57:20 +00:00
|
|
|
|
color: #fff;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
text-decoration: none;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-10-08 22:30:48 +00:00
|
|
|
|
header .brand {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
float: left;
|
|
|
|
|
display: block;
|
|
|
|
|
padding: 8px 20px 12px;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
margin-left: -15px;
|
2018-07-12 16:57:20 +00:00
|
|
|
|
color: #fff;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-size: 20px;
|
|
|
|
|
font-weight: 200;
|
|
|
|
|
line-height: 1;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-11-13 22:59:39 +00:00
|
|
|
|
header .pull-right {
|
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
align-self: center;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
header p {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
margin: 0;
|
|
|
|
|
line-height: 40px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-10-08 22:30:48 +00:00
|
|
|
|
header {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
background: linear-gradient(#333333, #222222);
|
|
|
|
|
box-shadow: 0 1px 3px hsla(var(--border-color-low-hsl), .25), inset 0 -1px 0 hsla(var(--border-color-low-hsl), .01);
|
2021-10-25 21:59:02 +00:00
|
|
|
|
padding: 0;
|
|
|
|
|
/* the redundant properties below work around a csstidy bug */
|
2021-11-13 22:59:39 +00:00
|
|
|
|
padding-left: calc((100% - 940px) / 2);
|
|
|
|
|
padding-right: calc((100% - 940px) / 2);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-10-08 22:30:48 +00:00
|
|
|
|
.nav {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
display: block;
|
|
|
|
|
float: left;
|
|
|
|
|
margin: 0 10px 0 0;
|
|
|
|
|
position: relative;
|
|
|
|
|
left: 0;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-10-08 22:30:48 +00:00
|
|
|
|
.nav > li {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
display: block;
|
|
|
|
|
float: left;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-10-08 22:30:48 +00:00
|
|
|
|
.nav a {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
display: block;
|
|
|
|
|
float: none;
|
|
|
|
|
padding: 10px 10px 11px;
|
|
|
|
|
line-height: 19px;
|
|
|
|
|
text-decoration: none;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-10-08 22:30:48 +00:00
|
|
|
|
.nav a:hover {
|
2018-07-12 16:57:20 +00:00
|
|
|
|
color: #fff;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
text-decoration: none;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-10-08 22:30:48 +00:00
|
|
|
|
.nav .active > a {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
background-color: #222;
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.5);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-10-08 22:30:48 +00:00
|
|
|
|
.nav a.menu:hover {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
background: #444;
|
|
|
|
|
background: rgba(255, 255, 255, 0.05);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.nav .dropdown-menu {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
background-color: #333;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-10-08 22:30:48 +00:00
|
|
|
|
.nav .dropdown-menu a.menu {
|
2018-07-12 16:57:20 +00:00
|
|
|
|
color: #fff;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.nav .dropdown-menu li a {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
color: #999;
|
|
|
|
|
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.nav .dropdown-menu li a:hover {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
background-color: #191919;
|
|
|
|
|
background-repeat: repeat-x;
|
2016-12-05 15:31:32 +00:00
|
|
|
|
background-image: linear-gradient(to bottom, #292929, #191919);
|
2018-07-12 16:57:20 +00:00
|
|
|
|
color: #fff;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.nav .dropdown-menu .active a {
|
2018-07-12 16:57:20 +00:00
|
|
|
|
color: #fff;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-10-08 22:30:48 +00:00
|
|
|
|
.nav .dropdown-menu li a {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
padding: 4px 15px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
li.menu, .dropdown {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
position: relative;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-10-08 22:30:48 +00:00
|
|
|
|
a.menu:after {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
content: "↓";
|
|
|
|
|
text-indent: -99999px;
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
margin-left: 4px;
|
|
|
|
|
border-left: 4px solid transparent;
|
|
|
|
|
border-right: 4px solid transparent;
|
2018-07-12 16:57:20 +00:00
|
|
|
|
border-top: 4px solid #fff;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
opacity: 0.5;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-10-08 22:30:48 +00:00
|
|
|
|
.dropdown-menu {
|
2018-07-12 16:57:20 +00:00
|
|
|
|
background-color: #fff;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
float: left;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 40px;
|
2014-10-13 08:26:23 +00:00
|
|
|
|
left: -9999px;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
z-index: 900;
|
|
|
|
|
min-width: 160px;
|
|
|
|
|
max-width: 220px;
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
padding: 6px 0;
|
|
|
|
|
zoom: 1;
|
|
|
|
|
border-color: #999;
|
|
|
|
|
border-color: rgba(0, 0, 0, 0.2);
|
|
|
|
|
border-style: solid;
|
|
|
|
|
border-width: 0 1px 1px;
|
|
|
|
|
border-radius: 0 0 6px 6px;
|
|
|
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
|
|
|
|
|
background-clip: padding-box;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-10-08 22:30:48 +00:00
|
|
|
|
.dropdown-menu li {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
float: none;
|
|
|
|
|
display: block;
|
2016-12-10 21:09:50 +00:00
|
|
|
|
background-color: transparent;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-10-08 22:30:48 +00:00
|
|
|
|
.dropdown-menu a {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
display: block;
|
|
|
|
|
padding: 4px 15px;
|
|
|
|
|
clear: both;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
line-height: 18px;
|
|
|
|
|
color: #808080;
|
2018-07-12 16:57:20 +00:00
|
|
|
|
text-shadow: 0 1px 0 #fff;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-10-08 22:30:48 +00:00
|
|
|
|
.dropdown-menu a:hover {
|
2018-07-12 16:57:20 +00:00
|
|
|
|
background-color: #ddd;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
background-repeat: repeat-x;
|
2018-07-12 16:57:20 +00:00
|
|
|
|
background-image: linear-gradient(to bottom, #eee, #ddd);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
color: #404040;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.dropdown:hover ul.dropdown-menu {
|
2014-10-13 08:26:23 +00:00
|
|
|
|
left: 0;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.dropdown-menu .dropdown-menu {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
left: 159px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.dropdown-menu li {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
position: relative;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.tabs, .cbi-tabmenu {
|
2021-09-15 20:34:11 +00:00
|
|
|
|
--tab-bar-background-color: var(--background-color-high);
|
|
|
|
|
--tab-inactive-background-color-h: var(--border-color-low-h);
|
|
|
|
|
--tab-inactive-background-color-s: var(--border-color-low-s);
|
|
|
|
|
--tab-inactive-background-color-l: var(--border-color-low-l);
|
|
|
|
|
--tab-inactive-background-color: var(--border-color-low);
|
|
|
|
|
--tab-inactive-border-color: var(--border-color-medium);
|
|
|
|
|
--tab-inactive-text-color-delta-l: calc(85 / 255 * 100%);
|
|
|
|
|
--tab-inactive-text-color-l: calc(var(--tab-inactive-background-color-l) + var(--background-color-delta-l-sign) * var(--tab-inactive-text-color-delta-l));
|
2021-11-13 22:59:39 +00:00
|
|
|
|
--tab-inactive-text-color: hsl(var(--tab-inactive-background-color-hsl));
|
2021-09-15 20:34:11 +00:00
|
|
|
|
--tab-inactive-hover-background-color: var(--background-color-high);
|
|
|
|
|
--tab-active-background-color: var(--background-color-high);
|
|
|
|
|
--tab-active-text-color: #0069d6;
|
|
|
|
|
--tab-active-border-color: var(--border-color-medium);
|
|
|
|
|
|
2018-11-23 14:08:50 +00:00
|
|
|
|
margin: 0 -5px 18px;
|
|
|
|
|
padding: 0 2px;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
list-style: none;
|
2018-11-23 14:08:50 +00:00
|
|
|
|
display: flex;
|
2018-11-27 12:57:32 +00:00
|
|
|
|
flex-wrap: wrap;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
background: linear-gradient(var(--tab-bar-background-color) 28px, var(--tab-inactive-border-color) 28px);
|
2018-11-27 12:57:32 +00:00
|
|
|
|
background-size: 1px 29px;
|
2018-11-23 14:08:50 +00:00
|
|
|
|
background-position: left bottom;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.tabs > li, .cbi-tabmenu > li {
|
2018-11-23 14:08:50 +00:00
|
|
|
|
flex: 0 1 auto;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
height: 25px;
|
|
|
|
|
max-width: 48%;
|
|
|
|
|
margin: 4px 2px 0 2px;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
background: var(--tab-active-background-color);
|
|
|
|
|
border: 1px solid var(--tab-active-border-color);
|
2018-11-23 14:08:50 +00:00
|
|
|
|
border-bottom: none;
|
|
|
|
|
border-radius: 4px 4px 0 0;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
color: var(--primary-color-high);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.tabs > li > a, .cbi-tabmenu > li > a {
|
2018-11-23 14:08:50 +00:00
|
|
|
|
padding: 4px 6px;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
color: inherit;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
|
line-height: 25px;
|
2018-12-07 16:55:43 +00:00
|
|
|
|
outline: none;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-11-23 14:08:50 +00:00
|
|
|
|
.tabs > li:not(.active):hover, .cbi-tabmenu > .cbi-tab-disabled:hover {
|
2021-09-15 20:34:11 +00:00
|
|
|
|
background: linear-gradient(var(--tab-inactive-hover-background-color) 90%, var(--tab-inactive-border-color) 100%);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-11-23 14:08:50 +00:00
|
|
|
|
.tabs > li:not(.active), .cbi-tabmenu > .cbi-tab-disabled {
|
2021-09-15 20:34:11 +00:00
|
|
|
|
color: var(--tab-inactive-text-color);
|
|
|
|
|
background: linear-gradient(var(--tab-inactive-background-color) 90%, var(--tab-inactive-border-color) 100%);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-12-07 16:55:43 +00:00
|
|
|
|
.cbi-tab-disabled[data-errors]::after {
|
|
|
|
|
content: attr(data-errors);
|
|
|
|
|
background: #c43c35;
|
|
|
|
|
color: #fff;
|
|
|
|
|
min-width: 12px;
|
|
|
|
|
line-height: 14px;
|
|
|
|
|
border-radius: 7px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin: 0 5px 0 0;
|
|
|
|
|
padding: 1px 2px;
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-18 10:06:35 +00:00
|
|
|
|
.cbi-tabmenu.map {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-tabmenu.map > li {
|
|
|
|
|
font-size: 16.5px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
2016-01-19 10:00:15 +00:00
|
|
|
|
.cbi-tabcontainer > fieldset.cbi-section[id] > legend {
|
2016-01-18 10:06:35 +00:00
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-23 14:08:50 +00:00
|
|
|
|
.tabs .menu-dropdown, .tabs .dropdown-menu {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
top: 35px;
|
|
|
|
|
border-width: 1px;
|
|
|
|
|
border-radius: 0 6px 6px 6px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-11-23 14:08:50 +00:00
|
|
|
|
.tabs a.menu:after, .tabs .dropdown-toggle:after {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
border-top-color: #999;
|
|
|
|
|
margin-top: 15px;
|
|
|
|
|
margin-left: 5px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-11-23 14:08:50 +00:00
|
|
|
|
.tabs li.open.menu .menu, .tabs .open.dropdown .dropdown-toggle {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
border-color: #999;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-11-23 14:08:50 +00:00
|
|
|
|
.tabs li.open a.menu:after, .tabs .dropdown.open .dropdown-toggle:after {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
border-top-color: #555;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.tab-content > .tab-pane,
|
|
|
|
|
.tab-content > div {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
display: none;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.tab-content > .active {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
display: block;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.breadcrumb {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
padding: 7px 14px;
|
|
|
|
|
margin: 0 0 18px;
|
2021-10-08 22:30:48 +00:00
|
|
|
|
background: linear-gradient(to bottom, var(--background-color-high), var(--background-color-low));
|
|
|
|
|
border: 1px solid var(--border-color-medium);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
border-radius: 3px;
|
2021-10-08 22:30:48 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
flex: 0;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.breadcrumb li {
|
2021-10-08 22:30:48 +00:00
|
|
|
|
list-style: none;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-10-08 22:30:48 +00:00
|
|
|
|
.breadcrumb li:not(:last-child)::after {
|
|
|
|
|
content: "|";
|
2012-02-15 20:38:36 +00:00
|
|
|
|
padding: 0 5px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.breadcrumb .active a {
|
2021-10-08 22:30:48 +00:00
|
|
|
|
color: var(--text-color-medium);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
footer {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
padding-top: 17px;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
margin-top: auto;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
border-top: 1px solid var(--border-color-low);
|
2021-10-08 22:30:48 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
align-items: baseline;
|
|
|
|
|
justify-content: space-between;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: var(--text-color-low);
|
|
|
|
|
/* the redundant properties below work around a csstidy bug */
|
|
|
|
|
padding-left: calc((100% - 940px) / 2);
|
|
|
|
|
padding-right: calc((100% - 940px) / 2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
footer a {
|
|
|
|
|
color: var(--primary-color-low);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
footer span {
|
|
|
|
|
margin-bottom: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
footer ul.breadcrumb {
|
|
|
|
|
margin-left: auto;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-11-13 15:19:23 +00:00
|
|
|
|
#modal_overlay {
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
background: rgba(0, 0, 0, 0.7);
|
|
|
|
|
z-index: 900;
|
2021-10-07 14:26:06 +00:00
|
|
|
|
overflow: scroll;
|
2018-11-13 15:19:23 +00:00
|
|
|
|
transition: opacity .125s ease-in;
|
|
|
|
|
opacity: 0;
|
2018-11-23 14:08:50 +00:00
|
|
|
|
visibility: hidden;
|
2018-11-13 15:19:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal {
|
|
|
|
|
width: 90%;
|
|
|
|
|
margin: 5em auto;
|
|
|
|
|
min-height: 32px;
|
|
|
|
|
max-width: 600px;
|
|
|
|
|
border-radius: 3px;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
background: var(--background-color-high);
|
2021-11-13 22:59:39 +00:00
|
|
|
|
border: 1px solid var(--border-color-low);
|
|
|
|
|
box-shadow: 0 0 3px var(--background-color-low);
|
2018-11-13 15:19:23 +00:00
|
|
|
|
padding: 1em 1em .5em 1em;
|
|
|
|
|
min-width: 270px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal > * {
|
|
|
|
|
line-height: normal;
|
|
|
|
|
margin-bottom: .5em;
|
2019-09-04 12:23:31 +00:00
|
|
|
|
max-width: 100%;
|
2018-11-13 15:19:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.modal > pre,
|
|
|
|
|
.modal > textarea {
|
|
|
|
|
white-space: pre-wrap;
|
|
|
|
|
overflow: auto;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
width: 100%;
|
2018-11-13 15:19:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body.modal-overlay-active {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body.modal-overlay-active #modal_overlay {
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
opacity: 1;
|
2018-11-23 14:08:50 +00:00
|
|
|
|
visibility: visible;
|
2018-11-13 15:19:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.btn .close, .alert-message .close {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
|
line-height: 18px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.btn.danger,
|
|
|
|
|
.alert-message.danger,
|
|
|
|
|
.btn.error,
|
2018-10-18 14:14:35 +00:00
|
|
|
|
.alert-message.error,
|
|
|
|
|
.cbi-tooltip.error {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
background: linear-gradient(var(--error-color-low), var(--error-color-medium));
|
|
|
|
|
color: var(--on-error-color);
|
|
|
|
|
border-color: var(--error-color-high) var(--error-color-high) var(--error-color-low);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-10-18 14:14:35 +00:00
|
|
|
|
.btn.success, .alert-message.success, .cbi-tooltip.success {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
background: linear-gradient(var(--success-color-low), var(--success-color-medium));
|
|
|
|
|
color: var(--on-error-color);
|
|
|
|
|
border-color: var(--success-color-high) var(--success-color-high) var(--success-color-low);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-10-18 14:14:35 +00:00
|
|
|
|
.btn.info, .alert-message.info, .cbi-tooltip.info {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
background: linear-gradient(var(--primary-color-low), var(--primary-color-medium));
|
|
|
|
|
color: var(--on-primary-color);
|
|
|
|
|
border-color: var(--primary-color-high) var(--primary-color-high) var(--primary-color-low);
|
2018-07-13 07:38:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-10-18 14:14:35 +00:00
|
|
|
|
.alert-message.notice, .cbi-tooltip.notice {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
background: linear-gradient(var(--background-color-low), var(--background-color-medium));
|
|
|
|
|
border-color: var(--background-color-high) var(--background-color-high) var(--background-color-low);
|
|
|
|
|
color: var(--text-color-high);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.alert-message.warning {
|
|
|
|
|
background: linear-gradient(var(--warn-color-low), var(--warn-color-medium));
|
|
|
|
|
border-color: var(--warn-color-high) var(--warn-color-high) var(--warn-color-low);
|
|
|
|
|
color: var(--on-warn-color);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-09-15 20:34:11 +00:00
|
|
|
|
.modal.alert-message {
|
|
|
|
|
color: var(--text-color-high);
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-20 15:56:02 +00:00
|
|
|
|
.item::after,
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.btn,
|
|
|
|
|
.cbi-button {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
--default-btn-background: linear-gradient(var(--background-color-high), var(--background-color-high) 25%, var(--background-color-low));
|
|
|
|
|
--on-color: var(--text-color-high);
|
|
|
|
|
|
2012-02-15 20:38:36 +00:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: inline-block;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
background: var(--default-btn-background);
|
2021-10-08 22:30:48 +00:00
|
|
|
|
padding: 0 14px;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
color: var(--on-color);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-size: 13px;
|
2021-10-08 22:30:48 +00:00
|
|
|
|
line-height: 2em;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
border: 1px solid var(--border-color-high);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
border-radius: 4px;
|
2020-12-28 07:41:57 +00:00
|
|
|
|
white-space: pre;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2014-07-01 11:09:33 +00:00
|
|
|
|
.cbi-input-invalid,
|
2020-01-15 17:54:32 +00:00
|
|
|
|
.cbi-input-invalid.cbi-dropdown:not(.btn):not(.cbi-button),
|
2018-11-05 17:11:36 +00:00
|
|
|
|
.cbi-input-invalid.cbi-dropdown:not([open]) > ul > li,
|
2014-07-01 11:09:33 +00:00
|
|
|
|
.cbi-value-error input {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
color: var(--error-color-high);
|
|
|
|
|
border-color: var(--error-color-medium);
|
2012-08-08 15:20:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-19 15:21:00 +00:00
|
|
|
|
.cbi-button-positive,
|
|
|
|
|
.cbi-button-fieldadd,
|
|
|
|
|
.cbi-button-add,
|
|
|
|
|
.cbi-button-save {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
--on-color: var(--success-color-high);
|
|
|
|
|
border-color: var(--on-color);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-06-19 15:21:00 +00:00
|
|
|
|
.cbi-button-neutral,
|
|
|
|
|
.cbi-button-download,
|
2012-08-08 15:20:13 +00:00
|
|
|
|
.cbi-button-find,
|
2018-06-19 15:21:00 +00:00
|
|
|
|
.cbi-button-link,
|
|
|
|
|
.cbi-button-up,
|
|
|
|
|
.cbi-button-down {
|
2021-09-15 20:34:11 +00:00
|
|
|
|
color: var(--text-color-high);
|
2012-08-08 15:20:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-19 15:21:00 +00:00
|
|
|
|
.btn.primary,
|
|
|
|
|
.cbi-button-action,
|
2012-08-08 15:20:13 +00:00
|
|
|
|
.cbi-button-apply,
|
2018-06-19 15:21:00 +00:00
|
|
|
|
.cbi-button-reload,
|
|
|
|
|
.cbi-button-edit {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
--on-color: var(--primary-color-high);
|
|
|
|
|
border-color: var(--on-color);
|
2012-08-08 15:20:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-19 15:21:00 +00:00
|
|
|
|
.cbi-button-negative,
|
|
|
|
|
.cbi-section-remove .cbi-button,
|
2012-08-08 15:20:13 +00:00
|
|
|
|
.cbi-button-reset,
|
2018-06-19 15:21:00 +00:00
|
|
|
|
.cbi-button-remove {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
--on-color: var(--error-color-high);
|
|
|
|
|
border-color: var(--on-color);
|
2012-08-08 15:20:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-18 10:02:35 +00:00
|
|
|
|
.cbi-page-actions::after {
|
|
|
|
|
display: table;
|
|
|
|
|
content: "";
|
|
|
|
|
clear: both;
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-12 07:48:36 +00:00
|
|
|
|
.cbi-page-actions > * {
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-10 17:20:56 +00:00
|
|
|
|
.cbi-page-actions > :not([method="post"]):not(.cbi-button-apply):not(.cbi-button-negative):not(.cbi-button-save):not(.cbi-button-reset) {
|
2018-07-12 16:57:20 +00:00
|
|
|
|
float: left;
|
2018-07-18 10:02:35 +00:00
|
|
|
|
margin-right: .4em;
|
2018-07-12 16:57:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-19 15:21:00 +00:00
|
|
|
|
.btn.primary,
|
|
|
|
|
.cbi-button-action.important,
|
|
|
|
|
.cbi-page-actions .cbi-button-apply,
|
|
|
|
|
.cbi-section-actions .cbi-button-edit {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
--on-color: var(--on-primary-color);
|
|
|
|
|
background: linear-gradient(var(--primary-color-medium), var(--primary-color-low));
|
|
|
|
|
border-color: var(--primary-color-high);
|
2012-08-08 15:20:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-19 15:21:00 +00:00
|
|
|
|
.cbi-button-positive.important,
|
|
|
|
|
.cbi-page-actions .cbi-button-save {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
--on-color: var(--on-success-color);
|
|
|
|
|
background: linear-gradient(var(--success-color-medium), var(--success-color-low));
|
|
|
|
|
border-color: var(--success-color-high);
|
2018-07-13 07:38:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-button-negative.important {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
--on-color: var(--on-error-color);
|
|
|
|
|
background: linear-gradient(var(--error-color-medium), var(--error-color-low));
|
|
|
|
|
border-color: var(--error-color-high);
|
2012-08-08 15:20:13 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-10 17:20:56 +00:00
|
|
|
|
.cbi-page-actions .cbi-button-apply + .cbi-button-save,
|
|
|
|
|
.cbi-page-actions .cbi-button-negative + .cbi-button-save {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
--on-color: var(--success-color-high);
|
|
|
|
|
border-color: var(--on-color);
|
|
|
|
|
background: var(--default-btn-background);
|
2012-11-21 16:04:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-08 05:29:44 +00:00
|
|
|
|
.cbi-dropdown {
|
2019-11-10 17:20:56 +00:00
|
|
|
|
display: inline-flex !important;
|
2018-06-08 05:29:44 +00:00
|
|
|
|
cursor: pointer;
|
|
|
|
|
height: auto;
|
|
|
|
|
position: relative;
|
2019-11-10 17:20:56 +00:00
|
|
|
|
padding: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-dropdown:not(.btn):not(.cbi-button) {
|
2021-09-15 20:34:11 +00:00
|
|
|
|
background: linear-gradient(var(--background-color-high) 0%, var(--border-color-low) 100%);
|
|
|
|
|
border: 1px solid var(--border-color-high);
|
2019-11-10 17:20:56 +00:00
|
|
|
|
border-radius: 3px;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
color: var(--text-color-high);
|
2018-06-08 05:29:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-dropdown > ul {
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
padding: 0;
|
|
|
|
|
list-style: none;
|
|
|
|
|
overflow-x: hidden;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
overflow-y: hidden;
|
2018-06-08 05:29:44 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-10 17:20:56 +00:00
|
|
|
|
.cbi-dropdown.btn > ul:not(.dropdown),
|
|
|
|
|
.cbi-dropdown.cbi-button > ul:not(.dropdown) {
|
|
|
|
|
margin: 0 0 0 13px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-dropdown.btn.spinning > ul:not(.dropdown),
|
|
|
|
|
.cbi-dropdown.cbi-button.spinning > ul:not(.dropdown) {
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-08 05:29:44 +00:00
|
|
|
|
.cbi-dropdown > ul.preview {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-dropdown > .open,
|
|
|
|
|
.cbi-dropdown > .more {
|
|
|
|
|
flex-grow: 0;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 2em;
|
2021-11-16 23:30:58 +00:00
|
|
|
|
padding: 0 .3em;
|
2018-06-08 05:29:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-10 17:20:56 +00:00
|
|
|
|
.cbi-dropdown.btn > .open,
|
|
|
|
|
.cbi-dropdown.cbi-button > .open {
|
|
|
|
|
padding: 0 .5em;
|
|
|
|
|
margin-left: .5em;
|
|
|
|
|
border-left: 1px solid;
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-08 05:29:44 +00:00
|
|
|
|
.cbi-dropdown > .more,
|
2019-11-10 17:20:56 +00:00
|
|
|
|
.cbi-dropdown:not(.btn):not(.cbi-button) > ul > li[placeholder] {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
color: var(--text-color-medium);
|
2018-06-08 05:29:44 +00:00
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-dropdown > ul > li {
|
|
|
|
|
display: none;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
flex-shrink: 1;
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
align-items: center;
|
|
|
|
|
align-self: center;
|
2019-11-10 17:20:56 +00:00
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-dropdown > ul.dropdown > li,
|
|
|
|
|
.cbi-dropdown:not(.btn):not(.cbi-button) > ul > li {
|
2018-06-08 05:29:44 +00:00
|
|
|
|
min-height: 20px;
|
2019-11-10 17:20:56 +00:00
|
|
|
|
padding: .25em;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
color: var(--text-color-high);
|
2018-06-08 05:29:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-07 13:26:03 +00:00
|
|
|
|
.cbi-dropdown > ul > li .hide-open { display: block; display: initial; }
|
2018-06-08 05:29:44 +00:00
|
|
|
|
.cbi-dropdown > ul > li .hide-close { display: none; }
|
|
|
|
|
|
|
|
|
|
.cbi-dropdown > ul > li[display]:not([display="0"]) {
|
2021-09-15 20:34:11 +00:00
|
|
|
|
border-left: 1px solid var(--border-color-high);
|
2018-06-08 05:29:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-dropdown[empty] > ul {
|
|
|
|
|
max-width: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-dropdown > ul > li > form {
|
|
|
|
|
display: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-dropdown > ul > li img {
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
margin-right: .25em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-dropdown > ul > li > form > input[type="checkbox"] {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
margin: 0 .25em 0 0;
|
2018-06-08 05:29:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-dropdown > ul > li input[type="text"] {
|
|
|
|
|
height: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-dropdown[open] {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-dropdown[open] > ul.dropdown {
|
|
|
|
|
display: block;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
background: var(--background-color-low);
|
2018-06-08 05:29:44 +00:00
|
|
|
|
border: 1px solid #918e8c;
|
|
|
|
|
box-shadow: 0 0 4px #918e8c;
|
|
|
|
|
position: absolute;
|
2018-11-05 17:07:42 +00:00
|
|
|
|
z-index: 1100;
|
2018-06-08 05:29:44 +00:00
|
|
|
|
max-width: none;
|
|
|
|
|
min-width: 100%;
|
|
|
|
|
width: auto;
|
2018-11-08 12:02:24 +00:00
|
|
|
|
transition: max-height .125s ease-in;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
overflow-y: auto;
|
2018-06-08 05:29:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-dropdown > ul > li[display],
|
|
|
|
|
.cbi-dropdown[open] > ul.preview,
|
|
|
|
|
.cbi-dropdown[open] > ul.dropdown > li,
|
|
|
|
|
.cbi-dropdown[multiple] > ul > li > label,
|
|
|
|
|
.cbi-dropdown[multiple][open] > ul.dropdown > li,
|
|
|
|
|
.cbi-dropdown[multiple][more] > .more,
|
|
|
|
|
.cbi-dropdown[multiple][empty] > .more {
|
|
|
|
|
flex-grow: 1;
|
2019-11-10 17:20:56 +00:00
|
|
|
|
display: flex !important;
|
2018-06-08 05:29:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-dropdown[empty] > ul > li,
|
2021-11-13 22:59:39 +00:00
|
|
|
|
.cbi-dropdown[optional][open] > ul.dropdown > li[placeholder] {
|
2019-11-10 17:20:56 +00:00
|
|
|
|
display: block !important;
|
2018-06-08 05:29:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-13 22:59:39 +00:00
|
|
|
|
.cbi-dropdown[multiple][open] > ul.dropdown > li > form {
|
|
|
|
|
display: flex !important;
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-08 05:29:44 +00:00
|
|
|
|
.cbi-dropdown[open] > ul.dropdown > li .hide-open { display: none; }
|
2018-07-07 13:26:03 +00:00
|
|
|
|
.cbi-dropdown[open] > ul.dropdown > li .hide-close { display: block; display: initial; }
|
2018-06-08 05:29:44 +00:00
|
|
|
|
|
|
|
|
|
.cbi-dropdown[open] > ul.dropdown > li {
|
2021-09-15 20:34:11 +00:00
|
|
|
|
border-bottom: 1px solid var(--border-color-high);
|
2018-06-08 05:29:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-dropdown[open] > ul.dropdown > li[selected] {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
background: var(--primary-color-medium);
|
|
|
|
|
color: var(--on-primary-color);
|
2018-06-08 05:29:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-dropdown[open] > ul.dropdown > li.focus {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
background: var(--primary-color-low);
|
|
|
|
|
color: var(--on-primary-color);
|
2021-09-15 20:34:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-13 22:59:39 +00:00
|
|
|
|
.cbi-dropdown[open] > ul.dropdown > li[selected].focus {
|
|
|
|
|
background: linear-gradient(90deg, var(--primary-color-medium) 50%, var(--primary-color-low));
|
2018-06-08 05:29:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-dropdown[open] > ul.dropdown > li:last-child {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-20 15:56:02 +00:00
|
|
|
|
.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%;
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-23 12:27:49 +00:00
|
|
|
|
input[type="text"] + .cbi-button,
|
|
|
|
|
input[type="password"] + .cbi-button,
|
2021-11-16 23:30:58 +00:00
|
|
|
|
select + .cbi-button,
|
|
|
|
|
.cbi-select + .cbi-button {
|
2018-07-23 12:27:49 +00:00
|
|
|
|
border-radius: 0 3px 3px 0;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
border-color: var(--border-color-high);
|
2018-11-13 15:19:23 +00:00
|
|
|
|
margin-left: -2px;
|
2018-07-23 12:27:49 +00:00
|
|
|
|
padding: 0 6px;
|
|
|
|
|
vertical-align: top;
|
2018-11-13 15:19:23 +00:00
|
|
|
|
height: 30px;
|
2018-07-23 12:27:49 +00:00
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 28px;
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-16 23:30:58 +00:00
|
|
|
|
select + .cbi-button,
|
|
|
|
|
.cbi-select + .cbi-button {
|
|
|
|
|
position: relative;
|
2018-07-23 12:27:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-title-ref {
|
|
|
|
|
color: #37c;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-title-ref::after {
|
|
|
|
|
content: "➙";
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-19 15:21:00 +00:00
|
|
|
|
.cbi-tooltip-container {
|
|
|
|
|
cursor: help;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-tooltip {
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 1000;
|
2019-11-10 16:33:48 +00:00
|
|
|
|
left: -10000px;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
box-shadow: 0 0 2px var(--border-color-high);
|
2018-10-18 14:14:35 +00:00
|
|
|
|
border-radius: 3px;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
background: var(--background-color-high);
|
2018-10-18 14:14:35 +00:00
|
|
|
|
white-space: pre;
|
|
|
|
|
padding: 2px 5px;
|
2018-06-19 15:21:00 +00:00
|
|
|
|
opacity: 0;
|
2018-10-18 14:14:35 +00:00
|
|
|
|
transition: opacity .25s ease-in;
|
2018-06-19 15:21:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-tooltip-container:hover .cbi-tooltip:not(:empty) {
|
|
|
|
|
left: auto;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transition: opacity .25s ease-in;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-13 15:19:23 +00:00
|
|
|
|
.cbi-progressbar {
|
2021-09-15 20:34:11 +00:00
|
|
|
|
border: 1px solid var(--border-color-high);
|
2018-11-13 15:19:23 +00:00
|
|
|
|
border-radius: 3px;
|
|
|
|
|
position: relative;
|
|
|
|
|
min-width: 170px;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
height: 8px;
|
|
|
|
|
margin: 1.4em 0 4px 0;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
background: var(--background-color-medium);
|
2018-11-13 15:19:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-progressbar > div {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
background: var(--primary-color-medium);
|
2018-11-13 15:19:23 +00:00
|
|
|
|
height: 100%;
|
|
|
|
|
transition: width .25s ease-in;
|
|
|
|
|
width: 0%;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
border-radius: 3px;
|
2018-11-13 15:19:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-13 22:59:39 +00:00
|
|
|
|
.cbi-progressbar::before {
|
2018-11-13 15:19:23 +00:00
|
|
|
|
position: absolute;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
top: -1.4em;
|
2018-11-13 15:19:23 +00:00
|
|
|
|
left: 0;
|
|
|
|
|
content: attr(title);
|
|
|
|
|
white-space: pre;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
2021-11-08 08:56:33 +00:00
|
|
|
|
|
2018-06-19 15:21:00 +00:00
|
|
|
|
.zonebadge .cbi-tooltip {
|
|
|
|
|
padding: 1px;
|
|
|
|
|
background: inherit;
|
|
|
|
|
margin: -1.6em 0 0 -5px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
box-shadow: 0 0 3px #444;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.zonebadge .cbi-tooltip > * {
|
|
|
|
|
margin: 1px;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
z-index: 2;
|
|
|
|
|
position: relative;
|
2018-06-19 15:21:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.zone-forwards {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.zone-forwards > * {
|
|
|
|
|
flex: 1 1 40%;
|
|
|
|
|
padding: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.zone-forwards > span {
|
|
|
|
|
flex-basis: 10%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.zone-forwards .zone-src,
|
|
|
|
|
.zone-forwards .zone-dest {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.btn.active, .btn:active {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
box-shadow: inset 0 2px 4px hsla(var(--border-color-low-hsl), .25), 0 1px 2px rgba(0, 0, 0, 0.05);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-11-13 22:59:39 +00:00
|
|
|
|
.btn.disabled,
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.btn[disabled] {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
cursor: default;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
opacity: var(--disabled-opacity);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
box-shadow: none;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.btn.large {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-size: 15px;
|
|
|
|
|
line-height: normal;
|
|
|
|
|
padding: 9px 14px 9px;
|
|
|
|
|
border-radius: 6px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.btn.small {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
padding: 7px 9px 7px;
|
|
|
|
|
font-size: 11px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
padding: 0;
|
|
|
|
|
border: 0;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.close {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
float: right;
|
2018-07-12 16:57:20 +00:00
|
|
|
|
color: #000;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-size: 20px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
line-height: 13.5px;
|
2018-07-12 16:57:20 +00:00
|
|
|
|
text-shadow: 0 1px 0 #fff;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
opacity: 0.25;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.close:hover {
|
2018-07-12 16:57:20 +00:00
|
|
|
|
color: #000;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
text-decoration: none;
|
|
|
|
|
opacity: 0.4;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-06-08 05:29:44 +00:00
|
|
|
|
.alert-message {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
position: relative;
|
2019-09-12 09:10:19 +00:00
|
|
|
|
padding: .5em .5em .25em .5em;
|
|
|
|
|
margin-bottom: .5em;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
color: var(--on-warn-color);
|
|
|
|
|
background: linear-gradient(#fceec1, #eedc94);
|
|
|
|
|
border: 1px solid var(--border-color-low);
|
|
|
|
|
border-color: var(--border-color-high) var(--border-color-high) var(--border-color-low);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
border-radius: 4px;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
box-shadow: 1px 1px 1px var(--border-color-low);
|
2021-08-04 16:04:54 +00:00
|
|
|
|
white-space: unset;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.alert-message .close {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
margin-top: 1px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2019-09-11 07:23:16 +00:00
|
|
|
|
.alert-message h4,
|
|
|
|
|
.alert-message h5,
|
|
|
|
|
.alert-message pre,
|
|
|
|
|
.alert-message ul,
|
|
|
|
|
.alert-message li,
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.alert-message p {
|
2019-09-11 07:23:16 +00:00
|
|
|
|
color: inherit;
|
|
|
|
|
border: none;
|
|
|
|
|
line-height: inherit;
|
|
|
|
|
background: transparent;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: .25em 0;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2019-09-11 07:23:16 +00:00
|
|
|
|
.alert-message button {
|
|
|
|
|
margin: .25em 0;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2020-03-30 15:05:05 +00:00
|
|
|
|
.label,
|
|
|
|
|
header [data-indicator] {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
padding: 3px 3px 2px;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-size: 9.75px;
|
|
|
|
|
font-weight: bold;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
color: var(--text-color-high);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
white-space: nowrap;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
background-color: var(--background-color-low);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
border-radius: 3px;
|
|
|
|
|
text-shadow: none;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
margin: .125em 0 .125em .4em;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2020-03-30 15:05:05 +00:00
|
|
|
|
header [data-indicator][data-clickable] {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
a.label:link,
|
|
|
|
|
a.label:visited {
|
2018-07-12 16:57:20 +00:00
|
|
|
|
color: #fff;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
a.label:hover {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
text-decoration: none;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.label.important {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
background-color: var(--primary-color-high);
|
|
|
|
|
color: var(--on-primary-color);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.label.warning {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
background-color: var(--warn-color-high);
|
|
|
|
|
color: var(--on-warn-color);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.label.success {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
background-color: var(--success-color-high);
|
|
|
|
|
color: var(--on-success-color);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2020-03-30 15:05:05 +00:00
|
|
|
|
.label.notice,
|
|
|
|
|
header [data-indicator][data-style="active"] {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
color: var(--on-primary-color);
|
|
|
|
|
background-color: var(--primary-color-high);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
/* LuCI specific items */
|
|
|
|
|
.hidden { display: none }
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-07-18 10:02:35 +00:00
|
|
|
|
form.inline { display: inline; margin-bottom: 0; }
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
#modemenu li:last-child span.divider { display: none }
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-10-08 22:30:48 +00:00
|
|
|
|
#syslog {
|
|
|
|
|
width: 100%;
|
|
|
|
|
color: var(--text-color-highest);
|
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-07-18 10:02:35 +00:00
|
|
|
|
.cbi-section-table .tr:hover .td,
|
|
|
|
|
.cbi-section-table .tr:hover .th,
|
|
|
|
|
.cbi-section-table .tr:hover::before {
|
2021-09-15 20:34:11 +00:00
|
|
|
|
background-color: var(--background-color-low);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-07-18 10:02:35 +00:00
|
|
|
|
.cbi-section-table .tr.cbi-section-table-descr .th {
|
2012-02-15 22:50:44 +00:00
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-25 07:52:29 +00:00
|
|
|
|
.cbi-section-table-titles.named::before,
|
|
|
|
|
.cbi-section-table-descr.named::before,
|
|
|
|
|
.cbi-section-table-row[data-title]::before {
|
|
|
|
|
content: attr(data-title) " ";
|
|
|
|
|
display: table-cell;
|
|
|
|
|
padding: 10px 10px 9px;
|
|
|
|
|
line-height: 18px;
|
|
|
|
|
font-weight: bold;
|
2018-07-13 07:38:25 +00:00
|
|
|
|
vertical-align: middle;
|
2018-06-25 07:52:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-18 10:02:35 +00:00
|
|
|
|
.cbi-section-table-titles.named::before,
|
|
|
|
|
.cbi-section-table-descr.named::before,
|
2018-06-25 07:52:29 +00:00
|
|
|
|
.cbi-section-table-row[data-title]::before {
|
2021-09-15 20:34:11 +00:00
|
|
|
|
border-top: 1px solid var(--border-color-medium);
|
2018-06-25 07:52:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.left { text-align: left !important; }
|
|
|
|
|
.right { text-align: right !important; }
|
2018-05-28 12:54:50 +00:00
|
|
|
|
.center { text-align: center !important; }
|
2018-07-13 07:38:25 +00:00
|
|
|
|
.top { vertical-align: top !important; }
|
|
|
|
|
.middle { vertical-align: middle !important; }
|
|
|
|
|
.bottom { vertical-align: bottom !important; }
|
2018-05-28 12:54:50 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
table table td,
|
|
|
|
|
.cbi-value-field table td {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
border: none;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-07-13 07:38:25 +00:00
|
|
|
|
.table.cbi-section-table input[type="password"],
|
|
|
|
|
.table.cbi-section-table input[type="text"],
|
2018-05-28 12:54:50 +00:00
|
|
|
|
.table.cbi-section-table textarea,
|
2021-11-13 22:59:39 +00:00
|
|
|
|
.table.cbi-section-table select,
|
|
|
|
|
.table.cbi-section-table .cbi-select {
|
2018-07-13 07:38:25 +00:00
|
|
|
|
width: 100%;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
min-width: auto;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-05-28 12:54:50 +00:00
|
|
|
|
.table.cbi-section-table .td.cbi-section-table-cell {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
white-space: nowrap;
|
|
|
|
|
text-align: right;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-11-13 22:59:39 +00:00
|
|
|
|
.table.cbi-section-table .td.cbi-section-table-cell select,
|
|
|
|
|
.table.cbi-section-table .td.cbi-section-table-cell .cbi-select {
|
2013-01-04 19:55:54 +00:00
|
|
|
|
width: inherit;
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-13 07:38:25 +00:00
|
|
|
|
.td.cbi-section-actions {
|
|
|
|
|
text-align: right;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.td.cbi-section-actions > * {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.td.cbi-section-actions > * > *,
|
|
|
|
|
.td.cbi-section-actions > * > form > * {
|
|
|
|
|
flex: 1 1 4em;
|
|
|
|
|
margin: 0 1px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.td.cbi-section-actions > * > form {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-28 12:54:50 +00:00
|
|
|
|
.table.valign-middle .td {
|
2016-01-20 15:59:00 +00:00
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-18 10:02:35 +00:00
|
|
|
|
.cbi-rowstyle-2,
|
|
|
|
|
.tr.table-titles,
|
|
|
|
|
.tr.cbi-section-table-titles {
|
2021-09-15 20:34:11 +00:00
|
|
|
|
background: var(--background-color-medium);
|
2018-07-12 16:57:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-19 15:21:00 +00:00
|
|
|
|
.cbi-value-description {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
margin: .25em 0 0 1.25em;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-value-description:not(:empty)::before {
|
|
|
|
|
--help-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20'><path d='M10 0A10 10 0 000 10a10 10 0 0010 10 10 10 0 0010-10A10 10 0 0010 0zm1 17H9v-2h2v2zm2.1-7.7l-.9.9c-.8.7-1.2 1.3-1.2 2.8H9v-.5c0-1.1.4-2.1 1.2-2.8l1.2-1.3c.4-.3.6-.8.6-1.4a2 2 0 00-2-2 2 2 0 00-2 2H6a4 4 0 014-4 4 4 0 014 4c0 .9-.4 1.7-.9 2.3z'/></svg>");
|
|
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: -1.25em;
|
|
|
|
|
content: "\a0";
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 1em;
|
|
|
|
|
height: 1em;
|
|
|
|
|
margin-right: .25em;
|
|
|
|
|
background: var(--primary-color-high);
|
|
|
|
|
mask-image: var(--help-icon);
|
|
|
|
|
mask-size: cover;
|
|
|
|
|
-webkit-mask-image: var(--help-icon);
|
|
|
|
|
-webkit-mask-size: cover;
|
2018-06-19 15:21:00 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2014-07-01 11:09:33 +00:00
|
|
|
|
.cbi-section-error {
|
2018-07-12 16:57:20 +00:00
|
|
|
|
border: 1px solid #f00;
|
2014-07-01 11:09:33 +00:00
|
|
|
|
border-radius: 3px;
|
2018-07-12 16:57:20 +00:00
|
|
|
|
background-color: #fce6e6;
|
2014-07-01 11:09:33 +00:00
|
|
|
|
padding: 5px;
|
2018-07-03 16:49:00 +00:00
|
|
|
|
margin-bottom: 18px;
|
2014-07-01 11:09:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-section-error ul { margin: 0 0 0 20px; }
|
|
|
|
|
|
|
|
|
|
.cbi-section-error ul li {
|
2018-07-12 16:57:20 +00:00
|
|
|
|
color: #f00;
|
2014-07-01 11:09:33 +00:00
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.ifacebox {
|
2021-09-15 20:34:11 +00:00
|
|
|
|
border: 1px solid var(--border-color-high);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
margin: 0 10px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
white-space: nowrap;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
background: linear-gradient(var(--background-color-high), var(--background-color-medium));
|
2012-02-15 20:38:36 +00:00
|
|
|
|
border-radius: 4px;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
box-shadow: inset 0 1px 0 hsla(var(--text-color-low-hsl), 0.05);
|
2018-05-30 12:46:10 +00:00
|
|
|
|
display: inline-flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
line-height: 1.2em;
|
|
|
|
|
min-width: 100px;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.ifacebox .ifacebox-head {
|
2021-09-15 20:34:11 +00:00
|
|
|
|
border-bottom: 1px solid var(--border-color-high);
|
2021-10-08 22:30:48 +00:00
|
|
|
|
border-radius: 4px 4px 0 0;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
padding: 2px;
|
2018-05-30 12:46:10 +00:00
|
|
|
|
background: #eee;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
color: var(--text-color-high);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ifacebox .ifacebox-head[style] {
|
|
|
|
|
text-shadow: 0 1px 1px hsla(var(--background-color-high-hsl), 0.75);
|
2018-05-30 12:46:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ifacebox .ifacebox-head.active {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
background: var(--primary-color-high);
|
|
|
|
|
color: var(--on-primary-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-darkmode="true"] .zonebadge[style],
|
|
|
|
|
[data-darkmode="true"] .ifacebox-head[style] {
|
|
|
|
|
background: linear-gradient(rgba(var(--zone-color-rgb), .4), rgba(var(--zone-color-rgb), .3)) !important;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.ifacebox .ifacebox-body {
|
2018-07-13 07:38:25 +00:00
|
|
|
|
padding: .25em;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.ifacebadge {
|
2018-07-13 07:38:25 +00:00
|
|
|
|
display: inline-block;
|
2018-05-30 12:46:10 +00:00
|
|
|
|
flex-direction: row;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
white-space: nowrap;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
border: 1px solid var(--border-color-high);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
padding: 2px;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
background: linear-gradient(var(--background-color-high), var(--background-color-high) 25%, var(--background-color-medium));
|
|
|
|
|
color: var(--text-color-high);
|
2021-11-13 22:59:39 +00:00
|
|
|
|
text-shadow: 0 1px 1px hsla(var(--background-color-high-hsl), 0.75);
|
2012-02-15 20:38:36 +00:00
|
|
|
|
border-radius: 4px;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
box-shadow: inset 0 1px 0 hsla(var(--background-color-high-hsl), 0.05);
|
2016-01-20 15:59:00 +00:00
|
|
|
|
cursor: default;
|
2018-05-30 12:46:10 +00:00
|
|
|
|
line-height: 1.2em;
|
2016-01-20 15:59:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.ifacebadge img {
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
vertical-align: middle;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.ifacebadge-active {
|
2018-07-12 16:57:20 +00:00
|
|
|
|
border-color: #000;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-weight: bold;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-05-30 12:46:10 +00:00
|
|
|
|
.network-status-table {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-status-table .ifacebox {
|
|
|
|
|
margin: .5em;
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-status-table .ifacebox-body {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: 100%;
|
|
|
|
|
text-align: left;
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-13 07:38:25 +00:00
|
|
|
|
.network-status-table .ifacebox-body > * {
|
|
|
|
|
margin: .25em;
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-30 12:46:10 +00:00
|
|
|
|
.network-status-table .ifacebox-body > span {
|
2018-07-07 13:26:03 +00:00
|
|
|
|
flex: 10 10 auto;
|
2019-06-28 15:37:30 +00:00
|
|
|
|
height: 100%;
|
2018-05-30 12:46:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-status-table .ifacebox-body > div {
|
2018-07-13 14:31:14 +00:00
|
|
|
|
margin: -.125em;
|
2020-03-04 08:29:07 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
2018-05-30 12:46:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-21 19:16:06 +00:00
|
|
|
|
#dsl_status_table .ifacebox-body span > strong {
|
2018-07-29 19:05:34 +00:00
|
|
|
|
display: inline-block;
|
|
|
|
|
min-width: 35%;
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-19 15:21:00 +00:00
|
|
|
|
.ifacebadge.large,
|
2018-05-30 12:46:10 +00:00
|
|
|
|
.network-status-table .ifacebox-body .ifacebadge {
|
2019-11-08 14:58:39 +00:00
|
|
|
|
display: flex;
|
2018-05-30 12:46:10 +00:00
|
|
|
|
flex: 1;
|
2018-07-13 07:38:25 +00:00
|
|
|
|
padding: .25em;
|
2018-05-30 12:46:10 +00:00
|
|
|
|
min-width: 220px;
|
2018-07-13 14:31:14 +00:00
|
|
|
|
margin: .125em;
|
2018-05-30 12:46:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-08 14:58:39 +00:00
|
|
|
|
.ifacebadge.large {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.network-status-table .ifacebox-body .ifacebadge > span {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-13 07:38:25 +00:00
|
|
|
|
.ifacebadge > *,
|
|
|
|
|
.ifacebadge.large > * {
|
|
|
|
|
margin: 0 .125em;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.zonebadge {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
padding: 2px;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
white-space: nowrap;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
color: var(--text-color-high);
|
|
|
|
|
text-shadow: 0 1px 1px hsla(var(--background-color-high-hsl), 0.75);
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2013-01-04 16:25:06 +00:00
|
|
|
|
.zonebadge > em,
|
|
|
|
|
.zonebadge > strong {
|
2018-06-08 05:29:44 +00:00
|
|
|
|
margin: 0 2px;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
display: inline-block;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.zonebadge input {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
width: 6em;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2018-06-08 05:29:44 +00:00
|
|
|
|
.zonebadge > .ifacebadge {
|
|
|
|
|
margin-left: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
.zonebadge-empty {
|
2018-07-12 16:57:20 +00:00
|
|
|
|
border: 1px dashed #aaa;
|
|
|
|
|
color: #aaa;
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-style: italic;
|
|
|
|
|
font-size: smaller;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 18:08:44 +00:00
|
|
|
|
div.cbi-value var,
|
2018-05-28 12:54:50 +00:00
|
|
|
|
.td.cbi-value-field var {
|
2012-02-15 20:38:36 +00:00
|
|
|
|
font-style: italic;
|
2018-07-12 16:57:20 +00:00
|
|
|
|
color: #0069d6;
|
2012-02-15 18:08:44 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2020-01-19 16:50:37 +00:00
|
|
|
|
div.cbi-value var[data-tooltip],
|
|
|
|
|
.td.cbi-value-field var[data-tooltip],
|
|
|
|
|
div.cbi-value var.cbi-tooltip-container,
|
|
|
|
|
.td.cbi-value-field var.cbi-tooltip-container {
|
|
|
|
|
cursor: help;
|
|
|
|
|
border-bottom: 1px dotted #0069d6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
div.cbi-value var.cbi-tooltip-container,
|
|
|
|
|
.td.cbi-value-field var.cbi-tooltip-container .cbi-tooltip {
|
|
|
|
|
font-style: normal;
|
|
|
|
|
white-space: normal;
|
2021-09-15 20:34:11 +00:00
|
|
|
|
color: var(--text-color-high);
|
2020-01-19 16:50:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-05 12:11:18 +00:00
|
|
|
|
#modal_overlay > .modal.uci-dialog,
|
|
|
|
|
#modal_overlay > .modal.cbi-modal {
|
2019-02-07 18:10:34 +00:00
|
|
|
|
max-width: 900px;
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-13 22:59:39 +00:00
|
|
|
|
#modal_overlay > .modal.login > button.important {
|
|
|
|
|
font-size: 120% !important;
|
|
|
|
|
margin-top: .5em;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-15 20:30:32 +00:00
|
|
|
|
.uci-change-list {
|
2018-08-04 20:09:49 +00:00
|
|
|
|
line-height: 170%;
|
|
|
|
|
white-space: pre;
|
2012-02-15 20:30:32 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-11-13 22:59:39 +00:00
|
|
|
|
.uci-change-dialog div > del,
|
|
|
|
|
.uci-change-dialog div > ins,
|
|
|
|
|
.uci-change-dialog div > var {
|
2021-10-08 17:20:34 +00:00
|
|
|
|
margin-bottom: 2px;
|
2021-11-16 23:30:58 +00:00
|
|
|
|
border: 1px solid hsla(var(--border-color-high-hsl), .6);
|
2021-10-08 17:20:34 +00:00
|
|
|
|
line-height: 15px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
2021-11-16 23:30:58 +00:00
|
|
|
|
padding: 2px;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
position: relative;
|
2021-11-16 23:30:58 +00:00
|
|
|
|
background-color: hsla(var(--background-color-low-hsl), .3);
|
2018-08-04 20:09:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-13 22:59:39 +00:00
|
|
|
|
.uci-change-dialog div > ins {
|
2021-11-16 23:30:58 +00:00
|
|
|
|
background-color: rgba(var(--success-color-high-rgb), .3);
|
2021-11-13 22:59:39 +00:00
|
|
|
|
border-color: rgba(var(--success-color-high-rgb), .6);
|
2012-02-15 20:30:32 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-11-13 22:59:39 +00:00
|
|
|
|
.uci-change-dialog div > del {
|
2021-11-16 23:30:58 +00:00
|
|
|
|
background-color: rgba(var(--error-color-high-rgb), .3);
|
2021-11-13 22:59:39 +00:00
|
|
|
|
border-color: rgba(var(--error-color-high-rgb), .6);
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-16 23:30:58 +00:00
|
|
|
|
.uci-change-dialog var > ins {
|
|
|
|
|
background-color: rgba(var(--success-color-high-rgb), .3);
|
2021-11-13 22:59:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-16 23:30:58 +00:00
|
|
|
|
.uci-change-dialog var > del {
|
|
|
|
|
background-color: rgba(var(--error-color-high-rgb), .3);
|
2021-11-13 22:59:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-16 23:30:58 +00:00
|
|
|
|
.uci-change-list > var > * {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-16 23:30:58 +00:00
|
|
|
|
.uci-change-dialog del,
|
|
|
|
|
.uci-change-dialog ins,
|
|
|
|
|
.uci-change-dialog var {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
font-family: monospace;
|
|
|
|
|
font-style: normal;
|
|
|
|
|
color: var(--text-color-high);
|
|
|
|
|
display: block;
|
2012-02-15 20:30:32 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 20:30:32 +00:00
|
|
|
|
.uci-change-legend {
|
2021-10-08 17:20:34 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
2012-02-15 20:30:32 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2012-02-15 20:30:32 +00:00
|
|
|
|
.uci-change-legend-label {
|
2021-10-08 17:20:34 +00:00
|
|
|
|
flex-basis: 150px;
|
|
|
|
|
margin: 2px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2012-02-15 20:30:32 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2015-02-28 17:20:33 +00:00
|
|
|
|
.uci-change-legend-label > ins,
|
|
|
|
|
.uci-change-legend-label > del,
|
|
|
|
|
.uci-change-legend-label > var {
|
2012-02-15 20:30:32 +00:00
|
|
|
|
margin-right: 4px;
|
2019-02-07 18:10:34 +00:00
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
2021-10-08 17:20:34 +00:00
|
|
|
|
display: flex;
|
2012-02-15 20:30:32 +00:00
|
|
|
|
}
|
2012-02-15 20:38:36 +00:00
|
|
|
|
|
2021-11-13 22:59:39 +00:00
|
|
|
|
.uci-change-legend-label > * > * {
|
2021-10-08 17:20:34 +00:00
|
|
|
|
flex-basis: 100%;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
padding: 1px;
|
2018-05-31 13:38:03 +00:00
|
|
|
|
}
|
2018-08-07 15:37:48 +00:00
|
|
|
|
|
|
|
|
|
#applyreboot-section {
|
|
|
|
|
line-height: 300%;
|
|
|
|
|
}
|
2018-09-29 12:23:43 +00:00
|
|
|
|
|
|
|
|
|
[data-page="admin-network-dhcp"] [data-name="ip"] {
|
|
|
|
|
width: 15%;
|
|
|
|
|
}
|
2018-10-20 14:30:24 +00:00
|
|
|
|
|
|
|
|
|
@keyframes flash {
|
|
|
|
|
0% { opacity: 1; }
|
|
|
|
|
50% { opacity: .5; }
|
|
|
|
|
100% { opacity: 1; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.flash {
|
|
|
|
|
animation: flash .35s;
|
|
|
|
|
}
|
2018-11-13 15:19:23 +00:00
|
|
|
|
|
2021-11-13 22:59:39 +00:00
|
|
|
|
#view > div.spinning:first-child {
|
|
|
|
|
display: table;
|
|
|
|
|
margin: 15vh auto;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-13 15:19:23 +00:00
|
|
|
|
.spinning {
|
|
|
|
|
position: relative;
|
|
|
|
|
padding-left: 32px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.spinning::before {
|
2021-11-13 22:59:39 +00:00
|
|
|
|
--spinner-icon: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' stroke='%23000' stroke-width='3' fill='none'><circle cx='10' cy='10' r='8' stroke-opacity='.5'/><path d='M10 2c4 0 8 4 8 8'><animateTransform attributeName='transform' type='rotate' dur='1s' from='0 10 10' to='360 10 10' repeatCount='indefinite'/></path></svg>");
|
|
|
|
|
|
2018-11-13 15:19:23 +00:00
|
|
|
|
position: absolute;
|
2021-11-13 22:59:39 +00:00
|
|
|
|
top: calc(50% - 10px);
|
|
|
|
|
left: 6px;
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
2018-11-13 15:19:23 +00:00
|
|
|
|
content: " ";
|
2021-11-13 22:59:39 +00:00
|
|
|
|
background: var(--on-color, #000);
|
|
|
|
|
mask: var(--spinner-icon) center/cover no-repeat;
|
|
|
|
|
-webkit-mask: var(--spinner-icon) center/cover no-repeat;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-darkmode="true"] .spinning::before {
|
|
|
|
|
background: var(--on-color, #fff);
|
2018-11-13 15:19:23 +00:00
|
|
|
|
}
|
2018-12-07 16:55:43 +00:00
|
|
|
|
|
|
|
|
|
[data-tab-title] {
|
|
|
|
|
height: 0;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-tab-active="true"] {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
height: auto;
|
|
|
|
|
overflow: visible;
|
|
|
|
|
transition: opacity .25s ease-in;
|
|
|
|
|
}
|
2019-09-04 12:23:31 +00:00
|
|
|
|
|
|
|
|
|
.cbi-filebrowser {
|
|
|
|
|
min-width: 210px;
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-filebrowser.open {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
height: auto;
|
|
|
|
|
overflow: visible;
|
|
|
|
|
transition: opacity .25s ease-in;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-filebrowser > * {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
padding: 0 0 .25em 0;
|
|
|
|
|
margin: .25em .25em 0px .25em;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-filebrowser .cbi-button-positive {
|
|
|
|
|
margin-right: .25em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-filebrowser > div {
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-filebrowser > ul > li {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-filebrowser > ul > li:hover {
|
|
|
|
|
background: #f5f5f5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-filebrowser > ul > li > div:first-child {
|
|
|
|
|
flex: 10;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-filebrowser > ul > li > div:last-child {
|
|
|
|
|
flex: 3;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-filebrowser > ul > li > div:last-child > button {
|
|
|
|
|
padding: .125em .25em;
|
|
|
|
|
margin: 1px 0 1px .25em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-filebrowser .upload {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
margin: 0 -.125em .25em -.125em;
|
|
|
|
|
padding: 0 0 .125em 0px;
|
|
|
|
|
border-bottom: 1px solid #ccc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-filebrowser .upload > * {
|
|
|
|
|
margin: .125em;
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-filebrowser .upload > .btn {
|
|
|
|
|
flex-basis: 60px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-filebrowser .upload > div {
|
|
|
|
|
flex: 10;
|
|
|
|
|
min-width: 150px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cbi-filebrowser .upload > div > input {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2019-09-11 07:23:16 +00:00
|
|
|
|
|
|
|
|
|
@keyframes fade-in {
|
|
|
|
|
0% { opacity: 0; }
|
|
|
|
|
100% { opacity: 1; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes fade-out {
|
|
|
|
|
0% { opacity: 1; }
|
|
|
|
|
100% { opacity: 0; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fade-in {
|
|
|
|
|
animation: fade-in .4s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fade-out {
|
|
|
|
|
animation: fade-out .4s ease;
|
|
|
|
|
}
|
2020-03-24 21:13:41 +00:00
|
|
|
|
|
|
|
|
|
.assoclist .ifacebadge {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
white-space: normal;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.assoclist .ifacebadge > img {
|
|
|
|
|
margin: .2em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.assoclist .td:nth-of-type(3),
|
|
|
|
|
.assoclist .td:nth-of-type(5) {
|
|
|
|
|
width: 25%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.assoclist .td:nth-of-type(6) button {
|
|
|
|
|
word-break: normal;
|
|
|
|
|
}
|
2021-11-13 22:59:39 +00:00
|
|
|
|
|
|
|
|
|
[data-darkmode="true"] [data-page="admin-statistics-graphs"] [data-plugin] img {
|
|
|
|
|
filter: invert(100%) hue-rotate(150deg);
|
|
|
|
|
}
|