From 58f04e978c7c076f6bed04bbd87eecfc0d2cb4e3 Mon Sep 17 00:00:00 2001 From: prssanna Date: Tue, 16 Feb 2021 13:45:52 +0530 Subject: [PATCH] fix: remove mixins.less --- frappe/public/less/desk.less | 1 - frappe/public/less/mixins.less | 78 ---------------------------------- 2 files changed, 79 deletions(-) delete mode 100644 frappe/public/less/mixins.less diff --git a/frappe/public/less/desk.less b/frappe/public/less/desk.less index df7038ad6b..92c1136bf2 100644 --- a/frappe/public/less/desk.less +++ b/frappe/public/less/desk.less @@ -1,5 +1,4 @@ @import "variables.less"; -@import "mixins.less"; // .nav-pills a, .nav-pills a:hover { // border-bottom: none; diff --git a/frappe/public/less/mixins.less b/frappe/public/less/mixins.less deleted file mode 100644 index a5c42752bf..0000000000 --- a/frappe/public/less/mixins.less +++ /dev/null @@ -1,78 +0,0 @@ -@import "variables.less"; - -.underline() { - text-decoration: underline; -} - -.underline-hover() { - text-decoration: underline; -} - -/* the element that this class is applied to, should have a max width for this to work*/ -.text-ellipsis() { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - max-width: 100%; - vertical-align: middle; -} - -.text-uppercase() { - padding-bottom: 4px; - text-transform: uppercase; - font-size: 12px; - letter-spacing: 0.4px; - color: @text-muted; -} - -.breadcrumb-divider() { - font-family: FontAwesome; - font-weight: normal; - font-style: normal; - text-decoration: inherit; - -webkit-font-smoothing: antialiased; - *margin-right: .3em; - display: inline-block; - speak: none; - font-size: 24px; - transition: 0.2s; - position: relative; - top: 3px; -} - -.breadcrumb-divider-left() { - content: "\f104"; - margin-right: 10px; - color: @navbar-default-color; -} - -.breadcrumb-divider-right() { - content: "\f105"; - margin-right: 10px; - color: @breadcrumb-divider-color; -} - -// transitions -.transition(@transition) { - -webkit-transition: @transition; - -o-transition: @transition; - transition: @transition; -} - -.transition-transform(@transition) { - -webkit-transition: -webkit-transform @transition; - -moz-transition: -moz-transform @transition; - -o-transition: -o-transform @transition; - transition: transform @transition; -} - -.navbar-center-show() { - .navbar-center { - display: block !important; - position: absolute; - top: 10px; - left: 25%; - right: 25%; - text-align: center; - } -}