2022-05-03 23:59:38 +03:00
|
|
|
@import "../config/_main.scss";
|
2021-09-05 02:21:11 +03:00
|
|
|
|
|
|
|
.boot {
|
|
|
|
margin: 1em 0em 1em 1em;
|
|
|
|
font-size: 1.5em;
|
|
|
|
|
|
|
|
#bootver {
|
|
|
|
color: $boot_header_colour;
|
|
|
|
margin-left: 1.12em; /* makes it that it aligns with 'boot' messages */
|
|
|
|
}
|
2022-02-19 21:59:45 +02:00
|
|
|
|
2021-09-05 02:21:11 +03:00
|
|
|
#bootver::before {
|
2022-05-03 23:59:38 +03:00
|
|
|
content: "WebRC version " $boot_ver;
|
2021-09-05 02:21:11 +03:00
|
|
|
}
|
|
|
|
|
2022-05-03 23:59:38 +03:00
|
|
|
.bmsg[bmsg_type="ok"] {
|
2021-09-05 02:21:11 +03:00
|
|
|
&::after {
|
2022-05-03 23:59:38 +03:00
|
|
|
content: "[OK]";
|
2021-09-05 02:21:11 +03:00
|
|
|
float: right;
|
|
|
|
color: $ok_colour;
|
|
|
|
}
|
2022-02-19 21:59:45 +02:00
|
|
|
|
2021-09-05 02:21:11 +03:00
|
|
|
&::before {
|
2022-05-03 23:59:38 +03:00
|
|
|
content: " * ";
|
2021-09-05 02:21:11 +03:00
|
|
|
color: $ok_colour;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-03 23:59:38 +03:00
|
|
|
.bmsg[bmsg_type="warn"] {
|
2021-09-05 02:21:11 +03:00
|
|
|
&::after {
|
2022-05-03 23:59:38 +03:00
|
|
|
content: "[WARNING]";
|
2021-09-05 02:21:11 +03:00
|
|
|
float: right;
|
|
|
|
color: $warn_colour;
|
|
|
|
}
|
2022-02-19 21:59:45 +02:00
|
|
|
|
2021-09-05 02:21:11 +03:00
|
|
|
&::before {
|
2022-05-03 23:59:38 +03:00
|
|
|
content: " * ";
|
2021-09-05 02:21:11 +03:00
|
|
|
color: $warn_colour;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-03 23:59:38 +03:00
|
|
|
.bmsg[bmsg_type="error"] {
|
2021-09-05 02:21:11 +03:00
|
|
|
&::after {
|
2022-05-03 23:59:38 +03:00
|
|
|
content: "[ERROR]";
|
2021-09-05 02:21:11 +03:00
|
|
|
float: right;
|
|
|
|
color: $error_colour;
|
|
|
|
}
|
2022-02-19 21:59:45 +02:00
|
|
|
|
2021-09-05 02:21:11 +03:00
|
|
|
&::before {
|
2022-05-03 23:59:38 +03:00
|
|
|
content: " * ";
|
2021-09-05 02:21:11 +03:00
|
|
|
color: $error_colour;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-27 21:08:53 +03:00
|
|
|
.bmsg::first-letter {
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
2021-09-05 02:21:11 +03:00
|
|
|
.bmsg {
|
|
|
|
word-wrap: break-word;
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
|
|
|
}
|