summaryrefslogtreecommitdiffstats
path: root/webapp/sass/components/_dropdown.scss
blob: 91d325002ea18f8ab57a45fff3d9398e0c53d521 (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
@charset 'UTF-8';

.dropdown-menu {
    border-radius: $border-rad;

    &.colorpicker {
        min-width: 125px;
        z-index: 2500;
    }

    .fa {
        @include opacity(.6);
        margin-right: 5px;
    }

    .divider {
        @include opacity(.15);
    }

    > li > a {
        color: inherit;

        &:focus,
        &:hover {
            color: inherit;
        }
    }
}