Adjusting icons color on hover
This commit is contained in:
parent
7c60bd25ed
commit
ce35d2f2a1
1 changed files with 33 additions and 0 deletions
|
@ -45,4 +45,37 @@ body {
|
||||||
|
|
||||||
.peertube-select-container, input, textarea{
|
.peertube-select-container, input, textarea{
|
||||||
border: 1px solid var(--mainBackgroundColor) !important;
|
border: 1px solid var(--mainBackgroundColor) !important;
|
||||||
|
}
|
||||||
|
/* Icons hovers */
|
||||||
|
#custom-css a my-global-icon svg circle[stroke="#000000"],
|
||||||
|
#custom-css a my-global-icon svg g[stroke="#000000"],
|
||||||
|
#custom-css a my-global-icon svg path[stroke="#000000"],
|
||||||
|
#custom-css a my-global-icon svg polygon[stroke="#000000"],
|
||||||
|
#custom-css a my-global-icon svg rect[stroke="#000000"],
|
||||||
|
#custom-css a my-global-icon svg ellipse[stroke="#000000"]{
|
||||||
|
stroke: var(--mainForegroundColor) !important;
|
||||||
|
}
|
||||||
|
#custom-css .dropdown-item:hover my-global-icon svg circle[stroke="#000000"],
|
||||||
|
#custom-css .dropdown-item:hover my-global-icon svg g[stroke="#000000"],
|
||||||
|
#custom-css .dropdown-item:hover my-global-icon svg path[stroke="#000000"],
|
||||||
|
#custom-css .dropdown-item:hover my-global-icon svg polygon[stroke="#000000"],
|
||||||
|
#custom-css .dropdown-item:hover my-global-icon svg rect[stroke="#000000"],
|
||||||
|
#custom-css .dropdown-item:hover my-global-icon svg ellipse[stroke="#000000"]{
|
||||||
|
stroke: var(--whiteColor) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#custom-css a my-global-icon svg circle[fill="#000000"],
|
||||||
|
#custom-css a my-global-icon svg g[fill="#000000"],
|
||||||
|
#custom-css a my-global-icon svg path[fill="#000000"],
|
||||||
|
#custom-css a my-global-icon svg polygon[fill="#000000"],
|
||||||
|
#custom-css a my-global-icon svg rect[fill="#000000"]{
|
||||||
|
fill: var(--mainForegroundColor) !important;
|
||||||
|
}
|
||||||
|
#custom-css .dropdown-item:hover my-global-icon svg circle[fill="#000000"],
|
||||||
|
#custom-css .dropdown-item:hover my-global-icon svg g[fill="#000000"],
|
||||||
|
#custom-css .dropdown-item:hover my-global-icon svg path[fill="#000000"],
|
||||||
|
#custom-css .dropdown-item:hover my-global-icon svg polygon[fill="#000000"],
|
||||||
|
#custom-css .dropdown-item:hover my-global-icon svg rect[fill="#000000"]{
|
||||||
|
fill: var(--whiteColor) !important;
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue