Updated Branches: refs/heads/ui-restyle 17f1f589c -> 942caf29a
Style main side nav bar Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/942caf29 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/942caf29 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/942caf29 Branch: refs/heads/ui-restyle Commit: 942caf29a78271affe0e1c75de510da835ed61bb Parents: 17f1f58 Author: Brian Federle <[email protected]> Authored: Tue Sep 24 14:58:19 2013 -0700 Committer: Brian Federle <[email protected]> Committed: Tue Sep 24 14:58:19 2013 -0700 ---------------------------------------------------------------------- ui/stylesheets/cloudstack.scss | 38 ++++++++++++++++++++++++++++++++++++- ui/stylesheets/csui/_csui.scss | 5 +++++ 2 files changed, 42 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/942caf29/ui/stylesheets/cloudstack.scss ---------------------------------------------------------------------- diff --git a/ui/stylesheets/cloudstack.scss b/ui/stylesheets/cloudstack.scss index b5656f1..1a2ac57 100644 --- a/ui/stylesheets/cloudstack.scss +++ b/ui/stylesheets/cloudstack.scss @@ -123,14 +123,50 @@ body { width: 20%; height: 100%; float: left; + overflow: auto; ul { - margin: 60px 0 0 0; + margin: 50px 0 0 0; padding: 0; li { + font-size: 12px; list-style: none; text-indent: 10px; + font-weight: bold; + color: lighten(black, 20%); + cursor: pointer; + text-shadow: 0px 1px 1px darken(white, 10%); + padding-left: 20px; + padding-right: 20px; + + span { + display: block; + border-bottom: 1px solid #a7a7a7; + padding-top: 10px; + padding-bottom: 10px; + box-shadow: 0px 1px 0px white; + } + + span.icon { + display: none; + } + + &:hover { + background: #3f3f3f; + color: white; + text-shadow: 0px 1px 1px black; + box-shadow: inset 0px 0px 10px black; + position: relative; + z-index: 3; + top: -1px; + padding-top: 1px; + + span { + border-bottom: none; + box-shadow: none; + } + } } } } http://git-wip-us.apache.org/repos/asf/cloudstack/blob/942caf29/ui/stylesheets/csui/_csui.scss ---------------------------------------------------------------------- diff --git a/ui/stylesheets/csui/_csui.scss b/ui/stylesheets/csui/_csui.scss index a0a0d54..b013fe2 100644 --- a/ui/stylesheets/csui/_csui.scss +++ b/ui/stylesheets/csui/_csui.scss @@ -9,6 +9,11 @@ font-family: 'Noto Sans'; src: url('../fonts/Noto_Sans/NotoSans-Regular.ttf'); } +@font-face { + font-family: 'Noto Sans'; + src: url('../fonts/Noto_Sans/NotoSans-Bold.ttf'); + font-weight: bold; +} // Core style html, body {
