From 3ecb153fbfee441c880e3f08aed80026b6c60184 Mon Sep 17 00:00:00 2001 From: Ofer Lehr Date: Thu, 5 Feb 2015 10:46:30 +0200 Subject: added dropdown menu scss partial half finished - still with default styling of the check boxes and without type icons --- res/client/css/partials/dropdown-menu.scss | 33 ++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 res/client/css/partials/dropdown-menu.scss diff --git a/res/client/css/partials/dropdown-menu.scss b/res/client/css/partials/dropdown-menu.scss new file mode 100644 index 00000000..798c4741 --- /dev/null +++ b/res/client/css/partials/dropdown-menu.scss @@ -0,0 +1,33 @@ +.dropdown-menu { + width: 180px; + color: $dark-grey; + font-size: $h3-size; + list-style-type: none; + margin-top: 6px; + border: 1px solid $mid-grey; + background: white; + z-index: 100; + @include rz-box-shadow(0px, 3px, 6px, 0px, rgba(0,0,0,0.3) ); + } + +.dropdown-item { + padding: 6px 0px 6px 18px; + cursor: pointer; +} + +.dropdown-item:hover { + padding-left: 16px; + background-color: $light-grey; + border-left: 2px solid $cyan; + @include rz-box-sizing-border; +} + +.dropdown-menu-heading { + font-family: $bold-font-family; + border-bottom: 1px solid $mid-light-grey; +} + +.dropdown-menu-heading:hover { + padding: 6px 0px 6px 18px; + cursor: default; +} \ No newline at end of file -- cgit v1.3.1