Commit 65a02502 authored by Leopoldthecoder's avatar Leopoldthecoder Committed by cinwell.li

Slider: fix display issue inside Form

parent 07345868
......@@ -9,7 +9,8 @@
- 修复 Clickoutside 报错, #729
- 修复 DatePicker 选择日期范围时当选中同一天再调整时间会出错
- 更新 TimePicker 滚动条在 IE10+ 下隐藏
- 新增 Dropdown 新增 command api #432
- 新增 Dropdown 的 command api #432
- 修复 Slider 在 Form 中的显示问题
### 1.0.0-rc.8
......
......@@ -60,7 +60,7 @@
& .el-alert__description {
color: #fff;
font-size: var(--alert-description-font-size-font-size);
font-size: var(--alert-description-font-size);
margin: 5px 0 0 0;
}
......
......@@ -492,7 +492,7 @@
--slider-stop-background-color: var(--color-grey);
--slider-disable-color: var(--color-grey);
--slider-margin: 20px 0;
--slider-margin: 16px 0;
--slider-border-radius: 3px;
--slider-height: 4px;
--slider-button-size: 12px;
......
......@@ -112,7 +112,7 @@
}
&.el-icon-circle-cross {
color: var(--msgbox-error-color);
color: var(--msgbox-danger-color);
}
}
}
......
......@@ -81,7 +81,21 @@
text-align: center;
.el-tooltip {
margin-top: 9px;
line-height: 1;
height: 100%;
display: block;
}
.el-tooltip::after {
content: '';
width: 0;
height: 100%;
display: inline-block;
vertical-align: middle;
}
.el-tooltip__rel {
vertical-align: middle;
}
&:hover,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment