9699c270
梁灏
add Poptip component
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
@poptip-prefix-cls: ~"@{css-prefix}poptip";
@poptip-arrow: ~"@{poptip-prefix-cls}-arrow";
@poptip-max-width: 250px;
@poptip-arrow-width: 5px;
@poptip-arrow-outer-width: (@poptip-arrow-width + 1);
@poptip-distance: @poptip-arrow-width - 1 + 4;
//@poptip-arrow-color: fadein(@border-color-base, 5%);
@poptip-arrow-color: hsla(0,0%,85%,.5);
.@{poptip-prefix-cls} {
display: inline-block;
&-rel{
display: inline-block;
position: relative;
}
&-title {
margin: 0;
|
3fa1c31e
梁灏
optimize Poptip s...
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
padding: 8px 16px;
position: relative;
&:after{
content: '';
display: block;
height: 1px;
position: absolute;
left: 8px;
right: 8px;
bottom: 0;
background-color: @border-color-split;
}
&-inner{
color: @title-color;
font-size: @font-size-base;
}
|
9699c270
梁灏
add Poptip component
|
38
39
40
|
}
&-body{
|
613f5243
梁灏
update Poptip
|
41
42
43
44
|
padding: 8px 16px;
&-content{
overflow: auto;
|
3fa1c31e
梁灏
optimize Poptip s...
|
45
46
47
48
|
&-inner{
color: @text-color;
}
|
613f5243
梁灏
update Poptip
|
49
50
51
52
53
54
55
|
}
}
&-inner{
width: 100%;
background-color: #fff;
background-clip: padding-box;
|
3fa1c31e
梁灏
optimize Poptip s...
|
56
|
//border: 1px solid @border-color-split;
|
613f5243
梁灏
update Poptip
|
57
58
59
|
border-radius: @border-radius-small;
box-shadow: @shadow-base;
white-space: nowrap;
|
9699c270
梁灏
add Poptip component
|
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
}
&-popper{
min-width: 150px;
font-size: @font-size-small;
.popper(@poptip-arrow, @poptip-arrow-width, @poptip-distance, @poptip-arrow-color);
&[x-placement^="top"] .@{poptip-arrow}:after {
content: " ";
bottom: 1px;
margin-left: -@poptip-arrow-width;
border-bottom-width: 0;
border-top-color: #fff;
}
&[x-placement^="right"] .@{poptip-arrow}:after {
content: " ";
left: 1px;
bottom: -@poptip-arrow-width;
border-left-width: 0;
border-right-color: #fff;
}
&[x-placement^="bottom"] .@{poptip-arrow}:after {
content: " ";
top: 1px;
margin-left: -@poptip-arrow-width;
border-top-width: 0;
border-bottom-color: #fff;
}
&[x-placement^="left"] .@{poptip-arrow}:after {
content: " ";
right: 1px;
border-right-width: 0;
border-left-color: #fff;
bottom: -@poptip-arrow-width;
}
}
|
9699c270
梁灏
add Poptip component
|
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
&-arrow{
&, &:after{
display: block;
width: 0;
height: 0;
position: absolute;
border-color: transparent;
border-style: solid;
}
}
&-arrow {
border-width: @poptip-arrow-outer-width;
}
&-arrow:after{
content: "";
border-width: @poptip-arrow-width;
}
&-confirm &-popper{
max-width: 300px;
}
&-confirm &-inner{
white-space: normal;
|
9699c270
梁灏
add Poptip component
|
123
124
125
|
}
&-confirm &-body{
|
613f5243
梁灏
update Poptip
|
126
|
padding: 16px 16px 8px;
|
9699c270
梁灏
add Poptip component
|
127
|
.ivu-icon{
|
3fa1c31e
梁灏
optimize Poptip s...
|
128
|
font-size: 16px;
|
9699c270
梁灏
add Poptip component
|
129
|
color: @warning-color;
|
3fa1c31e
梁灏
optimize Poptip s...
|
130
|
line-height: 18px;
|
9699c270
梁灏
add Poptip component
|
131
132
133
134
135
136
137
138
139
140
|
position: absolute;
}
&-message{
padding-left: 20px;
}
}
&-confirm &-footer{
text-align: right;
|
613f5243
梁灏
update Poptip
|
141
|
padding: 8px 16px 16px;
|
9699c270
梁灏
add Poptip component
|
142
143
144
145
146
|
button {
margin-left: 4px;
}
}
}
|