css fixes

This commit is contained in:
Yuri Kuznetsov
2022-08-11 21:09:21 +03:00
parent e652320a3e
commit 2551b024f0
2 changed files with 28 additions and 3 deletions
+9
View File
@@ -192,3 +192,12 @@ select[multiple].input-sm {
fieldset[disabled] .form-control {
color: var(--input-color-disabled);
}
.form-inline .form-control {
@media screen and (max-width: (@screen-sm-min - 1px)) {
display: inline-block;
width: auto;
vertical-align: middle;
}
}
+19 -3
View File
@@ -79,6 +79,14 @@
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
@media screen and (max-width: (@screen-sm-min - 1px)) {
&,
&.first::before,
&.last::before {
border-radius: 0;
}
}
}
.side > .panel {
@@ -87,12 +95,20 @@
border-bottom-right-radius: 0;
&.first::before {
border-top-left-radius: 0;
border-top-right-radius: 0;
border-bottom-left-radius: 0;
}
&.last::before {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
@media screen and (max-width: (@screen-sm-min - 1px)) {
&,
&.first::before,
&.last::before {
border-radius: 0;
}
}
}
}