mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-08-10 20:39:48 +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:
parent
fc98aafd01
commit
3ddba455ab
@ -139,7 +139,6 @@ export default {
|
|||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.el-table {
|
.el-table {
|
||||||
background-color: #FFFFFF;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
.search_recent {
|
.search_recent {
|
||||||
@ -172,3 +171,17 @@ export default {
|
|||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
</style>
|
</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>
|
||||||
|
@ -139,7 +139,6 @@ export default {
|
|||||||
<style scoped>
|
<style scoped>
|
||||||
.el-table {
|
.el-table {
|
||||||
background-color: #FFFFFF;
|
background-color: #FFFFFF;
|
||||||
cursor: pointer;
|
|
||||||
}
|
}
|
||||||
.search_recent {
|
.search_recent {
|
||||||
width: 50% !important;
|
width: 50% !important;
|
||||||
@ -171,3 +170,17 @@ export default {
|
|||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
</style>
|
</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>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user