CatalogContents: css list changes
This commit is contained in:
@ -219,7 +219,7 @@ export default {
|
|||||||
if (id === this.selectedSectionID) {
|
if (id === this.selectedSectionID) {
|
||||||
return 'list-item primary'
|
return 'list-item primary'
|
||||||
} else if (hovering) {
|
} else if (hovering) {
|
||||||
return 'list-item grey lighten-4'
|
return 'list-item list-hover'
|
||||||
} else {
|
} else {
|
||||||
return 'list-item'
|
return 'list-item'
|
||||||
}
|
}
|
||||||
@ -229,7 +229,7 @@ export default {
|
|||||||
if (id === this.selectedModelID) {
|
if (id === this.selectedModelID) {
|
||||||
return 'list-item primary'
|
return 'list-item primary'
|
||||||
} else if (hovering) {
|
} else if (hovering) {
|
||||||
return 'list-item grey lighten-4'
|
return 'list-item list-hover'
|
||||||
} else {
|
} else {
|
||||||
return 'list-item'
|
return 'list-item'
|
||||||
}
|
}
|
||||||
@ -239,7 +239,7 @@ export default {
|
|||||||
if (id === this.selectedMaterialID) {
|
if (id === this.selectedMaterialID) {
|
||||||
return 'list-item primary'
|
return 'list-item primary'
|
||||||
} else if (hovering) {
|
} else if (hovering) {
|
||||||
return 'list-item grey lighten-4'
|
return 'list-item list-hover'
|
||||||
} else {
|
} else {
|
||||||
return 'list-item'
|
return 'list-item'
|
||||||
}
|
}
|
||||||
@ -437,8 +437,13 @@ function addSectionDrops(myvue) {
|
|||||||
border-bottom: 1px solid #ddd;
|
border-bottom: 1px solid #ddd;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.list-hover {
|
||||||
|
background-color: #eee;
|
||||||
|
border-bottom: 1px solid #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
.list-group {
|
.list-group {
|
||||||
background-color: #f0f0ff;
|
background-color: #ccc;
|
||||||
min-height: 200px;
|
min-height: 200px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user