2017-02-12 15:06:01 +01:00
|
|
|
// other solution : http://stackoverflow.com/questions/1577598/how-to-hide-parts-of-html-when-javascript-is-disabled/13857783#13857783
|
[stylelint] disable role 'no-descending-specificity'
This patch disables role 'no-descending-specificity'. IMO it is better to have
this rule active (see below [1]), but it is hard to rewrite the less files to
pass this rule, so for the first I chose to disable this rule.
---
Source order is important in CSS, and when two selectors have the same
specificity, the one that occurs last will take priority. However, the situation
is different when one of the selectors has a higher specificity. In that case,
source order does not matter: the selector with higher specificity will win out
even if it comes first.
The clashes of these two mechanisms for prioritization, source order and
specificity, can cause some confusion when reading stylesheets. If a selector
with higher specificity comes before the selector it overrides, we have to think
harder to understand it, because it violates the source order
expectation. Stylesheets are most legible when overriding selectors always come
after the selectors they override. That way both mechanisms, source order and
specificity, work together nicely.
This rule enforces that practice as best it can, reporting fewer errors than it
should. It cannot catch every actual overriding selector, but it can catch
certain common mistakes.
[1] https://stylelint.io/user-guide/rules/list/no-descending-specificity/
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
2021-06-22 14:23:12 +02:00
|
|
|
|
|
|
|
// stylelint-disable no-descending-specificity
|
|
|
|
|
2017-02-12 15:06:01 +01:00
|
|
|
html.no-js .hide_if_nojs {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
html.js .show_if_nojs {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.right {
|
2021-06-22 13:50:06 +02:00
|
|
|
float: right;
|
2017-02-12 15:06:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.left {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.invisible {
|
2018-08-09 16:13:50 +02:00
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.list-unstyled {
|
|
|
|
list-style-type: none;
|
|
|
|
|
|
|
|
li {
|
|
|
|
margin-top: 4px;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
2017-02-12 15:06:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.danger {
|
|
|
|
background-color: @color-error-background;
|
|
|
|
}
|
|
|
|
|
2021-04-14 18:11:35 +02:00
|
|
|
.warning {
|
|
|
|
background: @color-warning-background;
|
|
|
|
}
|
|
|
|
|
|
|
|
.success {
|
|
|
|
background: @color-success-background;
|
|
|
|
}
|
|
|
|
|
2017-02-12 15:06:01 +01:00
|
|
|
.badge {
|
|
|
|
display: inline-block;
|
|
|
|
color: #fff;
|
|
|
|
background-color: #777;
|
|
|
|
text-align: center;
|
|
|
|
white-space: nowrap;
|
|
|
|
vertical-align: baseline;
|
|
|
|
min-width: 10px;
|
|
|
|
padding: 1px 5px;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
2018-08-09 16:13:50 +02:00
|
|
|
// kbd
|
|
|
|
kbd {
|
|
|
|
padding: 2px 4px;
|
|
|
|
margin: 1px;
|
|
|
|
font-size: 90%;
|
|
|
|
color: white;
|
|
|
|
background: black;
|
|
|
|
}
|
|
|
|
|
2017-02-12 15:06:01 +01:00
|
|
|
// table
|
|
|
|
table {
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
&.striped {
|
|
|
|
tr {
|
|
|
|
border-bottom: 1px solid @color-settings-tr-hover;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
th {
|
|
|
|
padding: 0.4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
padding: 0 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr {
|
|
|
|
&:hover {
|
|
|
|
background: @color-settings-tr-hover;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-09 16:13:50 +02:00
|
|
|
// pre
|
|
|
|
.pre() {
|
|
|
|
display: block;
|
|
|
|
font-size: 0.8em;
|
|
|
|
word-break: break-all;
|
|
|
|
margin: 0.1em;
|
2021-06-22 13:50:06 +02:00
|
|
|
.select-all-on-focus();
|
2018-08-09 16:13:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
div.selectable_url {
|
|
|
|
display: block;
|
|
|
|
border: 1px solid @color-result-search-url-border;
|
|
|
|
padding: 4px;
|
|
|
|
color: @color-result-search-url-font;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0.1em;
|
|
|
|
overflow: hidden;
|
|
|
|
height: 1.2em;
|
|
|
|
line-height: 1.2em;
|
|
|
|
|
|
|
|
pre {
|
|
|
|
.pre();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-12 15:06:01 +01:00
|
|
|
// dialog
|
|
|
|
.dialog() {
|
|
|
|
position: relative;
|
|
|
|
width: 70%;
|
|
|
|
padding: 1em 1em 1em 2.7em;
|
2021-06-22 13:50:06 +02:00
|
|
|
margin: 0 8% 1em 8%;
|
2017-02-12 15:06:01 +01:00
|
|
|
border: 1px solid black;
|
|
|
|
border-radius: 4px;
|
|
|
|
text-align: left;
|
|
|
|
|
2021-06-22 13:50:06 +02:00
|
|
|
&::before {
|
2017-02-12 15:06:01 +01:00
|
|
|
position: absolute;
|
|
|
|
top: 0.5em;
|
|
|
|
left: 0.5em;
|
2021-06-22 14:15:47 +02:00
|
|
|
font-family: "ion"; // stylelint-disable font-family-no-missing-generic-family-keyword
|
2017-02-12 15:06:01 +01:00
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.close {
|
2021-06-22 13:50:06 +02:00
|
|
|
float: right;
|
2017-02-12 15:06:01 +01:00
|
|
|
position: relative;
|
|
|
|
top: -3px;
|
|
|
|
color: inherit;
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
2021-06-22 13:50:06 +02:00
|
|
|
ul,
|
|
|
|
ol,
|
|
|
|
p {
|
2017-02-12 15:06:01 +01:00
|
|
|
margin: 1px 0 0 0;
|
|
|
|
}
|
|
|
|
|
2018-08-09 16:13:50 +02:00
|
|
|
table {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr {
|
|
|
|
vertical-align: text-top;
|
2021-06-22 13:50:06 +02:00
|
|
|
|
2018-08-09 16:13:50 +02:00
|
|
|
&:hover {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
padding: 0 1em 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
margin-top: 0.3em;
|
|
|
|
margin-bottom: 0.3em;
|
|
|
|
}
|
2017-02-12 15:06:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.dialog-error {
|
|
|
|
.dialog();
|
2021-06-22 13:50:06 +02:00
|
|
|
|
2017-02-12 15:06:01 +01:00
|
|
|
color: @color-error;
|
|
|
|
background: @color-error-background;
|
|
|
|
border-color: @color-error;
|
|
|
|
.ion-error();
|
|
|
|
}
|
|
|
|
|
|
|
|
.dialog-warning {
|
|
|
|
.dialog();
|
2021-06-22 13:50:06 +02:00
|
|
|
|
2017-02-12 15:06:01 +01:00
|
|
|
color: @color-warning;
|
|
|
|
background: @color-warning-background;
|
|
|
|
border-color: @color-warning;
|
|
|
|
.ion-warning();
|
|
|
|
}
|
|
|
|
|
2018-08-09 16:13:50 +02:00
|
|
|
.dialog-modal {
|
|
|
|
.dialog();
|
2021-06-22 13:50:06 +02:00
|
|
|
|
2018-08-09 16:13:50 +02:00
|
|
|
background: white;
|
2021-06-22 13:50:06 +02:00
|
|
|
position: fixed;
|
2018-08-09 16:13:50 +02:00
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
2021-06-22 13:50:06 +02:00
|
|
|
|
2018-08-09 16:13:50 +02:00
|
|
|
/* bring your own prefixes */
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
z-index: 100000;
|
|
|
|
margin: 0 50% 0 0;
|
|
|
|
box-shadow: 0 0 1em;
|
|
|
|
}
|
|
|
|
|
2017-02-12 15:06:01 +01:00
|
|
|
// btn-collapse
|
|
|
|
.btn-collapse {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
.scrollx {
|
|
|
|
overflow-x: auto;
|
|
|
|
overflow-y: hidden;
|
|
|
|
display: block;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2021-06-22 13:50:06 +02:00
|
|
|
/* -- tabs -- */
|
2017-02-12 15:06:01 +01:00
|
|
|
.tabs .tabs > label {
|
|
|
|
font-size: 90%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tabs {
|
|
|
|
.flexbox();
|
2021-06-22 13:50:06 +02:00
|
|
|
|
2017-02-12 15:06:01 +01:00
|
|
|
flex-wrap: wrap;
|
|
|
|
width: 100%;
|
|
|
|
min-width: 100%;
|
|
|
|
|
|
|
|
& > * {
|
|
|
|
order: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > input[type=radio] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > label {
|
|
|
|
order: 1;
|
|
|
|
padding: 0.7em;
|
|
|
|
margin: 0 0.7em;
|
2021-06-22 13:50:06 +02:00
|
|
|
letter-spacing: 0.5px;
|
2017-02-12 15:06:01 +01:00
|
|
|
text-transform: uppercase;
|
|
|
|
border: solid white;
|
2021-06-22 13:50:06 +02:00
|
|
|
border-width: 0 0 2px 0;
|
2017-02-12 15:06:01 +01:00
|
|
|
|
|
|
|
.disable-user-select();
|
2021-06-22 13:50:06 +02:00
|
|
|
|
2017-02-12 15:06:01 +01:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > label:hover {
|
|
|
|
border-bottom: 2px solid @color-categories-item-border-selected;
|
|
|
|
}
|
|
|
|
|
|
|
|
& > section {
|
|
|
|
min-width: 100%;
|
|
|
|
padding: 0.7rem 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-top: 1px solid black;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
// default selection
|
|
|
|
& > label:last-of-type {
|
|
|
|
border-bottom: 2px solid @color-categories-item-border-selected;
|
|
|
|
background: @color-categories-item-selected;
|
|
|
|
color: @color-categories-item-selected-font;
|
|
|
|
font-weight: bold;
|
2021-06-22 13:50:06 +02:00
|
|
|
letter-spacing: -0.1px;
|
2017-02-12 15:06:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
& > section:last-of-type {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
html body .tabs > input:checked {
|
|
|
|
~ section {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-06-22 13:50:06 +02:00
|
|
|
|
2017-02-12 15:06:01 +01:00
|
|
|
~ label {
|
|
|
|
position: inherited;
|
|
|
|
background: inherit;
|
|
|
|
border-bottom: 2px solid transparent;
|
|
|
|
font-weight: normal;
|
|
|
|
color: inherit;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
border-bottom: 2px solid @color-categories-item-border-selected;
|
|
|
|
}
|
|
|
|
}
|
2021-06-22 13:50:06 +02:00
|
|
|
|
2017-02-12 15:06:01 +01:00
|
|
|
+ label {
|
|
|
|
border-bottom: 2px solid @color-categories-item-border-selected;
|
|
|
|
background: @color-categories-item-selected;
|
|
|
|
color: @color-categories-item-selected-font;
|
|
|
|
}
|
2021-06-22 13:50:06 +02:00
|
|
|
|
2017-02-12 15:06:01 +01:00
|
|
|
+ label + section {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-09 16:13:50 +02:00
|
|
|
/* -- select -- */
|
2017-02-12 15:06:01 +01:00
|
|
|
select {
|
|
|
|
height: 28px;
|
|
|
|
margin: 0 1em 0 0;
|
|
|
|
padding: 2px 8px 2px 0 !important;
|
|
|
|
color: @color-search-font;
|
|
|
|
font-size: 12px;
|
|
|
|
z-index: 2;
|
|
|
|
|
2021-06-22 13:50:06 +02:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2017-02-12 15:06:01 +01:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@supports ((background-position-x: 100%) and ((appearance: none) or (-webkit-appearance: none) or (-moz-appearance: none))) {
|
|
|
|
select {
|
|
|
|
appearance: none;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
border: none;
|
|
|
|
border-bottom: 1px solid #d7d7d7;
|
|
|
|
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI1MTJweCIgaGVpZ2h0PSI1MTJweCIgdmlld0JveD0iMCAwIDUxMiA1MTIiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDUxMiA1MTIiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxnPjxwb2x5Z29uIHBvaW50cz0iMTI4LDE5MiAyNTYsMzIwIDM4NCwxOTIiLz48L2c+PC9zdmc+Cg==) no-repeat;
|
|
|
|
background-position-x: 105%;
|
|
|
|
background-size: 2em;
|
|
|
|
background-origin: content-box;
|
|
|
|
outline: medium none;
|
|
|
|
|
2021-06-22 13:50:06 +02:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2017-02-12 15:06:01 +01:00
|
|
|
border-bottom: 1px solid @color-search-border;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-09 16:13:50 +02:00
|
|
|
/* -- checkbox-onoff -- */
|
2017-02-12 15:06:01 +01:00
|
|
|
@supports (border-radius: 50px) {
|
|
|
|
.checkbox-onoff {
|
|
|
|
display: inline-block;
|
|
|
|
width: 40px;
|
|
|
|
height: 10px;
|
|
|
|
background: #dcdcdc;
|
|
|
|
margin: 8px auto;
|
|
|
|
position: relative;
|
|
|
|
border-radius: 50px;
|
2021-06-22 13:50:06 +02:00
|
|
|
|
2017-02-12 15:06:01 +01:00
|
|
|
label {
|
|
|
|
display: block;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
position: absolute;
|
|
|
|
top: -5px;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 50px;
|
2021-06-22 13:50:06 +02:00
|
|
|
box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.3);
|
2017-02-12 15:06:01 +01:00
|
|
|
transition: all 0.4s ease;
|
|
|
|
left: 27px;
|
2021-06-22 13:50:06 +02:00
|
|
|
background-color: #3498db;
|
2017-02-12 15:06:01 +01:00
|
|
|
}
|
2021-06-22 13:50:06 +02:00
|
|
|
|
2017-02-12 15:06:01 +01:00
|
|
|
input[type=checkbox] {
|
|
|
|
visibility: hidden;
|
2021-06-22 13:50:06 +02:00
|
|
|
|
2017-02-12 15:06:01 +01:00
|
|
|
&:checked + label {
|
|
|
|
left: -5px;
|
|
|
|
background: #dcdcdc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-22 13:50:06 +02:00
|
|
|
/* -- checkbox -- */
|
2017-02-12 15:06:01 +01:00
|
|
|
@supports (transform: rotate(-45deg)) {
|
|
|
|
.checkbox {
|
|
|
|
width: 20px;
|
|
|
|
position: relative;
|
|
|
|
margin: 20px auto;
|
2021-06-22 13:50:06 +02:00
|
|
|
|
2017-02-12 15:06:01 +01:00
|
|
|
label {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
cursor: pointer;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
background: white;
|
|
|
|
border-radius: 4px;
|
2021-06-22 13:50:06 +02:00
|
|
|
box-shadow: inset 0 1px 1px white, 0 1px 4px rgba(0, 0, 0, 0.5);
|
|
|
|
|
|
|
|
&::after {
|
2017-02-12 15:06:01 +01:00
|
|
|
content: '';
|
|
|
|
width: 9px;
|
|
|
|
height: 5px;
|
|
|
|
position: absolute;
|
|
|
|
top: 4px;
|
|
|
|
left: 4px;
|
|
|
|
border: 3px solid #333;
|
|
|
|
border-top: none;
|
|
|
|
border-right: none;
|
|
|
|
background: transparent;
|
|
|
|
opacity: 0;
|
|
|
|
transform: rotate(-45deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type=checkbox] {
|
|
|
|
visibility: hidden;
|
2021-06-22 13:50:06 +02:00
|
|
|
|
|
|
|
&:checked + label::after {
|
|
|
|
border-color: #3498db;
|
2017-02-12 15:06:01 +01:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-09 16:13:50 +02:00
|
|
|
// disabled : can''t be focused, show only the check mark
|
2021-06-22 13:50:06 +02:00
|
|
|
input[disabled] + label {
|
2017-02-12 15:06:01 +01:00
|
|
|
background-color: transparent !important;
|
|
|
|
box-shadow: none !important;
|
2021-06-22 13:50:06 +02:00
|
|
|
cursor: inherit;
|
2017-02-12 15:06:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// if not checked and possible to checked then display a "light" check mark on hover
|
|
|
|
input:not(:checked):not([readonly]):not([disabled]) + label:hover::after {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 50em) {
|
|
|
|
.tabs > label {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2018-08-09 16:13:50 +02:00
|
|
|
|
|
|
|
/* -- loader -- */
|
|
|
|
.loader,
|
2021-06-22 13:50:06 +02:00
|
|
|
.loader::after {
|
|
|
|
border-radius: 50%;
|
|
|
|
width: 2em;
|
|
|
|
height: 2em;
|
2018-08-09 16:13:50 +02:00
|
|
|
}
|
2021-06-22 13:50:06 +02:00
|
|
|
|
2018-08-09 16:13:50 +02:00
|
|
|
.loader {
|
2021-06-22 13:50:06 +02:00
|
|
|
margin: 1em auto;
|
|
|
|
font-size: 10px;
|
|
|
|
position: relative;
|
|
|
|
text-indent: -9999em;
|
|
|
|
border-top: 0.5em solid rgba(0, 0, 0, 0.2);
|
|
|
|
border-right: 0.5em solid rgba(0, 0, 0, 0.2);
|
|
|
|
border-bottom: 0.5em solid rgba(0, 0, 0, 0.2);
|
|
|
|
border-left: 0.5em solid rgba(255, 255, 255, 0);
|
|
|
|
-webkit-transform: translateZ(0);
|
|
|
|
-ms-transform: translateZ(0);
|
|
|
|
transform: translateZ(0);
|
|
|
|
-webkit-animation: load8 1.2s infinite linear;
|
|
|
|
animation: load8 1.2s infinite linear;
|
2018-08-09 16:13:50 +02:00
|
|
|
}
|
2021-06-22 13:50:06 +02:00
|
|
|
|
2018-08-09 16:13:50 +02:00
|
|
|
@-webkit-keyframes load8 {
|
2021-06-22 13:50:06 +02:00
|
|
|
0% {
|
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
-webkit-transform: rotate(360deg);
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
2018-08-09 16:13:50 +02:00
|
|
|
}
|
2021-06-22 13:50:06 +02:00
|
|
|
|
2018-08-09 16:13:50 +02:00
|
|
|
@keyframes load8 {
|
2021-06-22 13:50:06 +02:00
|
|
|
0% {
|
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
-webkit-transform: rotate(360deg);
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
2021-04-14 18:11:35 +02:00
|
|
|
}
|
|
|
|
|
2021-04-23 11:01:54 +02:00
|
|
|
/* -- engine-tooltip -- */
|
|
|
|
.engine-tooltip {
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
padding: 0.5rem 1rem;
|
2021-06-22 13:50:06 +02:00
|
|
|
margin: 0 0 0 2rem;
|
2021-04-23 11:01:54 +02:00
|
|
|
border: 1px solid #ddd;
|
2021-06-22 13:50:06 +02:00
|
|
|
box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.1);
|
2021-04-23 11:01:54 +02:00
|
|
|
background: white;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: normal;
|
2021-06-22 13:50:06 +02:00
|
|
|
z-index: 1000000;
|
2021-04-23 11:01:54 +02:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2021-06-22 13:50:06 +02:00
|
|
|
th:hover .engine-tooltip,
|
|
|
|
td:hover .engine-tooltip,
|
|
|
|
.engine-tooltip:hover {
|
2021-04-23 11:01:54 +02:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2021-04-14 18:11:35 +02:00
|
|
|
/* -- stacked bar chart -- */
|
|
|
|
.stacked-bar-chart {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0 0.125rem 0 4rem;
|
|
|
|
width: 100%;
|
|
|
|
width: -moz-available;
|
|
|
|
width: -webkit-fill-available;
|
|
|
|
width: fill;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
align-items: center;
|
|
|
|
display: inline-flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stacked-bar-chart-value {
|
|
|
|
width: 3rem;
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
2021-04-21 18:49:13 +02:00
|
|
|
padding: 0 0.5rem;
|
2021-04-14 18:11:35 +02:00
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stacked-bar-chart-base {
|
2021-06-22 13:50:06 +02:00
|
|
|
display: flex;
|
2021-04-14 18:11:35 +02:00
|
|
|
flex-shrink: 0;
|
|
|
|
flex-grow: 0;
|
|
|
|
flex-basis: unset;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stacked-bar-chart-median {
|
|
|
|
.stacked-bar-chart-base();
|
2021-06-22 13:50:06 +02:00
|
|
|
|
2021-04-14 18:11:35 +02:00
|
|
|
background: @stacked-bar-chart;
|
|
|
|
border: 1px solid fade(@stacked-bar-chart, 90%);
|
|
|
|
padding: 0.3rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stacked-bar-chart-rate80 {
|
|
|
|
.stacked-bar-chart-base();
|
2021-06-22 13:50:06 +02:00
|
|
|
|
2021-04-14 18:11:35 +02:00
|
|
|
background: transparent;
|
|
|
|
border: 1px solid fade(@stacked-bar-chart, 30%);
|
|
|
|
padding: 0.3rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stacked-bar-chart-rate95 {
|
|
|
|
.stacked-bar-chart-base();
|
2021-06-22 13:50:06 +02:00
|
|
|
|
2021-04-14 18:11:35 +02:00
|
|
|
background: transparent;
|
|
|
|
border-bottom: 1px dotted fade(@stacked-bar-chart, 50%);
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.stacked-bar-chart-rate100 {
|
|
|
|
.stacked-bar-chart-base();
|
2021-06-22 13:50:06 +02:00
|
|
|
|
2021-04-14 18:11:35 +02:00
|
|
|
background: transparent;
|
|
|
|
border-left: 1px solid fade(@stacked-bar-chart, 90%);
|
|
|
|
padding: 0.4rem 0;
|
|
|
|
width: 1px;
|
|
|
|
}
|