summaryrefslogtreecommitdiff
path: root/res/client
diff options
context:
space:
mode:
authorOfer Lehr <ofer@oferlehr.com>2015-02-05 10:46:30 +0200
committerOfer Lehr <ofer@oferlehr.com>2015-02-05 10:46:30 +0200
commit3ecb153fbfee441c880e3f08aed80026b6c60184 (patch)
treebe18c1480ce2880ca3abfbd41774ebc3664df4a0 /res/client
parentdc4a4a74789ba6b7bc48920a3bc5cc8a337cf87f (diff)
added dropdown menu scss partial
half finished - still with default styling of the check boxes and without type icons
Diffstat (limited to 'res/client')
-rw-r--r--res/client/css/partials/dropdown-menu.scss33
1 files changed, 33 insertions, 0 deletions
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