1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-08-07 18:25:45 +08:00

shading in the table when selecting mobile mode (#781)

* shading in the table when selecting mobil mode

* suppurt document status
This commit is contained in:
Elsio Sanchez 2021-04-23 18:12:15 -04:00 committed by GitHub
parent fc98aafd01
commit 3ddba455ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 2 deletions

View File

@ -139,7 +139,6 @@ export default {
<style scoped>
.el-table {
background-color: #FFFFFF;
cursor: pointer;
}
.search_recent {
@ -172,3 +171,17 @@ export default {
float: right;
}
</style>
<style>
.el-table .cell {
-webkit-box-sizing: border-box;
box-sizing: border-box;
overflow: hidden;
text-overflow: ellipsis;
white-space: normal;
word-break: break-all;
line-height: 23px;
padding-left: 10px;
padding-right: 10px;
cursor: pointer;
}
</style>

View File

@ -139,7 +139,6 @@ export default {
<style scoped>
.el-table {
background-color: #FFFFFF;
cursor: pointer;
}
.search_recent {
width: 50% !important;
@ -171,3 +170,17 @@ export default {
float: right;
}
</style>
<style>
.el-table .cell {
-webkit-box-sizing: border-box;
box-sizing: border-box;
overflow: hidden;
text-overflow: ellipsis;
white-space: normal;
word-break: break-all;
line-height: 23px;
padding-left: 10px;
padding-right: 10px;
cursor: pointer;
}
</style>