summaryrefslogtreecommitdiffstats
path: root/webapp/sass/utils/_mixins.scss
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/sass/utils/_mixins.scss')
-rw-r--r--webapp/sass/utils/_mixins.scss38
1 files changed, 0 insertions, 38 deletions
diff --git a/webapp/sass/utils/_mixins.scss b/webapp/sass/utils/_mixins.scss
deleted file mode 100644
index 4d2b031e4..000000000
--- a/webapp/sass/utils/_mixins.scss
+++ /dev/null
@@ -1,38 +0,0 @@
-@charset 'UTF-8';
-
-@mixin file-icon($path) {
- @include background-size(60px auto);
- background-color: $white;
- background-image: url($path);
- background-position: center;
- background-repeat: no-repeat;
-}
-
-@mixin alpha-property($property, $color, $opacity) {
- #{$property}: rgba($color, $opacity);
-}
-
-@mixin font-smoothing($value: antialiased) {
- @if $value == antialiased {
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- @else {
- -webkit-font-smoothing: subpixel-antialiased;
- -moz-osx-font-smoothing: auto;
- }
-}
-
-@mixin cursor($value) {
- cursor: -webkit-$value;
- cursor: zoom-$value;
-}
-
-// Webrtc button
-@mixin webrtc-button {
- .webrtc__button {
- &.offline {
- @include opacity(.5);
- }
- }
-}