]> cat aescling's git repositories - mastodon.git/commitdiff
Add white outline to black emojis (fix #5083) (#7936)
authorMaciek Baron <thebezet@gmail.com>
Wed, 4 Jul 2018 15:35:02 +0000 (16:35 +0100)
committerEugen Rochko <eugen@zeonfederated.com>
Wed, 4 Jul 2018 15:35:02 +0000 (17:35 +0200)
app/javascript/styles/application.scss
app/javascript/styles/mastodon/accessibility.scss [new file with mode: 0644]

index 30004017378fc4b13ee0b1aefedeeadaad231674..f207c02a6d88f547104c1d75171aa3d04588666b 100644 (file)
@@ -22,3 +22,4 @@
 @import 'mastodon/tables';
 @import 'mastodon/admin';
 @import 'mastodon/rtl';
+@import 'mastodon/accessibility';
diff --git a/app/javascript/styles/mastodon/accessibility.scss b/app/javascript/styles/mastodon/accessibility.scss
new file mode 100644 (file)
index 0000000..373bcd4
--- /dev/null
@@ -0,0 +1,14 @@
+$black-emojis: '8ball' 'ant' 'back' 'black_circle' 'black_large_square' 'black_medium_small_square' 'black_medium_square' 'black_nib' 'black_small_square' 'bomb' 'bust_in_silhouette' 'camera' 'camera_with_flash' 'clubs' 'copyright' 'curly_loop' 'currency_exchange' 'end' 'heavy_check_mark' 'heavy_division_sign' 'heavy_dollar_sign' 'heavy_minus_sign' 'heavy_multiplication_x' 'heavy_plus_sign' 'lower_left_fountain_pen' 'on' 'registered' 'soon' 'spades' 'spider' 'tm' 'top' 'waving_black_flag' 'wavy_dash' 'video_game';
+
+%white-emoji-outline {
+  filter: drop-shadow(1px 1px 0 $white) drop-shadow(-1px 1px 0 $white) drop-shadow(1px -1px 0 $white) drop-shadow(-1px -1px 0 $white);
+  transform: scale(.71);
+}
+
+.emojione {
+  @each $emoji in $black-emojis {
+    &[title=':#{$emoji}:'] {
+      @extend %white-emoji-outline;
+    }
+  }
+}