diff options
| author | LV-426 <lv-426@taproot.org.il> | 2015-04-06 16:32:45 +0300 |
|---|---|---|
| committer | LV-426 <lv-426@taproot.org.il> | 2015-04-06 16:36:29 +0300 |
| commit | 484cd5faa683130149706b8ecd4782e0ff7b9d11 (patch) | |
| tree | 343d4537150b25e2f165a9a9a83e79bdcac2f760 /res/client/css/partials | |
| parent | 748f1c5d337040433c6c441afab579faf5c934e0 (diff) | |
filter menu: fix position, simplify HTML
Diffstat (limited to 'res/client/css/partials')
| -rw-r--r-- | res/client/css/partials/dropdown-menu.scss | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/res/client/css/partials/dropdown-menu.scss b/res/client/css/partials/dropdown-menu.scss index 49b39ec8..ba1dfb63 100644 --- a/res/client/css/partials/dropdown-menu.scss +++ b/res/client/css/partials/dropdown-menu.scss @@ -31,10 +31,31 @@ cursor: default; } +.menu__type-filter_item { + padding-left: 10px; + text-align: left; + + &:hover { + background-color: lightgray; + } + + & input { + position: relative; + left: -3px; + top: 3px; + } +} + #menu__type-filter { background-color: $white; + box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.3); position: absolute; right: 155px; top: 0; - width: 200px; + width: 150px; +} + +#menu__type-filter_header { + background: darkgray; + font-weight: bold; } |
