mirror of https://github.com/apache/nifi.git
NIFI-4587 - Updating styles to allow for newlines in Process Group, Processor, Controller Service, and Reporting Task comments.
Signed-off-by: Pierre Villard <pierre.villard.fr@gmail.com> This closes #2261.
This commit is contained in:
parent
37ef2839e0
commit
9ecb26a52b
|
@ -209,7 +209,7 @@ label {
|
|||
color: #728e9b;
|
||||
}
|
||||
|
||||
input[type=text], input[type=password], textarea {
|
||||
input[type=text], input[type=password] {
|
||||
background-color: #eaeef0;
|
||||
border: 1px solid #eaeef0;
|
||||
font-family: Roboto, sans-serif;
|
||||
|
@ -235,11 +235,22 @@ input:focus, textarea:focus {
|
|||
}
|
||||
|
||||
textarea {
|
||||
overflow: hidden;
|
||||
background-color: #eaeef0;
|
||||
border: 1px solid #eaeef0;
|
||||
font-family: Roboto, sans-serif;
|
||||
font-size: 13px !important;
|
||||
padding: 10px 10px;
|
||||
resize: vertical;
|
||||
height: 32px;
|
||||
width: 100%;
|
||||
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
|
||||
-moz-box-sizing: border-box; /* Firefox, other Gecko */
|
||||
box-sizing: border-box;
|
||||
color: #262626;
|
||||
font-size: 13px !important;
|
||||
white-space: pre-wrap;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
ul.property-info {
|
||||
|
|
|
@ -150,6 +150,11 @@ div.controller-service-canceling {
|
|||
height: 100%;
|
||||
}
|
||||
|
||||
#read-only-controller-service-comments {
|
||||
height: 100%;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
/*
|
||||
Disable dialog
|
||||
*/
|
||||
|
|
|
@ -85,6 +85,10 @@
|
|||
height: 100px;
|
||||
}
|
||||
|
||||
#read-only-process-group-comments {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
#process-group-controller-services-tab-content {
|
||||
top: 32px;
|
||||
}
|
|
@ -34,6 +34,7 @@
|
|||
|
||||
#read-only-processor-comments {
|
||||
height: 100%;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
#read-only-processor-bundle {
|
||||
|
|
|
@ -77,4 +77,9 @@ input.reporting-task-scheduling-period {
|
|||
|
||||
#reporting-task-comments {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#read-only-reporting-task-comments {
|
||||
height: 100%;
|
||||
white-space: pre-wrap;
|
||||
}
|
Loading…
Reference in New Issue