summaryrefslogtreecommitdiffstats
path: root/docs/com/css/theme/template/mixins.scss
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2016-10-14 09:13:38 +0000
committerGerrit Code Review <gerrit@opnfv.org>2016-10-14 09:13:38 +0000
commitcfb353b01c2dd21007db01c2d18a5cbd415689b8 (patch)
tree16cd87a5c956af7bb0126e068d0702dda0f9768e /docs/com/css/theme/template/mixins.scss
parent733dbe143cd4d37787cdb167021129b9ffac78fa (diff)
parent6bb45e4d1ba014c1dd33bedff49be8afa9426d17 (diff)
Merge "remove 3rd part files with MIT or BSD license"
Diffstat (limited to 'docs/com/css/theme/template/mixins.scss')
-rwxr-xr-xdocs/com/css/theme/template/mixins.scss29
1 files changed, 0 insertions, 29 deletions
diff --git a/docs/com/css/theme/template/mixins.scss b/docs/com/css/theme/template/mixins.scss
deleted file mode 100755
index e0c560692..000000000
--- a/docs/com/css/theme/template/mixins.scss
+++ /dev/null
@@ -1,29 +0,0 @@
-@mixin vertical-gradient( $top, $bottom ) {
- background: $top;
- background: -moz-linear-gradient( top, $top 0%, $bottom 100% );
- background: -webkit-gradient( linear, left top, left bottom, color-stop(0%,$top), color-stop(100%,$bottom) );
- background: -webkit-linear-gradient( top, $top 0%, $bottom 100% );
- background: -o-linear-gradient( top, $top 0%, $bottom 100% );
- background: -ms-linear-gradient( top, $top 0%, $bottom 100% );
- background: linear-gradient( top, $top 0%, $bottom 100% );
-}
-
-@mixin horizontal-gradient( $top, $bottom ) {
- background: $top;
- background: -moz-linear-gradient( left, $top 0%, $bottom 100% );
- background: -webkit-gradient( linear, left top, right top, color-stop(0%,$top), color-stop(100%,$bottom) );
- background: -webkit-linear-gradient( left, $top 0%, $bottom 100% );
- background: -o-linear-gradient( left, $top 0%, $bottom 100% );
- background: -ms-linear-gradient( left, $top 0%, $bottom 100% );
- background: linear-gradient( left, $top 0%, $bottom 100% );
-}
-
-@mixin radial-gradient( $outer, $inner, $type: circle ) {
- background: $outer;
- background: -moz-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
- background: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%,$inner), color-stop(100%,$outer) );
- background: -webkit-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
- background: -o-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
- background: -ms-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
- background: radial-gradient( center, $type cover, $inner 0%, $outer 100% );
-} \ No newline at end of file