Fixed or improved search widget responsiveness on smaller viewports.
This commit is contained in:
Chris Houseknecht 2014-07-10 14:00:51 -04:00
parent bfc8f89205
commit 1ce4396c2f
2 changed files with 2 additions and 2 deletions

View File

@ -742,7 +742,7 @@ angular.module('GeneratorHelpers', [])
if (includeSize) {
html += "<div class=\"";
html += (size) ? size : "col-lg-4 col-md-6";
html += (size) ? size : "col-lg-4 col-md-6 col-sm-8 col-xs-9";
html += "\" id=\"search-widget-container" + modifier + "\">\n";
}

View File

@ -228,7 +228,7 @@ angular.module('ListGenerator', ['GeneratorHelpers'])
} else if (options.id !== undefined) {
html += "col-lg-4";
} else {
html += "col-lg-8 col-md-6";
html += "col-lg-8 col-md-6 col-sm-4 col-xs-3";
}
html += "\">\n";