Make CSS more consistent with self, prev release
Project: http://git-wip-us.apache.org/repos/asf/storm/repo Commit: http://git-wip-us.apache.org/repos/asf/storm/commit/d3b2d631 Tree: http://git-wip-us.apache.org/repos/asf/storm/tree/d3b2d631 Diff: http://git-wip-us.apache.org/repos/asf/storm/diff/d3b2d631 Branch: refs/heads/nimbus-ha-branch Commit: d3b2d631a91b69eeeb8b92f554f8f1314dff1e2e Parents: dcee1e2 Author: Derek Dagit <[email protected]> Authored: Fri Mar 20 09:48:05 2015 -0500 Committer: Derek Dagit <[email protected]> Committed: Fri Mar 20 09:48:05 2015 -0500 ---------------------------------------------------------------------- storm-core/src/ui/public/css/style.css | 62 +++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/storm/blob/d3b2d631/storm-core/src/ui/public/css/style.css ---------------------------------------------------------------------- diff --git a/storm-core/src/ui/public/css/style.css b/storm-core/src/ui/public/css/style.css index df3d3db..3305959 100644 --- a/storm-core/src/ui/public/css/style.css +++ b/storm-core/src/ui/public/css/style.css @@ -27,3 +27,65 @@ .anti-forgery-token { visibility:hidden; } + +body, +.dataTables_wrapper label, +div.dataTables_info[role="status"], +.btn-default +{ + color: #6d6d6d; +} + +table.dataTable thead th, +table.dataTable.no-footer +{ + border-color: #d5d5d5; +} + +.table > tbody > tr > td { + border-top-width: 1px; +} + +table.dataTable { + border-collapse: collapse; +} + +td { + border-bottom-style: solid; + border-bottom-width: 1px; + border-color: #d5d5d5; +} + +a { + color: #0069d6; +} + +a:hover { + color: #0050a3; +} + +h1 +{ + font-weight: bold; +} + +h2 +{ + color: #404040; + font-weight: bold; +} + +table.dataTable thead .sorting_asc, +table.dataTable thead .sorting_desc { + background-color: rgba(141, 192, 219, 0.25); + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} + +.dataTables_wrapper .dataTables_paginate .paginate_button:hover, +.dataTables_wrapper .dataTables_paginate .paginate_button:active { + background: none; + background-image: none; + border-color: transparent; + box-shadow: none; +}
