aboutsummaryrefslogtreecommitdiff
path: root/static/dist/font-awesome/scss/_rotated-flipped.scss
diff options
context:
space:
mode:
authort3sserakt <t3ss@posteo.de>2021-05-23 20:19:58 +0200
committert3sserakt <t3ss@posteo.de>2021-05-23 20:20:56 +0200
commit8b45ef2990e77544b06a45038987c5cdba0069bf (patch)
treebea140884cd53bc614489ffbb2f7516920634253 /static/dist/font-awesome/scss/_rotated-flipped.scss
parent8f9c24f116f689a874c813388b0e15678d15c47a (diff)
parentedf64f7471463dc2bb62355f24350ced2dd442f2 (diff)
downloadwww-8b45ef2990e77544b06a45038987c5cdba0069bf.tar.gz
www-8b45ef2990e77544b06a45038987c5cdba0069bf.zip
Merge branch 'stable' of ssh://gnunet.org/www into stable
Diffstat (limited to 'static/dist/font-awesome/scss/_rotated-flipped.scss')
-rw-r--r--static/dist/font-awesome/scss/_rotated-flipped.scss24
1 files changed, 24 insertions, 0 deletions
diff --git a/static/dist/font-awesome/scss/_rotated-flipped.scss b/static/dist/font-awesome/scss/_rotated-flipped.scss
new file mode 100644
index 00000000..164d9721
--- /dev/null
+++ b/static/dist/font-awesome/scss/_rotated-flipped.scss
@@ -0,0 +1,24 @@
1// Rotated & Flipped Icons
2// -------------------------
3
4.#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
5.#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
6.#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
7
8.#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
9.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }
10.#{$fa-css-prefix}-flip-both, .#{$fa-css-prefix}-flip-horizontal.#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(-1, -1, 2); }
11
12// Hook for IE8-9
13// -------------------------
14
15:root {
16 .#{$fa-css-prefix}-rotate-90,
17 .#{$fa-css-prefix}-rotate-180,
18 .#{$fa-css-prefix}-rotate-270,
19 .#{$fa-css-prefix}-flip-horizontal,
20 .#{$fa-css-prefix}-flip-vertical,
21 .#{$fa-css-prefix}-flip-both {
22 filter: none;
23 }
24}