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
fed488ef
Commit
fed488ef
authored
Dec 09, 2016
by
Furybean
Committed by
杨奕
Dec 09, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Table: fix column[type=selection] style issue in ie9+.
parent
2dd2c793
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
2 deletions
+13
-2
build/cooking.demo.js
build/cooking.demo.js
+1
-0
packages/table/src/table-column.js
packages/table/src/table-column.js
+2
-1
packages/table/src/table.vue
packages/table/src/table.vue
+3
-1
packages/theme-default/src/table-column.css
packages/theme-default/src/table-column.css
+7
-0
No files found.
build/cooking.demo.js
View file @
fed488ef
...
...
@@ -29,6 +29,7 @@ cooking.set({
publicPath
:
process
.
env
.
CI_ENV
||
''
,
hash
:
true
,
devServer
:
{
hostname
:
'
0.0.0.0
'
,
port
:
8085
,
log
:
false
,
publicPath
:
'
/
'
...
...
packages/table/src/table-column.js
View file @
fed488ef
...
...
@@ -13,7 +13,8 @@ const defaults = {
width
:
48
,
minWidth
:
48
,
realWidth
:
48
,
order
:
''
order
:
''
,
className
:
'
el-table-column--selection
'
},
index
:
{
width
:
48
,
...
...
packages/table/src/table.vue
View file @
fed488ef
...
...
@@ -101,6 +101,7 @@
</
template
>
<
script
type=
"text/babel"
>
import
ElCheckbox
from
'
element-ui/packages/checkbox
'
;
import
Migrating
from
'
element-ui/src/mixins/migrating
'
;
import
throttle
from
'
throttle-debounce/throttle
'
;
import
debounce
from
'
throttle-debounce/debounce
'
;
...
...
@@ -160,7 +161,8 @@
components
:
{
TableHeader
,
TableBody
TableBody
,
ElCheckbox
},
methods
:
{
...
...
packages/theme-default/src/table-column.css
View file @
fed488ef
...
...
@@ -4,6 +4,13 @@
@import
"./common/var.css"
;
@component-namespace
el
{
@b
table-column
{
@m
selection
.
cell
{
padding-left
:
14px
;
padding-right
:
14px
;
}
}
@b
table-filter
{
border
:
solid
1px
#d3dce6
;
border-radius
:
2px
;
...
...
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