Commit f6661e2a authored by IMike's avatar IMike Committed by cinwell.li

Table: fix border style bug in FF (#3926)

linux系统FF浏览器border显示不全
parent 71f1f511
...@@ -361,6 +361,7 @@ ...@@ -361,6 +361,7 @@
& tr:nth-child(2n) { & tr:nth-child(2n) {
td { td {
background: #FAFAFA; background: #FAFAFA;
background-clip: padding-box;
} }
&.current-row td { &.current-row td {
...@@ -416,6 +417,7 @@ ...@@ -416,6 +417,7 @@
@modifier enable-row-hover { @modifier enable-row-hover {
.el-table__body tr:hover > td { .el-table__body tr:hover > td {
background-color: var(--color-extra-light-gray); background-color: var(--color-extra-light-gray);
background-clip: padding-box;
} }
} }
......
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