Fix test failures in low-voltage PR (#1207)

* fix lint checks in web python

* fix lint checks in common python

* rework to pass tests in docker

* fix css style lint

* fix css style syntax
This commit is contained in:
Benjamin Krein
2023-09-04 11:08:42 -04:00
committed by GitHub
parent 74eef6f9cc
commit b514440957
9 changed files with 63 additions and 59 deletions
@@ -173,7 +173,7 @@ summary.filename {
margin-left: -27px;
}
div.throttle_notice > div {
div.throttle-notice > div {
display: grid;
align-items: center;
background-color: #efefef;
@@ -185,23 +185,21 @@ div.throttle_notice > div {
justify-content: center;
}
div.throttle_notice > div.error {
div.throttle-notice > div.error {
background-color: #dc3545;
align-items: center;
}
div.throttle_notice > div.warning {
div.throttle-notice > div.warning {
background-color: #ffc107;
align-items: center;
}
div.throttle_notice > div a {
div.throttle-notice > div a {
color: black;
text-decoration: none;
}
div.throttle_notice > div a:hover {
div.throttle-notice > div a:hover {
text-decoration: underline;
}
@@ -476,7 +476,7 @@ div.footer div.theme-change-hint a {
------------------------------------------------------------------------------
*/
div.throttle_notice > div {
div.throttle-notice > div {
display: grid;
align-items: center;
background-color: #efefef;
@@ -487,29 +487,29 @@ div.throttle_notice > div {
font-weight: bold;
}
div.throttle_notice > div.error {
div.throttle-notice > div.error {
background-color: var(--danger);
background-image: url("icons/error.svg");
color: #fff;
align-items: center;
}
div.throttle_notice > div.warning {
div.throttle-notice > div.warning {
background-color: var(--warning);
background-image: url("icons/warning.svg");
align-items: center;
}
div.throttle_notice > div > span.message {
padding-left: 3rem;
div.throttle-notice > div > span.message {
padding-left: 3rem;
}
div.throttle_notice > div a {
div.throttle-notice > div a {
color: black;
text-decoration: none;
}
div.throttle_notice > div a:hover {
div.throttle-notice > div a:hover {
text-decoration: underline;
}