Merge pull request #5015 from webbuilders-group/3.3-datetime-search-fix

BUGFIX: Fixed issue #5002 DatetimeField styles in the new filter panel
This commit is contained in:
Daniel Hensby 2016-02-05 15:31:37 +00:00
commit cb39c41872
2 changed files with 13 additions and 0 deletions

View File

@ -482,6 +482,8 @@ fieldset.switch-states.size_5 input:checked:nth-of-type(5) ~ .slide-button { lef
.cms-content-filters .field .chzn-container { width: 100% !important; max-width: 100%; }
.cms-content-filters .field input.text { max-width: 100%; }
.cms-content-filters .field.checkbox { display: block; }
.cms-content-filters .field.datetime > label.left { float: none; }
.cms-content-filters .field.datetime input.fieldgroup-field { width: 96%; padding: 7px; }
.cms-content-filters .importSpec { margin-bottom: 8px; padding-left: 16px; }
.cms-content-filters .description { margin-left: 0; }
.cms-content-filters .middleColumn { width: 100%; margin-left: 0; max-width: 100%; }

View File

@ -1081,6 +1081,17 @@ fieldset.switch-states{
&.checkbox {
display: block;
}
&.datetime {
> label.left {
float: none;
}
input.fieldgroup-field {
width: 96%;
padding: 7px;
}
}
}
.importSpec {