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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
| .text-overflow {
| overflow: hidden;
| text-overflow: ellipsis;
| white-space: nowrap;
| }
|
|
| .text-custom {
| color: $custom;
| }
| .text-purple {
| color: $purple;
| }
| .text-pink {
| color: $pink;
| }
| .text-dark {
| color: $dark;
| }
| .text-white {
| color: $white;
| }
|
| .dropdown-lg {
| width: 280px;
| }
|
|
| .dropdown-menu {
| box-shadow: 0 0px 24px 0 rgba($dark, 0.06), 0 1px 0px 0 rgba($dark, 0.02);
| border: 1px solid rgba($dark, 0.05);
| }
|
| .dropdown-arrow {
| &:before {
| top: -10px;
| right: 16px;
| left: auto;
| border-right: 10px solid transparent;
| border-bottom: 10px solid $custom;
| border-left: 10px solid transparent;
| position: absolute;
| display: inline-block!important;
| content: '';
| }
| }
| .dropdown-arrow.dropdown-arrow-success {
| &:before {
| border-bottom: 10px solid $brand-success;
| }
| }
|
|
| .arrow-none {
| &:after {
| border: none;
| margin: 0 !important;
| }
| }
|
|