[Web] enhaned responsive design (#4187)

Fixed buttons with long titles

Signed-off-by: Kristian Feldsam <feldsam@gmail.com>
This commit is contained in:
Kristian Feldsam
2021-07-12 09:47:39 +02:00
committed by GitHub
parent 10734b67e3
commit dd5bc26b26
2 changed files with 40 additions and 9 deletions

View File

@@ -13,7 +13,8 @@
.panel-login .apps .btn {
width: auto;
float: left;
margin-bottom: 10px;
margin-right: 10px;
margin-top: auto;
}
@@ -86,6 +87,7 @@
}
.recent-login-success {
font-size: 14px;
margin-top: 10px !important;
}
.pull-xs-right {
@@ -138,7 +140,11 @@
padding: 13px 16px;
}
.btn-group:not(.input-group-btn) {
display: block;
display: flex;
flex-wrap: wrap;
}
.panel-login .btn-group {
display: block;
}
.mass-actions-user .btn-group {
float: none;
@@ -207,6 +213,10 @@
height: 66px;
line-height: 47px;
}
.panel-xs-lg .btn-group .btn {
padding-right: 5px;
padding-left: 5px;
}
.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
width: 100%;
}
@@ -219,9 +229,6 @@
.img-responsive {
margin: 0 auto;
}
.recent-login-success {
font-size: 16px;
}
.btn-group.footable-actions {
position: absolute;
width: 90vw !important;
@@ -244,6 +251,30 @@
margin-right: 14px;
white-space: normal;
}
.clearfix {
flex-basis: 100%;
height: 0;
}
.btn-group > .btn-group {
flex-basis: 100%;
}
.btn-group .btn {
display: flex !important;
align-items: center;
justify-content: center;
}
.btn-group .btn i {
margin-right: 5px;
}
.btn-group .btn .caret {
margin-left: 5px;
}
.panel-login .btn-group .btn {
display: block !important;
}
.panel-login .clearfix {
height: auto;
}
}
@media (max-width: 350px) {