mirror of https://github.com/ElemeFE/element
TimePicker: fix icon style, fixed #92
parent
464efde787
commit
0c01aea528
|
@ -7,6 +7,9 @@
|
|||
- 修复 Select 多选时选项变为空数组后 placeholder 不出现的问题
|
||||
- 修复 Time Picker 时间选择可滚动
|
||||
- 修复 Tooltip 有时会错位的问题
|
||||
- 修复 丢失的组件 css 文件
|
||||
- 修复 Table 在 Safari 下边框没对齐
|
||||
- 修复 TimePicker 图标样式被默认图标样式覆盖
|
||||
|
||||
#### 非兼容性更新
|
||||
- Select 组件样式的 `display` 属性默认值修改为 `block`
|
||||
|
|
|
@ -68,7 +68,7 @@
|
|||
padding: 0;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
|
||||
.demo-date-picker .block {
|
||||
padding: 30px 0;
|
||||
text-align: center;
|
||||
|
@ -78,7 +78,7 @@
|
|||
border-right: none;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.demo-date-picker .demonstration {
|
||||
display: block;
|
||||
color: #8492a6;
|
||||
|
@ -154,7 +154,7 @@
|
|||
|
||||
通过扩展基础的日期选择,可以选择周、月、年
|
||||
|
||||
:::demo
|
||||
:::demo
|
||||
```html
|
||||
<div class="block">
|
||||
<span class="demonstration">周</span>
|
||||
|
@ -188,7 +188,7 @@
|
|||
|
||||
可在一个选择器中便捷地选择一个时间范围
|
||||
|
||||
:::demo
|
||||
:::demo
|
||||
```html
|
||||
<template>
|
||||
<div class="block">
|
||||
|
|
|
@ -43,16 +43,18 @@
|
|||
}
|
||||
|
||||
@e trigger {
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
display: inline-block;
|
||||
width: 20px;
|
||||
right: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
color: var(--datepicker-trigger-color);
|
||||
font-size: 13px;
|
||||
line-height: 38px;
|
||||
&.el-icon {
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
display: inline-block;
|
||||
width: 20px;
|
||||
right: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
color: var(--datepicker-trigger-color);
|
||||
font-size: 13px;
|
||||
line-height: 38px;
|
||||
}
|
||||
}
|
||||
|
||||
@e clear {
|
||||
|
|
Loading…
Reference in New Issue