File tree 4 files changed +25
-7
lines changed
examples/sites/demos/pc/app/tooltip
4 files changed +25
-7
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,6 @@ const disabled = ref(false)
80
80
cursor : pointer ;
81
81
}
82
82
.ellipsis :hover {
83
- background-color : #c0c0c0 ;
83
+ background-color : #5291ff ;
84
84
}
85
85
</style >
Original file line number Diff line number Diff line change @@ -89,6 +89,6 @@ export default {
89
89
cursor : pointer ;
90
90
}
91
91
.ellipsis :hover {
92
- background-color : #c0c0c0 ;
92
+ background-color : #5291ff ;
93
93
}
94
94
</style >
Original file line number Diff line number Diff line change 29
29
display : table-row ;
30
30
vertical-align : inherit ;
31
31
border-color : inherit ;
32
+ border-bottom : 1px solid var (--tv-Table-border-color );
32
33
}
33
34
34
35
tbody {
57
58
text-align : center ;
58
59
vertical-align : middle ;
59
60
color : var (--tv-Table-nodata-text-color );
60
- background-color : transparent ;
61
+ background-color : transparent ;
61
62
}
62
63
}
63
64
}
115
116
.@{table-cell-prefix-cls} {
116
117
.@{svg-prefix-cls} {
117
118
font-size : var (--tv-Table-icon-font-size );
118
- fill : var (--tv-Table-border-color );
119
+ border-radius : var (--tv-Table-check-icon-border-radius );
120
+ & path :last-child {
121
+ fill : var (--tv-Table-border-color );
122
+ }
119
123
120
- & .is-check {
121
- fill : var (--tv-Table-check-icon-color );
124
+ & path :first-child {
125
+ fill : transparent ;
126
+ }
127
+ & .is-check {
128
+ & path :last-child {
129
+ fill : var (--tv-Table-half-check-icon-color );
130
+ }
131
+
132
+ & path :first-child {
133
+ fill : var (--tv-Table-check-icon-color );
134
+ }
122
135
}
123
136
}
124
137
}
Original file line number Diff line number Diff line change 28
28
// 表格单元格字体大小
29
29
--tv-Table-td-font-size : var (--tv-font-size-default , 14px );
30
30
// 表格边框颜色
31
- --tv-Table-border-color : var (--tv-color-border , #c2c2c2 );
31
+ --tv-Table-border-color : var (--tv-color-border-divider );
32
32
// 表头背景颜色
33
33
--tv-Table-thead-bg-color : var (--tv-color-bg-header , #f5f5f5 );
34
34
// 表格图标字体大小
35
35
--tv-Table-icon-font-size : var (--tv-font-size-lg , 16px );
36
36
// 表格复选框选中图标颜色
37
37
--tv-Table-check-icon-color : var (--tv-color-icon-control-active , #1476ff );
38
+ // 表格复选框半选色
39
+ --tv-Table-half-check-icon-color : var (--tv-color-text-inverse );
40
+ // 表格复选框边框圆角
41
+ --tv-Table-check-icon-border-radius : var (--tv-border-radius-sm );
42
+
38
43
}
You can’t perform that action at this time.
0 commit comments