Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Element
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
林焕东
Element
Commits
dcb8a17c
Commit
dcb8a17c
authored
Oct 17, 2016
by
qingwei.li
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DatePicker: fix panel style, #318
parent
baf3d192
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
3 deletions
+15
-3
CHANGELOG.md
CHANGELOG.md
+4
-0
packages/date-picker/src/css/date-picker.css
packages/date-picker/src/css/date-picker.css
+5
-1
packages/date-picker/src/panel/date.vue
packages/date-picker/src/panel/date.vue
+6
-2
No files found.
CHANGELOG.md
View file @
dcb8a17c
...
@@ -7,6 +7,10 @@
...
@@ -7,6 +7,10 @@
-
修复 Form reset method 对日期控件不起效的问题
-
修复 Form reset method 对日期控件不起效的问题
-
修复 Dialog 和 Message Box 在 body 无溢出时错误地添加 padding-right 的问题
-
修复 Dialog 和 Message Box 在 body 无溢出时错误地添加 padding-right 的问题
-
修复 Message Box 的 prompt 在打开时会携带之前的验证状态的问题
-
修复 Message Box 的 prompt 在打开时会携带之前的验证状态的问题
-
修复 Clickoutside 性能问题 #296
-
修复 Tooltip/Popover 首次渲染的箭头位置 #412
-
修复 Autocomplete 的弹出框不会消失 #439
-
修复 DatePicker 弹出框样式溢出边框 #318
#### 非兼容性更新
#### 非兼容性更新
...
...
packages/date-picker/src/css/date-picker.css
View file @
dcb8a17c
...
@@ -26,8 +26,12 @@
...
@@ -26,8 +26,12 @@
width
:
100%
;
width
:
100%
;
}
}
@e
editor
{
@e
editor
-wrap
{
flex
:
1
;
flex
:
1
;
position
:
relative
;
}
@e
editor
{
margin
:
0
5px
;
margin
:
0
5px
;
position
:
relative
;
position
:
relative
;
border
:
1px
solid
#c0ccda
;
border
:
1px
solid
#c0ccda
;
...
...
packages/date-picker/src/panel/date.vue
View file @
dcb8a17c
...
@@ -21,12 +21,16 @@
...
@@ -21,12 +21,16 @@
</div>
</div>
<div
class=
"el-picker-panel__body"
>
<div
class=
"el-picker-panel__body"
>
<div
class=
"el-date-picker__time-header"
v-if=
"showTime"
>
<div
class=
"el-date-picker__time-header"
v-if=
"showTime"
>
<span
class=
"el-date-picker__editor-wrap"
>
<input
<input
:placehoder=
"$t('datepicker.selectDate')"
:placehoder=
"$t('datepicker.selectDate')"
type=
"text"
type=
"text"
v-model=
"visibleDate"
v-model=
"visibleDate"
class=
"el-date-picker__editor"
>
class=
"el-date-picker__editor"
>
<span
style=
"position: relative"
v-clickoutside=
"closeTimePicker"
>
</span>
<span
class=
"el-date-picker__editor-wrap"
v-clickoutside=
"closeTimePicker"
>
<input
<input
ref=
"input"
ref=
"input"
@
focus=
"timePickerVisible = true"
@
focus=
"timePickerVisible = true"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment