Continuing audit work

This commit is contained in:
Ken Hoes
2016-07-26 09:12:50 -04:00
parent a4b4c797de
commit d5674672f5
3 changed files with 5 additions and 4 deletions

View File

@@ -144,13 +144,13 @@ a:focus {
cursor: not-allowed; cursor: not-allowed;
} }
/* Bring primary (blue) buttons in line with link colors */ /* Bring primary (green) buttons in line with link colors */
.btn-primary { .btn-primary {
background-color: @default-link; background-color: @default-succ;
} }
.btn-primary:hover { .btn-primary:hover {
background-color: @default-link-hov; background-color: @default-succ-hov;
} }
/* List Actions column */ /* List Actions column */

View File

@@ -384,6 +384,7 @@ table, tbody {
.List-action--showTooltipOnDisabled { .List-action--showTooltipOnDisabled {
display: inline-block; display: inline-block;
cursor: not-allowed;
} }
.List-action--showTooltipOnDisabled .btn[disabled] { .List-action--showTooltipOnDisabled .btn[disabled] {

View File

@@ -314,7 +314,7 @@ export default
ngClick: 'submitQuestion($event)', ngClick: 'submitQuestion($event)',
ngDisabled: true, ngDisabled: true,
'class': 'btn btn-sm Form-saveButton', 'class': 'btn btn-sm Form-saveButton',
label: '{{editQuestionIndex === null ? "ADD" : "UPDATE"}}' label: '{{editQuestionIndex === null ? "+ ADD" : "UPDATE"}}'
} }
} }