blob: c03c949962cb0ea53d9f2bedbfbb442921ff5a2a (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
.icons-step {
.w-sdc-form {
padding-top: 0px;
padding-bottom: 0px;
.selected-icon-container {
text-align: left;
border: 1px solid #cfcfcf;
clear: both;
margin-bottom: 15px;
padding-left: 3px;
padding-bottom: 3px;
.selected-icon {
margin: 8px 5px 0px 6px;
}
}
.suggested-icons-container {
text-align: left;
border: 1px solid #cfcfcf;
clear: both;
padding-left: 3px;
height: 340px;
margin-bottom: 0px;
.suggested-icon-wrapper {
margin: 8px 5px 0px 6px;
display: inline-block;
&.selected {
border: 1px solid @color_p;
border-radius: 25px;
box-shadow: 0 0 2px #888;
display: inline-block;
line-height: 0px;
padding: 2px;
}
}
.suggested-icon {
// margin: 8px 5px 0px 6px;
display: inline-block;
&.disable{
opacity: 0.4;
}
}
}
.icons-label {
float: left;
}
}
}
|