diff options
author | Chocobozzz <me@florianbigard.com> | 2019-03-20 13:53:51 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-03-20 13:53:51 +0100 |
commit | a55052c9baf2952795685d3b4e5348c8cb9da70d (patch) | |
tree | e967b99fa195b76bd1b1f8473f3861e3d60ea97b /client/src/sass | |
parent | 7e73f07131a6738b299311448ab4491eb532838a (diff) | |
download | PeerTube-a55052c9baf2952795685d3b4e5348c8cb9da70d.tar.gz PeerTube-a55052c9baf2952795685d3b4e5348c8cb9da70d.tar.zst PeerTube-a55052c9baf2952795685d3b4e5348c8cb9da70d.zip |
Add my library section in menu
Diffstat (limited to 'client/src/sass')
-rw-r--r-- | client/src/sass/include/_mixins.scss | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/client/src/sass/include/_mixins.scss b/client/src/sass/include/_mixins.scss index 9b18f6354..37bd404dd 100644 --- a/client/src/sass/include/_mixins.scss +++ b/client/src/sass/include/_mixins.scss | |||
@@ -63,13 +63,25 @@ | |||
63 | 63 | ||
64 | @mixin apply-svg-color ($color) { | 64 | @mixin apply-svg-color ($color) { |
65 | /deep/ svg { | 65 | /deep/ svg { |
66 | path[fill="#000000"], g[fill="#000000"], rect[fill="#000000"], circle[fill="#000000"], polygon[fill="#000000"] { | 66 | path[fill="#000000"], |
67 | g[fill="#000000"], | ||
68 | rect[fill="#000000"], | ||
69 | circle[fill="#000000"], | ||
70 | polygon[fill="#000000"] { | ||
67 | fill: $color; | 71 | fill: $color; |
68 | } | 72 | } |
69 | 73 | ||
70 | path[stroke="#000000"], g[stroke="#000000"], rect[stroke="#000000"], circle[stroke="#000000"], polygon[stroke="#000000"] { | 74 | path[stroke="#000000"], |
75 | g[stroke="#000000"], | ||
76 | rect[stroke="#000000"], | ||
77 | circle[stroke="#000000"], | ||
78 | polygon[stroke="#000000"] { | ||
71 | stroke: $color; | 79 | stroke: $color; |
72 | } | 80 | } |
81 | |||
82 | stop[stop-color="#000000"] { | ||
83 | stop-color: $color; | ||
84 | } | ||
73 | } | 85 | } |
74 | } | 86 | } |
75 | 87 | ||