mirror of https://github.com/apache/nifi.git
NIFI-3808:
- Making the selector for the enable/disable controller service state more specific. Previously name was too general and was affect other parts of the application. Signed-off-by: Scott Aslan <scottyaslan@gmail.com> This closes #1759
This commit is contained in:
parent
ee8dc7640f
commit
f0dfcc180d
|
@ -79,6 +79,16 @@ ul.referencing-component-listing li {
|
|||
white-space: nowrap;
|
||||
}
|
||||
|
||||
div.referencing-component-state.disabled:before {
|
||||
content: '\e802';
|
||||
font-family: flowfont;
|
||||
}
|
||||
|
||||
div.referencing-component-state.enabled:before {
|
||||
content: '\f0e7';
|
||||
font-family: FontAwesome;
|
||||
}
|
||||
|
||||
div.referencing-component-bulletins {
|
||||
float: left;
|
||||
margin-left: 5px;
|
||||
|
|
|
@ -91,11 +91,6 @@ div.context-menu-provenance {
|
|||
text-shadow: 0 0 4px rgba(255,255,255,1);
|
||||
}
|
||||
|
||||
.disabled:before {
|
||||
content: '\e802';
|
||||
font-family: flowfont;
|
||||
}
|
||||
|
||||
.enabled {
|
||||
float: left;
|
||||
color: #44a3cf !important;
|
||||
|
@ -105,11 +100,6 @@ div.context-menu-provenance {
|
|||
text-shadow: 0 0 4px rgba(255,255,255,1);
|
||||
}
|
||||
|
||||
.enabled:before {
|
||||
content: '\f0e7';
|
||||
font-family: FontAwesome;
|
||||
}
|
||||
|
||||
.stopped {
|
||||
float: left;
|
||||
color: #d18686 !important;
|
||||
|
|
Loading…
Reference in New Issue