forked from Nick2bad4u/UserStyles
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDearrow-RemoveDearrowButton.user.css
More file actions
44 lines (41 loc) · 1.15 KB
/
Dearrow-RemoveDearrowButton.user.css
File metadata and controls
44 lines (41 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* ==UserStyle==
@name DeArrow - Remove Dearrow Button
@version 20250112.23.21
@namespace typpi.online
@description Dearrow - Remove Button from YouTube Extension Dearrow
@homepageURL https://github.com/Nick2bad4u/UserStyles
@supportURL https://github.com/Nick2bad4u/UserStyles/issues
@author Nick2bad4u
@license UnLicense
@preprocessor stylus
@var checkbox hidebutton "Hide Button" 1
@var checkbox customDeArrowColor "Change Color of DeArrow Button Color" 0
@advanced dropdown DeArrowColor " Dearrow Button Color" {
Default "Default" <<<EOT 0 EOT;
Pink "Pink" <<<EOT 90 EOT;
Green "Green" <<<EOT 250 EOT;
Red "Red" <<<EOT 150 EOT;
Cyan "Cyan" <<<EOT 340 EOT;
Purple "Purple" <<<EOT 60 EOT;
Blue "Blue" <<<EOT 20 EOT;
Orange "Orange" <<<EOT 150 EOT;
Yellow "Yellow" <<<EOT 200 EOT;
}
==/UserStyle== */
@-moz-document domain("youtube.com")
{
if hidebutton
{
#video-title-link > button > img
{
display: none;
}
}
if customDeArrowColor
{
.cbButton img
{
filter: hue-rotate(DeArrowColor deg) saturate(3) !important;
}
}
}