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
| .color-sketch-block {
| height: 25px;
| width: 100%;
|
| .color-sketch-block-box {
| display: inline-block;
| width: calc(100% - 160px);
| height: 100%;
| border-radius: 2px;
| background: #ffffff url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAMUlEQVQ4T2NkYGAQYcAP3uCTZhw1gGGYhAGBZIA/nYDCgBDAm9BGDWAAJyRCgLaBCAAgXwixzAS0pgAAAABJRU5ErkJggg==') left center;
| }
| .color-sketch-block-inner {
| display: inline-block;
| cursor: pointer;
| border-radius: 2px;
| box-shadow: 0 0 0 1px rgba(0, 0, 0, .1);
| width: 100%;
| height: 100%;
| }
| .color-sketch-value {
| display: inline-block;
| width: 160px;
| padding-left: 10px;
| height: 25px;
| line-height: 25px;
| vertical-align: top;
| white-space: nowrap;
| overflow: visible;
| }
| }
|
| .color-sketch-popover {
| z-index: 1090!important;
| .ant-popover-inner-content {
| padding: 0;
| .sketch-picker {
| width: 250px!important;
| }
| }
| }
|
|