Hopefull improved styling for Firefox mobile fixes

This commit is contained in:
the-djmaze 2023-02-05 19:45:03 +01:00
parent 07409cde50
commit 93ff3001c6
17 changed files with 88 additions and 87 deletions

View file

@ -142,3 +142,47 @@ tr:hover .drag-handle {
.tabs > [id^="tab"]:checked + label + .tab-content {
visibility: visible;
}
// OTHER
.legend {
border-bottom: 1px solid var(--border-color, #ddd);
font-size: 150%;
line-height: 2.1;
margin-bottom: 1.43em;
}
summary.legend {
cursor: pointer;
}
.btn.btn-thin {
padding: 0 9px;
}
.alert a:not(.close) {
text-decoration: underline;
}
.alert.alert-info a:not(.close) {
color: var(--info-clr, #3a87ad);
}
.alert.alert-error a:not(.close) {
color: var(--error-clr, #b94a48);
}
/* mobile and tablet */
@media screen and (max-width: 999px) {
.form-horizontal {
.control-group {
> label {
text-align: left;
}
// Move over all input controls and content
> *:not(label) {
margin-left: 20px;
}
}
}
}