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

View File

@@ -24,10 +24,6 @@ export default
scope: scope scope: scope
}); });
if (scope.removePostRefresh) {
scope.removePostRefresh();
}
scope.removePostRefresh = scope.$on('PostRefresh', function () { scope.removePostRefresh = scope.$on('PostRefresh', function () {
Wait('stop'); Wait('stop');
if (scope.notification_templates) { 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')) { if ((!field.readonly) || (field.readonly && options.mode === 'edit')) {
html += "<div class='form-group Form-formGroup "; html += "<div class='form-group Form-formGroup ";
html += (field.type === "checkbox") ? "Form-formGroup--checkbox" : "";
html += (field['class']) ? (field['class']) : ""; html += (field['class']) ? (field['class']) : "";
html += "'"; html += "'";
html += (field.ngShow) ? this.attr(field, 'ngShow') : ""; html += (field.ngShow) ? this.attr(field, 'ngShow') : "";