fix for the wrong input width when it's appended by a button

This commit is contained in:
Jakub Baran
2015-07-16 19:15:38 +02:00
parent f08667fd78
commit 8502762292
3 changed files with 6 additions and 24 deletions
+3 -11
View File
@@ -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;
-10
View File
@@ -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 {
+3 -3
View File
@@ -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;
}
}
}