Add channel hover style as test
This commit is contained in:
26
lukeflix.css
26
lukeflix.css
@@ -2534,3 +2534,29 @@ div[data-role="controlgroup"] a[data-role="button"]:last-child {
|
|||||||
.padded-top {
|
.padded-top {
|
||||||
padding-top: 0em !important;
|
padding-top: 0em !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Test for Channel Selection Hover */
|
||||||
|
.guide-channelHeaderCell.itemAction .guideChannelNumber {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
width: 1.8em;
|
||||||
|
height: 1.8em;
|
||||||
|
margin: 0 auto;
|
||||||
|
border-radius: 50%;
|
||||||
|
background-color: transparent;
|
||||||
|
line-height: 1;
|
||||||
|
transition: background-color 0.15s ease, color 0.15s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Hover — white circle, black number */
|
||||||
|
.guide-channelHeaderCell.itemAction:hover .guideChannelNumber {
|
||||||
|
background-color: #fff;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Click — red circle */
|
||||||
|
.guide-channelHeaderCell.itemAction:active .guideChannelNumber {
|
||||||
|
background-color: #e50914;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user