mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-03-29 00:00:33 -04:00
fix setting page input and select width inconsist issue (#4216)
This commit is contained in:
parent
7c888c9a77
commit
1883fa205c
1 changed files with 5 additions and 3 deletions
|
@ -393,11 +393,13 @@ td.flaggers td {
|
|||
.setting-value {
|
||||
float: left;
|
||||
width: 53%;
|
||||
padding-right: 20px;
|
||||
.category-group {
|
||||
width: 95%;
|
||||
}
|
||||
@media (max-width: $mobile-breakpoint) {
|
||||
width: 100%;
|
||||
padding-right: 0;
|
||||
}
|
||||
.select2-container {
|
||||
width: 100% !important; // Needs !important to override hard-coded value
|
||||
|
@ -413,14 +415,14 @@ td.flaggers td {
|
|||
float: left;
|
||||
}
|
||||
.input-setting-string {
|
||||
width: 404px;
|
||||
@include medium-width { width: 314px; }
|
||||
box-sizing: border-box;
|
||||
height: 30px;
|
||||
width: 100%;
|
||||
@media (max-width: $mobile-breakpoint) {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.input-setting-list {
|
||||
width: 408px;
|
||||
@media (max-width: $mobile-breakpoint) {
|
||||
width: 100%;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue