CatalogContents: css list changes

This commit is contained in:
Seth Ladygo
2019-05-20 01:39:15 -07:00
parent acf8cfd2e6
commit 729400197a

View File

@ -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>