mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-11-30 03:07:36 +08:00
Merge pull request #2021 from QingWei-Li/fix/datepicker-editor
DatePicker: input display style changes to block, fixed #2018
This commit is contained in:
commit
436c38fee6
@ -1,3 +1,10 @@
|
||||
<style>
|
||||
.demo-date-picker .el-input {
|
||||
width: 180px;
|
||||
margin: auto;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
module.exports = {
|
||||
data() {
|
||||
|
@ -1,3 +1,10 @@
|
||||
<style>
|
||||
.demo-datetime-picker .el-input {
|
||||
width: 180px;
|
||||
margin: auto;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
module.exports = {
|
||||
data() {
|
||||
|
@ -1,3 +1,10 @@
|
||||
<style>
|
||||
.demo-time-picker .el-input {
|
||||
width: 180px;
|
||||
display: inline-block;
|
||||
}
|
||||
</style>
|
||||
|
||||
## TimePicker
|
||||
|
||||
Use Time Picker for time input.
|
||||
|
@ -1,3 +1,10 @@
|
||||
<style>
|
||||
.demo-date-picker .el-input {
|
||||
width: 180px;
|
||||
margin: auto;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
module.exports = {
|
||||
data() {
|
||||
|
@ -1,3 +1,10 @@
|
||||
<style>
|
||||
.demo-datetime-picker .el-input {
|
||||
width: 180px;
|
||||
margin: auto;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
module.exports = {
|
||||
data() {
|
||||
|
@ -1,4 +1,8 @@
|
||||
<style>
|
||||
.demo-time-picker .el-input {
|
||||
width: 180px;
|
||||
display: inline-block;
|
||||
}
|
||||
.demo-box {
|
||||
.el-date-editor + .el-date-editor {
|
||||
margin-left: 10px;
|
||||
|
@ -3,9 +3,6 @@
|
||||
|
||||
@component-namespace el {
|
||||
@b date-editor {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
|
||||
.el-picker-panel {
|
||||
position: absolute;
|
||||
min-width: 180px;
|
||||
|
Loading…
Reference in New Issue
Block a user