dash: Update style so running apps keep the highlight on hover
Using "background" for the hover state overwrites the "background-image" property of running apps. Use "background-color" in hover instead, so the background image is kept during hover. Apply the same fix to the selection indicator for search results.
This commit is contained in:
parent
940f06fb32
commit
c239d3bb1b
@ -510,13 +510,13 @@ StTooltip StLabel {
|
|||||||
|
|
||||||
.app-well-app:selected > .overview-icon,
|
.app-well-app:selected > .overview-icon,
|
||||||
.search-result-content:selected > .overview-icon {
|
.search-result-content:selected > .overview-icon {
|
||||||
background: rgba(255,255,255,0.33);
|
background-color: rgba(255,255,255,0.33);
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-well-app:hover > .overview-icon,
|
.app-well-app:hover > .overview-icon,
|
||||||
.remove-favorite:hover > .overview-icon,
|
.remove-favorite:hover > .overview-icon,
|
||||||
.search-result-content:hover > .overview-icon {
|
.search-result-content:hover > .overview-icon {
|
||||||
background: rgba(255,255,255,0.1);
|
background-color: rgba(255,255,255,0.1);
|
||||||
text-shadow: black 0px 2px 2px;
|
text-shadow: black 0px 2px 2px;
|
||||||
transition-duration: 100;
|
transition-duration: 100;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user