AMBARI-20455. Need to improve log viewing on workflow manager (Madhan Mohan Reddy via pallavkul)
Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/5fb35c94 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/5fb35c94 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/5fb35c94 Branch: refs/heads/branch-feature-AMBARI-12556 Commit: 5fb35c94b643a24d63df278ac4b7ad50e44b0545 Parents: 3c9ebb6 Author: pallavkul <[email protected]> Authored: Wed Mar 15 16:52:10 2017 +0530 Committer: pallavkul <[email protected]> Committed: Wed Mar 15 16:52:10 2017 +0530 ---------------------------------------------------------------------- .../src/main/resources/ui/app/styles/app.less | 25 ++++++++++++++++++++ 1 file changed, 25 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/5fb35c94/contrib/views/wfmanager/src/main/resources/ui/app/styles/app.less ---------------------------------------------------------------------- diff --git a/contrib/views/wfmanager/src/main/resources/ui/app/styles/app.less b/contrib/views/wfmanager/src/main/resources/ui/app/styles/app.less index 0d96af4..837276b 100644 --- a/contrib/views/wfmanager/src/main/resources/ui/app/styles/app.less +++ b/contrib/views/wfmanager/src/main/resources/ui/app/styles/app.less @@ -1775,3 +1775,28 @@ input:invalid { top: 5px; position: relative; } +#stackTrace { + word-wrap: break-word; +} +.dismissable-error-close { + font-size: 21px; + font-weight: bold; + line-height: 1; + -webkit-appearance: none; + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + position: relative; + top: 4px; + right: -9px; + color: inherit; +} + +.dismissable-error-close:focus, .dismissable-error-close:hover { + color: #000; + text-decoration: none; + cursor: pointer; + filter: alpha(opacity=50); + opacity: .5; +}
