Administrator
2022-09-14 58d006e05dcf2a20d0ec5367dd03d66a61db6849
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
61
62
63
64
65
.enable_simple_color_picker() when(@enable-simple-color-picker = true) {
 
.dropdown-colorpicker {
 > .dropdown-menu {
    padding: 4px;
    min-width: 130px;
    max-width: 130px;
    
    
    top: 80%;
    left: -7px;
    &.dropdown-menu-right {
        right: -7px;
        left: auto;
    }
    
     > li {
        display:block;
        float:left;
        width:20px; height:20px;
        margin:2px;
         > .colorpick-btn {
              display:block;
              width:20px; height:20px;
              
              margin:0; padding:0;          
              border-radius:0;
              position:relative;
              
              .transition(~"all ease 0.1s");
              
              &:hover {
                 text-decoration:none;
                 .opacity(0.8);
                 .scale(1.08, 1.08);
              }
              &.selected:after {
                content: "\f00c";
                display: inline-block;
                font-family: FontAwesome;
                font-size: @font-size-colorpicker-check;
                color: #FFF;
                
                position:absolute; left:0; right:0; text-align:center; line-height:20px;
              }
         }
        
     }
 }
}
 
.btn-colorpicker {
    display:inline-block;
    width:20px; height:20px;
    background-color:#DDD;
    vertical-align:middle;
 
    border-radius:0;
}
 
 
 
 
}
.enable_simple_color_picker();