diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-06-02 17:53:32 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-06-04 09:05:44 +0200 |
commit | 81fe3c67c5d70e69aa2d965a41afd7331cd4fb76 (patch) | |
tree | 1c2e81d9e609a71f87aa5c29172200b6b283a66f /client/src/sass | |
parent | 140ea386dea49220f4cdd5b67027e8d30eee1b06 (diff) | |
download | PeerTube-81fe3c67c5d70e69aa2d965a41afd7331cd4fb76.tar.gz PeerTube-81fe3c67c5d70e69aa2d965a41afd7331cd4fb76.tar.zst PeerTube-81fe3c67c5d70e69aa2d965a41afd7331cd4fb76.zip |
fix duplicate id in svg, empty alt in base email
Diffstat (limited to 'client/src/sass')
-rw-r--r-- | client/src/sass/include/_mixins.scss | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/client/src/sass/include/_mixins.scss b/client/src/sass/include/_mixins.scss index 80a090159..0b558a3f5 100644 --- a/client/src/sass/include/_mixins.scss +++ b/client/src/sass/include/_mixins.scss | |||
@@ -49,23 +49,23 @@ | |||
49 | 49 | ||
50 | @mixin apply-svg-color ($color) { | 50 | @mixin apply-svg-color ($color) { |
51 | ::ng-deep svg { | 51 | ::ng-deep svg { |
52 | path[fill="#000000"], | 52 | path[fill="#000"], |
53 | g[fill="#000000"], | 53 | g[fill="#000"], |
54 | rect[fill="#000000"], | 54 | rect[fill="#000"], |
55 | circle[fill="#000000"], | 55 | circle[fill="#000"], |
56 | polygon[fill="#000000"] { | 56 | polygon[fill="#000"] { |
57 | fill: $color; | 57 | fill: $color; |
58 | } | 58 | } |
59 | 59 | ||
60 | path[stroke="#000000"], | 60 | path[stroke="#000"], |
61 | g[stroke="#000000"], | 61 | g[stroke="#000"], |
62 | rect[stroke="#000000"], | 62 | rect[stroke="#000"], |
63 | circle[stroke="#000000"], | 63 | circle[stroke="#000"], |
64 | polygon[stroke="#000000"] { | 64 | polygon[stroke="#000"] { |
65 | stroke: $color; | 65 | stroke: $color; |
66 | } | 66 | } |
67 | 67 | ||
68 | stop[stop-color="#000000"] { | 68 | stop[stop-color="#000"] { |
69 | stop-color: $color; | 69 | stop-color: $color; |
70 | } | 70 | } |
71 | } | 71 | } |