We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e28c3f commit a4c82d7Copy full SHA for a4c82d7
src/assets/stylus/main.styl
@@ -15,6 +15,8 @@ table.v-table
15
tbody
16
tr
17
cursor:pointer !important
18
+ &.current-row
19
+ background-color: #ddd
20
&.row-active
21
// box-shadow:4px -1px 0px 0px rgb(76, 175, 80) inset
22
&.row-inactive
src/crud/components/DataTableRow.vue
@@ -111,7 +111,7 @@ export default {
111
},
112
currentClass(itemId) {
113
let currentId = this.currentItemId
114
- return itemId == currentId ? 'secondary' : ''
+ return itemId == currentId ? 'current-row' : ''
115
116
rowDblclickAction(item, index) {
117
if(this.editButton){
0 commit comments