mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-15 04:11:47 +00:00
CSS: border radius compatibility
This commit is contained in:
@ -42,6 +42,8 @@ ytmusic-header-renderer.ytmusic-search-page {
|
|||||||
::-webkit-scrollbar {
|
::-webkit-scrollbar {
|
||||||
width: 12px;
|
width: 12px;
|
||||||
background-color: #030303;
|
background-color: #030303;
|
||||||
|
border-radius: 100px;
|
||||||
|
-moz-border-radius: 100px;
|
||||||
-webkit-border-radius: 100px;
|
-webkit-border-radius: 100px;
|
||||||
}
|
}
|
||||||
/* hover effect for both scrollbar area, and scrollbar 'thumb' */
|
/* hover effect for both scrollbar area, and scrollbar 'thumb' */
|
||||||
@ -55,9 +57,13 @@ ytmusic-header-renderer.ytmusic-search-page {
|
|||||||
border: 2px solid rgba(0, 0, 0, 0);
|
border: 2px solid rgba(0, 0, 0, 0);
|
||||||
|
|
||||||
background: rgb(49, 0, 0);
|
background: rgb(49, 0, 0);
|
||||||
|
border-radius: 100px;
|
||||||
|
-moz-border-radius: 100px;
|
||||||
-webkit-border-radius: 100px;
|
-webkit-border-radius: 100px;
|
||||||
}
|
}
|
||||||
::-webkit-scrollbar-thumb:vertical:active {
|
::-webkit-scrollbar-thumb:vertical:active {
|
||||||
background: rgb(56, 0, 0); /* Some darker color when you click it */
|
background: rgb(56, 0, 0); /* Some darker color when you click it */
|
||||||
|
border-radius: 100px;
|
||||||
|
-moz-border-radius: 100px;
|
||||||
-webkit-border-radius: 100px;
|
-webkit-border-radius: 100px;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user