Accordion and form styling

Simplified styling by removing background colors and images. Border colors are now grey rather than blue.
This commit is contained in:
Chris Houseknecht 2014-07-22 12:34:28 -04:00
parent 7e77a756d9
commit 08e6751f69
2 changed files with 15 additions and 1 deletions

View File

@ -90,6 +90,9 @@ table.ui-datepicker-calendar {
}
.ui-widget-content {
background-image: none;
background-color: transparent;
a,
a:visited,
a:active {
@ -121,6 +124,17 @@ table.ui-datepicker-calendar {
}
}
.ui-state-active,
.ui-state-default {
background-image: none;
background-color: transparent;
border: 1px solid @well-border;
}
.ui-widget-content {
border: 1px solid @well-border;
}
.ui-spinner a.ui-spinner-button {
border-left: 1px solid #A6C9E2;
}

View File

@ -1132,7 +1132,7 @@ angular.module('FormGenerator', ['GeneratorHelpers', 'Utilities', 'ListGenerator
// Start the well
if (!this.modal && this.form.well) {
if ( !(this.form.collapse && this.form.collapseMode === options.mode)) {
html += "<div class=\"well\">\n";
html += "<div class=\"aw-form-well\">\n";
}
}