summaryrefslogtreecommitdiffstats
path: root/webapp/sass/utils/_functions.scss
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/sass/utils/_functions.scss')
-rw-r--r--webapp/sass/utils/_functions.scss33
1 files changed, 0 insertions, 33 deletions
diff --git a/webapp/sass/utils/_functions.scss b/webapp/sass/utils/_functions.scss
deleted file mode 100644
index 26e3c6147..000000000
--- a/webapp/sass/utils/_functions.scss
+++ /dev/null
@@ -1,33 +0,0 @@
-@charset "UTF-8";
-
-@function em($pixels, $context: 14px) {
- @return ($pixels / $context * 1em)
-}
-
-@function alpha-color($color, $amount) {
- @return rgba($color, $amount)
-}
-
-%popover-box-shadow {
- @include box-shadow(rgba(black, .175) 1px -3px 12px);
-}
-
-%font-awesome {
- display: inline-block;
- font: normal normal normal 14px/1 FontAwesome;
- font-size: inherit;
- text-rendering: auto;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- transform: translate(0, 0);
-}
-
-@mixin unselectable {
- -webkit-user-select: none; /* Chrome/Safari */
- -moz-user-select: none; /* Firefox */
- -ms-user-select: none; /* IE10+ */
-
- /* Rules below not implemented in browsers yet */
- -o-user-select: none;
- user-select: none;
-}