summaryrefslogtreecommitdiff
path: root/res/client/css/partials/dropdown-menu.scss
blob: 798c4741ed2199968561a8ef4e51595fa11d3a3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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;
}