cryptpad/www/checkup/app-checkup.less

84 lines
1.8 KiB
Plaintext
Raw Normal View History

2021-05-03 17:16:26 +08:00
@import (reference) "../../customize/src/less2/include/colortheme-all.less";
@import (reference) "../../customize/src/less2/include/font.less";
@import (reference) "../../customize/src/less2/include/alertify.less";
2021-02-24 16:23:59 +08:00
html, body {
.font_main();
.alertify_main();
height: 100%;
margin: 0px;
padding: 0px;
background-color: @cp_static-bg !important;
color: @cryptpad_text_col;
font-family: "IBM Plex Mono";
.report {
font-size: 30px;
max-width: 50%;
margin: auto;
padding-top: 15px;
}
.pending {
border: 1px solid white;
.fa {
margin-right: 20px;
}
}
2021-02-24 16:23:59 +08:00
.success {
border: 1px solid green;
}
.failure {
border: 1px solid red;
}
.error {
border: 1px solid red;
}
.hidden {
display: none;
}
.failures div.error, .summary {
padding: 15px;
}
table {
td {
padding: 5px;
border: 1px solid white;
}
}
.advisory-text {
display: inline-block;
word-break: break-word;
2021-02-24 16:23:59 +08:00
padding: 5px;
//font-size: 16px;
2021-05-03 17:16:26 +08:00
&.cp-danger {
border: 1px solid @cp_alerts-danger-bg;
background-color: @cp_alerts-danger-bg;
color: @cp_alerts-danger-text;
}
&.cp-warning {
border: 1px solid @cp_alerts-warning-bg;
background-color: @cp_alerts-warning-bg;
color: @cp_alerts-warning-text;
}
code {
word-break: keep-all;
font-style: italic;
}
a {
color: @cryptpad_color_link;
}
2021-02-24 16:23:59 +08:00
}
.cp-app-checkup-version {
text-decoration: underline;
}
iframe {
display: none;
}
2021-02-24 16:23:59 +08:00
}