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

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

    &.colorpicker {
        z-index: 2500;
    }

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

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

    > li > a {
        color: inherit;

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