User Flag Expressions

Adds the ability to have expressions evaluated when flags are added and
removed.
This commit is contained in:
Gary Sharp
2016-11-09 20:06:24 +11:00
parent cbf16a41a6
commit 065b14b158
24 changed files with 1241 additions and 210 deletions
+7
View File
@@ -1461,6 +1461,13 @@ div.logEventsViewport table.logEventsViewport > tbody > tr > td.eventType {
#Config_JobQueues_Subjects_Update_Dialog #Config_JobQueues_Subjects_Update_Dialog_List li .remove:hover {
opacity: 1;
}
#Config_UserFlags_Show #UserFlag_OnAssignmentExpression,
#Config_UserFlags_Show #UserFlag_OnUnassignmentExpression {
height: 16px;
min-height: 16px;
overflow: hidden;
font-family: Consolas, "Courier New", monospace;
}
#Config_UserFlags_Index i {
width: 1.2857142857142858em;
text-align: center;
+30 -19
View File
@@ -261,13 +261,13 @@ table.deviceProfileTable {
border: none;
}
span.fancytree-node > span.fancytree-icon {
background: none;
display: inline-block;
font-family: FontAwesome;
font-size: 1.2em;
width: 14px;
}
span.fancytree-node > span.fancytree-icon {
background: none;
display: inline-block;
font-family: FontAwesome;
font-size: 1.2em;
width: 14px;
}
span.fancytree-ico-ef > span.fancytree-icon:before {
color: @StatusInformation;
@@ -487,10 +487,10 @@ div.logEventsViewport {
}
}
.session:hover {
border: 5px solid #6C7A87;
background-color: #DFE1F8;
}
.session:hover {
border: 5px solid #6C7A87;
background-color: #DFE1F8;
}
}
}
@@ -1169,13 +1169,13 @@ div.logEventsViewport {
border: none;
}
span.fancytree-node > span.fancytree-icon {
background: none;
display: inline-block;
font-family: FontAwesome;
font-size: 1.2em;
width: 14px;
}
span.fancytree-node > span.fancytree-icon {
background: none;
display: inline-block;
font-family: FontAwesome;
font-size: 1.2em;
width: 14px;
}
span.fancytree-ico-ef > span.fancytree-icon:before {
color: @StatusClosed;
@@ -1677,6 +1677,17 @@ div.logEventsViewport {
}
}
#Config_UserFlags_Show {
#UserFlag_OnAssignmentExpression, #UserFlag_OnUnassignmentExpression {
height: 16px;
min-height: 16px;
overflow: hidden;
font-family: @FontFamilyMono;
}
}
#Config_UserFlags_Index {
i {
width: 1.2857142857142858em;
@@ -1841,4 +1852,4 @@ div.logEventsViewport {
display: none;
}
}
}
}
File diff suppressed because one or more lines are too long
+5
View File
@@ -290,6 +290,11 @@
#UserDetailTab-Flags #userFlags td.removed {
vertical-align: middle;
}
#UserDetailTab-Flags #userFlags td.added .expressionResult,
#UserDetailTab-Flags #userFlags td.removed .expressionResult {
margin-top: 4px;
font-style: italic;
}
#UserDetailTab-Flags #userFlags td.comments {
vertical-align: middle;
}
+5
View File
@@ -267,6 +267,11 @@
td.added, td.removed {
vertical-align: middle;
.expressionResult {
margin-top: 4px;
font-style: italic;
}
}
td.comments {
File diff suppressed because one or more lines are too long