mirror of
https://github.com/gantry/gantry5.git
synced 2026-08-19 01:15:04 -05:00
fix for the wrong input width when it's appended by a button
This commit is contained in:
+3
-11
@@ -2504,11 +2504,11 @@ body.g-prime {
|
||||
min-height: 150px;
|
||||
}
|
||||
#g5-container .settings-block .input-group.append input, #g5-container .settings-block .input-group.prepend input {
|
||||
width: 234px;
|
||||
width: 235px;
|
||||
}
|
||||
@media only all and (max-width: 59.938rem) {
|
||||
@media only all and (max-width: 47.938rem) {
|
||||
#g5-container .settings-block .input-group.append input, #g5-container .settings-block .input-group.prepend input {
|
||||
width: 100%;
|
||||
width: 100% !important;
|
||||
}
|
||||
}
|
||||
#g5-container .settings-block .selectize-control.single {
|
||||
@@ -4827,14 +4827,6 @@ html.g5-dialog-open {
|
||||
width: 90% !important;
|
||||
}
|
||||
}
|
||||
#g5-container .g5-dialog .input-group.append input, #g5-container .g5-dialog .input-group.prepend input {
|
||||
width: 209px;
|
||||
}
|
||||
@media only all and (max-width: 47.938rem) {
|
||||
#g5-container .g5-dialog .input-group.append input, #g5-container .g5-dialog .input-group.prepend input {
|
||||
width: 100% !important;
|
||||
}
|
||||
}
|
||||
#g5-container .g5-overlay {
|
||||
-webkit-animation: fadeIn 0.5s;
|
||||
-moz-animation: fadeIn 0.5s;
|
||||
|
||||
@@ -25,16 +25,6 @@ html.g5-dialog-open {
|
||||
width: 90% !important;
|
||||
}
|
||||
}
|
||||
.input-group {
|
||||
&.append, &.prepend {
|
||||
input {
|
||||
width: 209px;
|
||||
@include breakpoint(mobile-only) {
|
||||
width: 100% !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.g5-overlay {
|
||||
|
||||
@@ -182,9 +182,9 @@
|
||||
.input-group {
|
||||
&.append, &.prepend {
|
||||
input {
|
||||
width: 234px;
|
||||
@include breakpoint(no-desktop) {
|
||||
width: 100%;
|
||||
width: 235px;
|
||||
@include breakpoint(mobile-only) {
|
||||
width: 100% !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user