Users UX Audit changes

This commit is contained in:
Jared Tabor 2016-05-09 16:57:21 -04:00
parent cb855de950
commit 92bb67ae26
3 changed files with 8 additions and 6 deletions

View File

@ -51,8 +51,8 @@
.Form-title--is_superuser{
height:15px;
color: @btn-txt;
background-color: @btn-bg;
color: @default-interface-txt;
background-color: @default-list-header-bg;
border-radius: 5px;
border: 1px solid @btn-bord;
font-size: 10px;
@ -164,6 +164,11 @@
max-width: none;
}
.Form-formGroup--checkbox{
display: flex;
align-items: flex-end;
}
.Form-subForm {
width: 100%;
margin-bottom: 15px;

View File

@ -24,10 +24,6 @@ export default
scope: scope
});
if (scope.removePostRefresh) {
scope.removePostRefresh();
}
scope.removePostRefresh = scope.$on('PostRefresh', function () {
Wait('stop');
if (scope.notification_templates) {

View File

@ -787,6 +787,7 @@ angular.module('FormGenerator', [GeneratorHelpers.name, 'Utilities', listGenerat
if ((!field.readonly) || (field.readonly && options.mode === 'edit')) {
html += "<div class='form-group Form-formGroup ";
html += (field.type === "checkbox") ? "Form-formGroup--checkbox" : "";
html += (field['class']) ? (field['class']) : "";
html += "'";
html += (field.ngShow) ? this.attr(field, 'ngShow') : "";