http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_flex-box.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_flex-box.scss b/_sass/vendor/bourbon/css3/_flex-box.scss deleted file mode 100644 index b48476e..0000000 --- a/_sass/vendor/bourbon/css3/_flex-box.scss +++ /dev/null @@ -1,321 +0,0 @@ -// CSS3 Flexible Box Model and property defaults - -// Custom shorthand notation for flexbox -@mixin box($orient: inline-axis, $pack: start, $align: stretch) { - @include display-box; - @include box-orient($orient); - @include box-pack($pack); - @include box-align($align); -} - -@mixin display-box { - display: -webkit-box; - display: -moz-box; - display: -ms-flexbox; // IE 10 - display: box; -} - -@mixin box-orient($orient: inline-axis) { -// horizontal|vertical|inline-axis|block-axis|inherit - @include prefixer(box-orient, $orient, webkit moz spec); -} - -@mixin box-pack($pack: start) { -// start|end|center|justify - @include prefixer(box-pack, $pack, webkit moz spec); - -ms-flex-pack: $pack; // IE 10 -} - -@mixin box-align($align: stretch) { -// start|end|center|baseline|stretch - @include prefixer(box-align, $align, webkit moz spec); - -ms-flex-align: $align; // IE 10 -} - -@mixin box-direction($direction: normal) { -// normal|reverse|inherit - @include prefixer(box-direction, $direction, webkit moz spec); - -ms-flex-direction: $direction; // IE 10 -} - -@mixin box-lines($lines: single) { -// single|multiple - @include prefixer(box-lines, $lines, webkit moz spec); -} - -@mixin box-ordinal-group($int: 1) { - @include prefixer(box-ordinal-group, $int, webkit moz spec); - -ms-flex-order: $int; // IE 10 -} - -@mixin box-flex($value: 0.0) { - @include prefixer(box-flex, $value, webkit moz spec); - -ms-flex: $value; // IE 10 -} - -@mixin box-flex-group($int: 1) { - @include prefixer(box-flex-group, $int, webkit moz spec); -} - -// CSS3 Flexible Box Model and property defaults -// Unified attributes for 2009, 2011, and 2012 flavours. - -// 2009 - display (box | inline-box) -// 2011 - display (flexbox | inline-flexbox) -// 2012 - display (flex | inline-flex) -@mixin display($value) { -// flex | inline-flex - @if $value == "flex" { - // 2009 - display: -webkit-box; - display: -moz-box; - display: box; - - // 2012 - display: -webkit-flex; - display: -moz-flex; - display: -ms-flexbox; // 2011 (IE 10) - display: flex; - } - - @elseif $value == "inline-flex" { - display: -webkit-inline-box; - display: -moz-inline-box; - display: inline-box; - - display: -webkit-inline-flex; - display: -moz-inline-flex; - display: -ms-inline-flexbox; - display: inline-flex; - } - - @else { - display: $value; - } -} - -// 2009 - box-flex (integer) -// 2011 - flex (decimal | width decimal) -// 2012 - flex (integer integer width) -@mixin flex($value) { - - // Grab flex-grow for older browsers. - $flex-grow: nth($value, 1); - - // 2009 - @include prefixer(box-flex, $flex-grow, webkit moz spec); - - // 2011 (IE 10), 2012 - @include prefixer(flex, $value, webkit moz ms spec); -} - -// 2009 - box-orient ( horizontal | vertical | inline-axis | block-axis) -// - box-direction (normal | reverse) -// 2011 - flex-direction (row | row-reverse | column | column-reverse) -// 2012 - flex-direction (row | row-reverse | column | column-reverse) -@mixin flex-direction($value: row) { - - // Alt values. - $value-2009: $value; - $value-2011: $value; - $direction: "normal"; - - @if $value == row { - $value-2009: horizontal; - } - - @elseif $value == "row-reverse" { - $value-2009: horizontal; - $direction: reverse; - } - - @elseif $value == column { - $value-2009: vertical; - } - - @elseif $value == "column-reverse" { - $value-2009: vertical; - $direction: reverse; - } - - // 2009 - @include prefixer(box-orient, $value-2009, webkit moz spec); - @if $direction == "reverse" { - @include prefixer(box-direction, $direction, webkit moz spec); - } - - // 2012 - @include prefixer(flex-direction, $value, webkit moz spec); - - // 2011 (IE 10) - -ms-flex-direction: $value; -} - -// 2009 - box-lines (single | multiple) -// 2011 - flex-wrap (nowrap | wrap | wrap-reverse) -// 2012 - flex-wrap (nowrap | wrap | wrap-reverse) -@mixin flex-wrap($value: nowrap) { - - // Alt values. - $alt-value: $value; - @if $value == nowrap { - $alt-value: single; - } - - @elseif $value == wrap { - $alt-value: multiple; - } - - @elseif $value == "wrap-reverse" { - $alt-value: multiple; - } - - @include prefixer(box-lines, $alt-value, webkit moz spec); - @include prefixer(flex-wrap, $value, webkit moz ms spec); -} - -// 2009 - TODO: parse values into flex-direction/flex-wrap -// 2011 - TODO: parse values into flex-direction/flex-wrap -// 2012 - flex-flow (flex-direction || flex-wrap) -@mixin flex-flow($value) { - @include prefixer(flex-flow, $value, webkit moz spec); -} - -// 2009 - box-ordinal-group (integer) -// 2011 - flex-order (integer) -// 2012 - order (integer) -@mixin order($int: 0) { - // 2009 - @include prefixer(box-ordinal-group, $int, webkit moz spec); - - // 2012 - @include prefixer(order, $int, webkit moz spec); - - // 2011 (IE 10) - -ms-flex-order: $int; -} - -// 2012 - flex-grow (number) -@mixin flex-grow($number: 0) { - @include prefixer(flex-grow, $number, webkit moz spec); - -ms-flex-positive: $number; -} - -// 2012 - flex-shrink (number) -@mixin flex-shrink($number: 1) { - @include prefixer(flex-shrink, $number, webkit moz spec); - -ms-flex-negative: $number; -} - -// 2012 - flex-basis (number) -@mixin flex-basis($width: auto) { - @include prefixer(flex-basis, $width, webkit moz spec); - -ms-flex-preferred-size: $width; -} - -// 2009 - box-pack (start | end | center | justify) -// 2011 - flex-pack (start | end | center | justify) -// 2012 - justify-content (flex-start | flex-end | center | space-between | space-around) -@mixin justify-content ($value: flex-start) { - - // Alt values. - $alt-value: $value; - @if $value == "flex-start" { - $alt-value: start; - } - - @elseif $value == "flex-end" { - $alt-value: end; - } - - @elseif $value == "space-between" { - $alt-value: justify; - } - - @elseif $value == "space-around" { - $alt-value: center; - } - - // 2009 - @include prefixer(box-pack, $alt-value, webkit moz spec); - - // 2012 - @include prefixer(justify-content, $value, webkit moz ms o spec); - - // 2011 (IE 10) - -ms-flex-pack: $alt-value; -} - -// 2009 - box-align (start | end | center | baseline | stretch) -// 2011 - flex-align (start | end | center | baseline | stretch) -// 2012 - align-items (flex-start | flex-end | center | baseline | stretch) -@mixin align-items($value: stretch) { - - $alt-value: $value; - - @if $value == "flex-start" { - $alt-value: start; - } - - @elseif $value == "flex-end" { - $alt-value: end; - } - - // 2009 - @include prefixer(box-align, $alt-value, webkit moz spec); - - // 2012 - @include prefixer(align-items, $value, webkit moz ms o spec); - - // 2011 (IE 10) - -ms-flex-align: $alt-value; -} - -// 2011 - flex-item-align (auto | start | end | center | baseline | stretch) -// 2012 - align-self (auto | flex-start | flex-end | center | baseline | stretch) -@mixin align-self($value: auto) { - - $value-2011: $value; - @if $value == "flex-start" { - $value-2011: start; - } - - @elseif $value == "flex-end" { - $value-2011: end; - } - - // 2012 - @include prefixer(align-self, $value, webkit moz spec); - - // 2011 (IE 10) - -ms-flex-item-align: $value-2011; -} - -// 2011 - flex-line-pack (start | end | center | justify | distribute | stretch) -// 2012 - align-content (flex-start | flex-end | center | space-between | space-around | stretch) -@mixin align-content($value: stretch) { - - $value-2011: $value; - @if $value == "flex-start" { - $value-2011: start; - } - - @elseif $value == "flex-end" { - $value-2011: end; - } - - @elseif $value == "space-between" { - $value-2011: justify; - } - - @elseif $value == "space-around" { - $value-2011: distribute; - } - - // 2012 - @include prefixer(align-content, $value, webkit moz spec); - - // 2011 (IE 10) - -ms-flex-line-pack: $value-2011; -} -
http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_font-face.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_font-face.scss b/_sass/vendor/bourbon/css3/_font-face.scss deleted file mode 100644 index 029ee8f..0000000 --- a/_sass/vendor/bourbon/css3/_font-face.scss +++ /dev/null @@ -1,23 +0,0 @@ -// Order of the includes matters, and it is: normal, bold, italic, bold+italic. - -@mixin font-face($font-family, $file-path, $weight: normal, $style: normal, $asset-pipeline: false ) { - @font-face { - font-family: $font-family; - font-weight: $weight; - font-style: $style; - - @if $asset-pipeline == true { - src: font-url('#{$file-path}.eot'); - src: font-url('#{$file-path}.eot?#iefix') format('embedded-opentype'), - font-url('#{$file-path}.woff') format('woff'), - font-url('#{$file-path}.ttf') format('truetype'), - font-url('#{$file-path}.svg##{$font-family}') format('svg'); - } @else { - src: url('#{$file-path}.eot'); - src: url('#{$file-path}.eot?#iefix') format('embedded-opentype'), - url('#{$file-path}.woff') format('woff'), - url('#{$file-path}.ttf') format('truetype'), - url('#{$file-path}.svg##{$font-family}') format('svg'); - } - } -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_font-feature-settings.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_font-feature-settings.scss b/_sass/vendor/bourbon/css3/_font-feature-settings.scss deleted file mode 100644 index 8a9f536..0000000 --- a/_sass/vendor/bourbon/css3/_font-feature-settings.scss +++ /dev/null @@ -1,10 +0,0 @@ -// Font feature settings mixin and property default. -// Examples: @include font-feature-settings("liga"); -// @include font-feature-settings("lnum" false); -// @include font-feature-settings("pnum" 1, "kern" 0); -// @include font-feature-settings("ss01", "ss02"); - -@mixin font-feature-settings($settings...) { - @if length($settings) == 0 { $settings: none; } - @include prefixer(font-feature-settings, $settings, webkit moz ms spec); -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_hidpi-media-query.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_hidpi-media-query.scss b/_sass/vendor/bourbon/css3/_hidpi-media-query.scss deleted file mode 100644 index 111e400..0000000 --- a/_sass/vendor/bourbon/css3/_hidpi-media-query.scss +++ /dev/null @@ -1,10 +0,0 @@ -// HiDPI mixin. Default value set to 1.3 to target Google Nexus 7 (http://bjango.com/articles/min-device-pixel-ratio/) -@mixin hidpi($ratio: 1.3) { - @media only screen and (-webkit-min-device-pixel-ratio: $ratio), - only screen and (min--moz-device-pixel-ratio: $ratio), - only screen and (-o-min-device-pixel-ratio: #{$ratio}/1), - only screen and (min-resolution: #{round($ratio*96)}dpi), - only screen and (min-resolution: #{$ratio}dppx) { - @content; - } -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_hyphens.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_hyphens.scss b/_sass/vendor/bourbon/css3/_hyphens.scss deleted file mode 100644 index 5f8bdda..0000000 --- a/_sass/vendor/bourbon/css3/_hyphens.scss +++ /dev/null @@ -1,4 +0,0 @@ -@mixin hyphens($hyphenation: none) { -// none | manual | auto - @include prefixer(hyphens, $hyphenation, webkit moz ms spec); -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_image-rendering.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_image-rendering.scss b/_sass/vendor/bourbon/css3/_image-rendering.scss deleted file mode 100644 index 03432c6..0000000 --- a/_sass/vendor/bourbon/css3/_image-rendering.scss +++ /dev/null @@ -1,14 +0,0 @@ -@mixin image-rendering ($mode:auto) { - - @if ($mode == crisp-edges) { - -ms-interpolation-mode: nearest-neighbor; // IE8+ - image-rendering: -moz-crisp-edges; - image-rendering: -o-crisp-edges; - image-rendering: -webkit-optimize-contrast; - image-rendering: crisp-edges; - } - - @else { - image-rendering: $mode; - } -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_keyframes.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_keyframes.scss b/_sass/vendor/bourbon/css3/_keyframes.scss deleted file mode 100644 index e34616a..0000000 --- a/_sass/vendor/bourbon/css3/_keyframes.scss +++ /dev/null @@ -1,35 +0,0 @@ -// Adds keyframes blocks for supported prefixes, removing redundant prefixes in the block's content -@mixin keyframes($name) { - $original-prefix-for-webkit: $prefix-for-webkit; - $original-prefix-for-mozilla: $prefix-for-mozilla; - $original-prefix-for-microsoft: $prefix-for-microsoft; - $original-prefix-for-opera: $prefix-for-opera; - $original-prefix-for-spec: $prefix-for-spec; - - @if $original-prefix-for-webkit { - @include disable-prefix-for-all(); - $prefix-for-webkit: true !global; - @-webkit-keyframes #{$name} { - @content; - } - } - @if $original-prefix-for-mozilla { - @include disable-prefix-for-all(); - $prefix-for-mozilla: true !global; - @-moz-keyframes #{$name} { - @content; - } - } - - $prefix-for-webkit: $original-prefix-for-webkit !global; - $prefix-for-mozilla: $original-prefix-for-mozilla !global; - $prefix-for-microsoft: $original-prefix-for-microsoft !global; - $prefix-for-opera: $original-prefix-for-opera !global; - $prefix-for-spec: $original-prefix-for-spec !global; - - @if $original-prefix-for-spec { - @keyframes #{$name} { - @content; - } - } -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_linear-gradient.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_linear-gradient.scss b/_sass/vendor/bourbon/css3/_linear-gradient.scss deleted file mode 100644 index e0da351..0000000 --- a/_sass/vendor/bourbon/css3/_linear-gradient.scss +++ /dev/null @@ -1,38 +0,0 @@ -@mixin linear-gradient($pos, $G1, $G2: null, - $G3: null, $G4: null, - $G5: null, $G6: null, - $G7: null, $G8: null, - $G9: null, $G10: null, - $fallback: null) { - // Detect what type of value exists in $pos - $pos-type: type-of(nth($pos, 1)); - $pos-spec: null; - $pos-degree: null; - - // If $pos is missing from mixin, reassign vars and add default position - @if ($pos-type == color) or (nth($pos, 1) == "transparent") { - $G10: $G9; $G9: $G8; $G8: $G7; $G7: $G6; $G6: $G5; - $G5: $G4; $G4: $G3; $G3: $G2; $G2: $G1; $G1: $pos; - $pos: null; - } - - @if $pos { - $positions: _linear-positions-parser($pos); - $pos-degree: nth($positions, 1); - $pos-spec: nth($positions, 2); - } - - $full: $G1, $G2, $G3, $G4, $G5, $G6, $G7, $G8, $G9, $G10; - - // Set $G1 as the default fallback color - $fallback-color: nth($G1, 1); - - // If $fallback is a color use that color as the fallback color - @if (type-of($fallback) == color) or ($fallback == "transparent") { - $fallback-color: $fallback; - } - - background-color: $fallback-color; - background-image: -webkit-linear-gradient($pos-degree $full); // Safari 5.1+, Chrome - background-image: unquote("linear-gradient(#{$pos-spec}#{$full})"); -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_perspective.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_perspective.scss b/_sass/vendor/bourbon/css3/_perspective.scss deleted file mode 100644 index 0e4deb8..0000000 --- a/_sass/vendor/bourbon/css3/_perspective.scss +++ /dev/null @@ -1,8 +0,0 @@ -@mixin perspective($depth: none) { - // none | <length> - @include prefixer(perspective, $depth, webkit moz spec); -} - -@mixin perspective-origin($value: 50% 50%) { - @include prefixer(perspective-origin, $value, webkit moz spec); -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_placeholder.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_placeholder.scss b/_sass/vendor/bourbon/css3/_placeholder.scss deleted file mode 100644 index 5682fd0..0000000 --- a/_sass/vendor/bourbon/css3/_placeholder.scss +++ /dev/null @@ -1,8 +0,0 @@ -@mixin placeholder { - $placeholders: ":-webkit-input" ":-moz" "-moz" "-ms-input"; - @each $placeholder in $placeholders { - &:#{$placeholder}-placeholder { - @content; - } - } -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_radial-gradient.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_radial-gradient.scss b/_sass/vendor/bourbon/css3/_radial-gradient.scss deleted file mode 100644 index 7a8c376..0000000 --- a/_sass/vendor/bourbon/css3/_radial-gradient.scss +++ /dev/null @@ -1,39 +0,0 @@ -// Requires Sass 3.1+ -@mixin radial-gradient($G1, $G2, - $G3: null, $G4: null, - $G5: null, $G6: null, - $G7: null, $G8: null, - $G9: null, $G10: null, - $pos: null, - $shape-size: null, - $fallback: null) { - - $data: _radial-arg-parser($G1, $G2, $pos, $shape-size); - $G1: nth($data, 1); - $G2: nth($data, 2); - $pos: nth($data, 3); - $shape-size: nth($data, 4); - - $full: $G1, $G2, $G3, $G4, $G5, $G6, $G7, $G8, $G9, $G10; - - // Strip deprecated cover/contain for spec - $shape-size-spec: _shape-size-stripper($shape-size); - - // Set $G1 as the default fallback color - $first-color: nth($full, 1); - $fallback-color: nth($first-color, 1); - - @if (type-of($fallback) == color) or ($fallback == "transparent") { - $fallback-color: $fallback; - } - - // Add Commas and spaces - $shape-size: if($shape-size, '#{$shape-size}, ', null); - $pos: if($pos, '#{$pos}, ', null); - $pos-spec: if($pos, 'at #{$pos}', null); - $shape-size-spec: if(($shape-size-spec != ' ') and ($pos == null), '#{$shape-size-spec}, ', '#{$shape-size-spec} '); - - background-color: $fallback-color; - background-image: -webkit-radial-gradient(unquote(#{$pos}#{$shape-size}#{$full})); - background-image: unquote("radial-gradient(#{$shape-size-spec}#{$pos-spec}#{$full})"); -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_transform.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_transform.scss b/_sass/vendor/bourbon/css3/_transform.scss deleted file mode 100644 index 8cc3596..0000000 --- a/_sass/vendor/bourbon/css3/_transform.scss +++ /dev/null @@ -1,15 +0,0 @@ -@mixin transform($property: none) { -// none | <transform-function> - @include prefixer(transform, $property, webkit moz ms o spec); -} - -@mixin transform-origin($axes: 50%) { -// x-axis - left | center | right | length | % -// y-axis - top | center | bottom | length | % -// z-axis - length - @include prefixer(transform-origin, $axes, webkit moz ms o spec); -} - -@mixin transform-style ($style: flat) { - @include prefixer(transform-style, $style, webkit moz ms o spec); -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_transition.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_transition.scss b/_sass/vendor/bourbon/css3/_transition.scss deleted file mode 100644 index 5ad4c0a..0000000 --- a/_sass/vendor/bourbon/css3/_transition.scss +++ /dev/null @@ -1,77 +0,0 @@ -// Shorthand mixin. Supports multiple parentheses-deliminated values for each variable. -// Example: @include transition (all 2s ease-in-out); -// @include transition (opacity 1s ease-in 2s, width 2s ease-out); -// @include transition-property (transform, opacity); - -@mixin transition ($properties...) { - // Fix for vendor-prefix transform property - $needs-prefixes: false; - $webkit: (); - $moz: (); - $spec: (); - - // Create lists for vendor-prefixed transform - @each $list in $properties { - @if nth($list, 1) == "transform" { - $needs-prefixes: true; - $list1: -webkit-transform; - $list2: -moz-transform; - $list3: (); - - @each $var in $list { - $list3: join($list3, $var); - - @if $var != "transform" { - $list1: join($list1, $var); - $list2: join($list2, $var); - } - } - - $webkit: append($webkit, $list1); - $moz: append($moz, $list2); - $spec: append($spec, $list3); - } - - // Create lists for non-prefixed transition properties - @else { - $webkit: append($webkit, $list, comma); - $moz: append($moz, $list, comma); - $spec: append($spec, $list, comma); - } - } - - @if $needs-prefixes { - -webkit-transition: $webkit; - -moz-transition: $moz; - transition: $spec; - } - @else { - @if length($properties) >= 1 { - @include prefixer(transition, $properties, webkit moz spec); - } - - @else { - $properties: all 0.15s ease-out 0s; - @include prefixer(transition, $properties, webkit moz spec); - } - } -} - -@mixin transition-property ($properties...) { - -webkit-transition-property: transition-property-names($properties, 'webkit'); - -moz-transition-property: transition-property-names($properties, 'moz'); - transition-property: transition-property-names($properties, false); -} - -@mixin transition-duration ($times...) { - @include prefixer(transition-duration, $times, webkit moz spec); -} - -@mixin transition-timing-function ($motions...) { -// ease | linear | ease-in | ease-out | ease-in-out | cubic-bezier() - @include prefixer(transition-timing-function, $motions, webkit moz spec); -} - -@mixin transition-delay ($times...) { - @include prefixer(transition-delay, $times, webkit moz spec); -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/css3/_user-select.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/css3/_user-select.scss b/_sass/vendor/bourbon/css3/_user-select.scss deleted file mode 100644 index 1380aa8..0000000 --- a/_sass/vendor/bourbon/css3/_user-select.scss +++ /dev/null @@ -1,3 +0,0 @@ -@mixin user-select($arg: none) { - @include prefixer(user-select, $arg, webkit moz ms spec); -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/functions/_assign.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/functions/_assign.scss b/_sass/vendor/bourbon/functions/_assign.scss deleted file mode 100644 index 9a1db93..0000000 --- a/_sass/vendor/bourbon/functions/_assign.scss +++ /dev/null @@ -1,11 +0,0 @@ -@function assign-inputs($inputs, $pseudo: null) { - $list : (); - - @each $input in $inputs { - $input: unquote($input); - $input: if($pseudo, $input + ":" + $pseudo, $input); - $list: append($list, $input, comma); - } - - @return $list; -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/functions/_color-lightness.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/functions/_color-lightness.scss b/_sass/vendor/bourbon/functions/_color-lightness.scss deleted file mode 100644 index 8c6df4e..0000000 --- a/_sass/vendor/bourbon/functions/_color-lightness.scss +++ /dev/null @@ -1,13 +0,0 @@ -// Programatically determines whether a color is light or dark -// Returns a boolean -// More details here http://robots.thoughtbot.com/closer-look-color-lightness - -@function is-light($hex-color) { - $-local-red: red(rgba($hex-color, 1.0)); - $-local-green: green(rgba($hex-color, 1.0)); - $-local-blue: blue(rgba($hex-color, 1.0)); - - $-local-lightness: ($-local-red * 0.2126 + $-local-green * 0.7152 + $-local-blue * 0.0722) / 255; - - @return $-local-lightness > .6; -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/functions/_flex-grid.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/functions/_flex-grid.scss b/_sass/vendor/bourbon/functions/_flex-grid.scss deleted file mode 100644 index 3bbd866..0000000 --- a/_sass/vendor/bourbon/functions/_flex-grid.scss +++ /dev/null @@ -1,39 +0,0 @@ -// Flexible grid -@function flex-grid($columns, $container-columns: $fg-max-columns) { - $width: $columns * $fg-column + ($columns - 1) * $fg-gutter; - $container-width: $container-columns * $fg-column + ($container-columns - 1) * $fg-gutter; - @return percentage($width / $container-width); -} - -// Flexible gutter -@function flex-gutter($container-columns: $fg-max-columns, $gutter: $fg-gutter) { - $container-width: $container-columns * $fg-column + ($container-columns - 1) * $fg-gutter; - @return percentage($gutter / $container-width); -} - -// The $fg-column, $fg-gutter and $fg-max-columns variables must be defined in your base stylesheet to properly use the flex-grid function. -// This function takes the fluid grid equation (target / context = result) and uses columns to help define each. -// -// The calculation presumes that your column structure will be missing the last gutter: -// -// -- column -- gutter -- column -- gutter -- column -// -// $fg-column: 60px; // Column Width -// $fg-gutter: 25px; // Gutter Width -// $fg-max-columns: 12; // Total Columns For Main Container -// -// div { -// width: flex-grid(4); // returns (315px / 995px) = 31.65829%; -// margin-left: flex-gutter(); // returns (25px / 995px) = 2.51256%; -// -// p { -// width: flex-grid(2, 4); // returns (145px / 315px) = 46.031746%; -// float: left; -// margin: flex-gutter(4); // returns (25px / 315px) = 7.936508%; -// } -// -// blockquote { -// float: left; -// width: flex-grid(2, 4); // returns (145px / 315px) = 46.031746%; -// } -// } \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/functions/_golden-ratio.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/functions/_golden-ratio.scss b/_sass/vendor/bourbon/functions/_golden-ratio.scss deleted file mode 100644 index 463d14a..0000000 --- a/_sass/vendor/bourbon/functions/_golden-ratio.scss +++ /dev/null @@ -1,3 +0,0 @@ -@function golden-ratio($value, $increment) { - @return modular-scale($value, $increment, $golden) -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/functions/_grid-width.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/functions/_grid-width.scss b/_sass/vendor/bourbon/functions/_grid-width.scss deleted file mode 100644 index 8e63d83..0000000 --- a/_sass/vendor/bourbon/functions/_grid-width.scss +++ /dev/null @@ -1,13 +0,0 @@ -@function grid-width($n) { - @return $n * $gw-column + ($n - 1) * $gw-gutter; -} - -// The $gw-column and $gw-gutter variables must be defined in your base stylesheet to properly use the grid-width function. -// -// $gw-column: 100px; // Column Width -// $gw-gutter: 40px; // Gutter Width -// -// div { -// width: grid-width(4); // returns 520px; -// margin-left: $gw-gutter; // returns 40px; -// } http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/functions/_modular-scale.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/functions/_modular-scale.scss b/_sass/vendor/bourbon/functions/_modular-scale.scss deleted file mode 100644 index afc59eb..0000000 --- a/_sass/vendor/bourbon/functions/_modular-scale.scss +++ /dev/null @@ -1,66 +0,0 @@ -// Scaling Variables -$golden: 1.618; -$minor-second: 1.067; -$major-second: 1.125; -$minor-third: 1.2; -$major-third: 1.25; -$perfect-fourth: 1.333; -$augmented-fourth: 1.414; -$perfect-fifth: 1.5; -$minor-sixth: 1.6; -$major-sixth: 1.667; -$minor-seventh: 1.778; -$major-seventh: 1.875; -$octave: 2; -$major-tenth: 2.5; -$major-eleventh: 2.667; -$major-twelfth: 3; -$double-octave: 4; - -@function modular-scale($value, $increment, $ratio) { - $v1: nth($value, 1); - $v2: nth($value, length($value)); - $value: $v1; - - // scale $v2 to just above $v1 - @while $v2 > $v1 { - $v2: ($v2 / $ratio); // will be off-by-1 - } - @while $v2 < $v1 { - $v2: ($v2 * $ratio); // will fix off-by-1 - } - - // check AFTER scaling $v2 to prevent double-counting corner-case - $double-stranded: $v2 > $v1; - - @if $increment > 0 { - @for $i from 1 through $increment { - @if $double-stranded and ($v1 * $ratio) > $v2 { - $value: $v2; - $v2: ($v2 * $ratio); - } @else { - $v1: ($v1 * $ratio); - $value: $v1; - } - } - } - - @if $increment < 0 { - // adjust $v2 to just below $v1 - @if $double-stranded { - $v2: ($v2 / $ratio); - } - - @for $i from $increment through -1 { - @if $double-stranded and ($v1 / $ratio) < $v2 { - $value: $v2; - $v2: ($v2 / $ratio); - } @else { - $v1: ($v1 / $ratio); - $value: $v1; - } - } - } - - @return $value; -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/functions/_px-to-em.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/functions/_px-to-em.scss b/_sass/vendor/bourbon/functions/_px-to-em.scss deleted file mode 100644 index 4832245..0000000 --- a/_sass/vendor/bourbon/functions/_px-to-em.scss +++ /dev/null @@ -1,13 +0,0 @@ -// Convert pixels to ems -// eg. for a relational value of 12px write em(12) when the parent is 16px -// if the parent is another value say 24px write em(12, 24) - -@function em($pxval, $base: $em-base) { - @if not unitless($pxval) { - $pxval: strip-units($pxval); - } - @if not unitless($base) { - $base: strip-units($base); - } - @return ($pxval / $base) * 1em; -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/functions/_px-to-rem.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/functions/_px-to-rem.scss b/_sass/vendor/bourbon/functions/_px-to-rem.scss deleted file mode 100644 index 96b244e..0000000 --- a/_sass/vendor/bourbon/functions/_px-to-rem.scss +++ /dev/null @@ -1,15 +0,0 @@ -// Convert pixels to rems -// eg. for a relational value of 12px write rem(12) -// Assumes $em-base is the font-size of <html> - -@function rem($pxval) { - @if not unitless($pxval) { - $pxval: strip-units($pxval); - } - - $base: $em-base; - @if not unitless($base) { - $base: strip-units($base); - } - @return ($pxval / $base) * 1rem; -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/functions/_strip-units.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/functions/_strip-units.scss b/_sass/vendor/bourbon/functions/_strip-units.scss deleted file mode 100644 index 6afc6e6..0000000 --- a/_sass/vendor/bourbon/functions/_strip-units.scss +++ /dev/null @@ -1,5 +0,0 @@ -// Srtips the units from a value. e.g. 12px -> 12 - -@function strip-units($val) { - @return ($val / ($val * 0 + 1)); -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/functions/_tint-shade.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/functions/_tint-shade.scss b/_sass/vendor/bourbon/functions/_tint-shade.scss deleted file mode 100644 index f717200..0000000 --- a/_sass/vendor/bourbon/functions/_tint-shade.scss +++ /dev/null @@ -1,9 +0,0 @@ -// Add percentage of white to a color -@function tint($color, $percent){ - @return mix(white, $color, $percent); -} - -// Add percentage of black to a color -@function shade($color, $percent){ - @return mix(black, $color, $percent); -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/functions/_transition-property-name.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/functions/_transition-property-name.scss b/_sass/vendor/bourbon/functions/_transition-property-name.scss deleted file mode 100644 index 54cd422..0000000 --- a/_sass/vendor/bourbon/functions/_transition-property-name.scss +++ /dev/null @@ -1,22 +0,0 @@ -// Return vendor-prefixed property names if appropriate -// Example: transition-property-names((transform, color, background), moz) -> -moz-transform, color, background -//************************************************************************// -@function transition-property-names($props, $vendor: false) { - $new-props: (); - - @each $prop in $props { - $new-props: append($new-props, transition-property-name($prop, $vendor), comma); - } - - @return $new-props; -} - -@function transition-property-name($prop, $vendor: false) { - // put other properties that need to be prefixed here aswell - @if $vendor and $prop == transform { - @return unquote('-'+$vendor+'-'+$prop); - } - @else { - @return $prop; - } -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/functions/_unpack.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/functions/_unpack.scss b/_sass/vendor/bourbon/functions/_unpack.scss deleted file mode 100644 index 3775963..0000000 --- a/_sass/vendor/bourbon/functions/_unpack.scss +++ /dev/null @@ -1,17 +0,0 @@ -// Convert shorthand to the 4-value syntax - -@function unpack($shorthand) { - @if length($shorthand) == 1 { - @return nth($shorthand, 1) nth($shorthand, 1) nth($shorthand, 1) nth($shorthand, 1); - } - @else if length($shorthand) == 2 { - @return nth($shorthand, 1) nth($shorthand, 2) nth($shorthand, 1) nth($shorthand, 2); - } - @else if length($shorthand) == 3 { - @return nth($shorthand, 1) nth($shorthand, 2) nth($shorthand, 3) nth($shorthand, 2); - } - @else { - @return $shorthand; - } -} - http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/helpers/_convert-units.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/helpers/_convert-units.scss b/_sass/vendor/bourbon/helpers/_convert-units.scss deleted file mode 100644 index 3443db3..0000000 --- a/_sass/vendor/bourbon/helpers/_convert-units.scss +++ /dev/null @@ -1,15 +0,0 @@ -//************************************************************************// -// Helper function for str-to-num fn. -// Source: http://sassmeister.com/gist/9647408 -//************************************************************************// -@function _convert-units($number, $unit) { - $strings: 'px' 'cm' 'mm' '%' 'ch' 'pica' 'in' 'em' 'rem' 'pt' 'pc' 'ex' 'vw' 'vh' 'vmin' 'vmax', 'deg', 'rad', 'grad', 'turn'; - $units: 1px 1cm 1mm 1% 1ch 1pica 1in 1em 1rem 1pt 1pc 1ex 1vw 1vh 1vmin 1vmax, 1deg, 1rad, 1grad, 1turn; - $index: index($strings, $unit); - - @if not $index { - @warn "Unknown unit `#{$unit}`."; - @return false; - } - @return $number * nth($units, $index); -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/helpers/_gradient-positions-parser.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/helpers/_gradient-positions-parser.scss b/_sass/vendor/bourbon/helpers/_gradient-positions-parser.scss deleted file mode 100644 index 07d30b6..0000000 --- a/_sass/vendor/bourbon/helpers/_gradient-positions-parser.scss +++ /dev/null @@ -1,13 +0,0 @@ -@function _gradient-positions-parser($gradient-type, $gradient-positions) { - @if $gradient-positions - and ($gradient-type == linear) - and (type-of($gradient-positions) != color) { - $gradient-positions: _linear-positions-parser($gradient-positions); - } - @else if $gradient-positions - and ($gradient-type == radial) - and (type-of($gradient-positions) != color) { - $gradient-positions: _radial-positions-parser($gradient-positions); - } - @return $gradient-positions; -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/helpers/_is-num.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/helpers/_is-num.scss b/_sass/vendor/bourbon/helpers/_is-num.scss deleted file mode 100644 index 71459e1..0000000 --- a/_sass/vendor/bourbon/helpers/_is-num.scss +++ /dev/null @@ -1,8 +0,0 @@ -//************************************************************************// -// Helper for linear-gradient-parser -//************************************************************************// -@function _is-num($char) { - $values: '0' '1' '2' '3' '4' '5' '6' '7' '8' '9' 0 1 2 3 4 5 6 7 8 9; - $index: index($values, $char); - @return if($index, true, false); -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/helpers/_linear-angle-parser.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/helpers/_linear-angle-parser.scss b/_sass/vendor/bourbon/helpers/_linear-angle-parser.scss deleted file mode 100644 index e0401ed..0000000 --- a/_sass/vendor/bourbon/helpers/_linear-angle-parser.scss +++ /dev/null @@ -1,25 +0,0 @@ -// Private function for linear-gradient-parser -@function _linear-angle-parser($image, $first-val, $prefix, $suffix) { - $offset: null; - $unit-short: str-slice($first-val, str-length($first-val) - 2, str-length($first-val)); - $unit-long: str-slice($first-val, str-length($first-val) - 3, str-length($first-val)); - - @if ($unit-long == "grad") or - ($unit-long == "turn") { - $offset: if($unit-long == "grad", -100grad * 3, -0.75turn); - } - - @else if ($unit-short == "deg") or - ($unit-short == "rad") { - $offset: if($unit-short == "deg", -90 * 3, 1.6rad); - } - - @if $offset { - $num: _str-to-num($first-val); - - @return ( - webkit-image: -webkit- + $prefix + ($offset - $num) + $suffix, - spec-image: $image - ); - } -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/helpers/_linear-gradient-parser.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/helpers/_linear-gradient-parser.scss b/_sass/vendor/bourbon/helpers/_linear-gradient-parser.scss deleted file mode 100644 index 12bcdcd..0000000 --- a/_sass/vendor/bourbon/helpers/_linear-gradient-parser.scss +++ /dev/null @@ -1,41 +0,0 @@ -@function _linear-gradient-parser($image) { - $image: unquote($image); - $gradients: (); - $start: str-index($image, "("); - $end: str-index($image, ","); - $first-val: str-slice($image, $start + 1, $end - 1); - - $prefix: str-slice($image, 0, $start); - $suffix: str-slice($image, $end, str-length($image)); - - $has-multiple-vals: str-index($first-val, " "); - $has-single-position: unquote(_position-flipper($first-val) + ""); - $has-angle: _is-num(str-slice($first-val, 0, 0)); - - @if $has-multiple-vals { - $gradients: _linear-side-corner-parser($image, $first-val, $prefix, $suffix, $has-multiple-vals); - } - - @else if $has-single-position != "" { - $pos: unquote($has-single-position + ""); - - $gradients: ( - webkit-image: -webkit- + $image, - spec-image: $prefix + "to " + $pos + $suffix - ); - } - - @else if $has-angle { - // Rotate degree for webkit - $gradients: _linear-angle-parser($image, $first-val, $prefix, $suffix); - } - - @else { - $gradients: ( - webkit-image: -webkit- + $image, - spec-image: $image - ); - } - - @return $gradients; -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/helpers/_linear-positions-parser.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/helpers/_linear-positions-parser.scss b/_sass/vendor/bourbon/helpers/_linear-positions-parser.scss deleted file mode 100644 index d26383e..0000000 --- a/_sass/vendor/bourbon/helpers/_linear-positions-parser.scss +++ /dev/null @@ -1,61 +0,0 @@ -@function _linear-positions-parser($pos) { - $type: type-of(nth($pos, 1)); - $spec: null; - $degree: null; - $side: null; - $corner: null; - $length: length($pos); - // Parse Side and corner positions - @if ($length > 1) { - @if nth($pos, 1) == "to" { // Newer syntax - $side: nth($pos, 2); - - @if $length == 2 { // eg. to top - // Swap for backwards compatability - $degree: _position-flipper(nth($pos, 2)); - } - @else if $length == 3 { // eg. to top left - $corner: nth($pos, 3); - } - } - @else if $length == 2 { // Older syntax ("top left") - $side: _position-flipper(nth($pos, 1)); - $corner: _position-flipper(nth($pos, 2)); - } - - @if ("#{$side} #{$corner}" == "left top") or ("#{$side} #{$corner}" == "top left") { - $degree: _position-flipper(#{$side}) _position-flipper(#{$corner}); - } - @else if ("#{$side} #{$corner}" == "right top") or ("#{$side} #{$corner}" == "top right") { - $degree: _position-flipper(#{$side}) _position-flipper(#{$corner}); - } - @else if ("#{$side} #{$corner}" == "right bottom") or ("#{$side} #{$corner}" == "bottom right") { - $degree: _position-flipper(#{$side}) _position-flipper(#{$corner}); - } - @else if ("#{$side} #{$corner}" == "left bottom") or ("#{$side} #{$corner}" == "bottom left") { - $degree: _position-flipper(#{$side}) _position-flipper(#{$corner}); - } - $spec: to $side $corner; - } - @else if $length == 1 { - // Swap for backwards compatability - @if $type == string { - $degree: $pos; - $spec: to _position-flipper($pos); - } - @else { - $degree: -270 - $pos; //rotate the gradient opposite from spec - $spec: $pos; - } - } - $degree: unquote($degree + ","); - $spec: unquote($spec + ","); - @return $degree $spec; -} - -@function _position-flipper($pos) { - @return if($pos == left, right, null) - if($pos == right, left, null) - if($pos == top, bottom, null) - if($pos == bottom, top, null); -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/helpers/_linear-side-corner-parser.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/helpers/_linear-side-corner-parser.scss b/_sass/vendor/bourbon/helpers/_linear-side-corner-parser.scss deleted file mode 100644 index 86ad88f..0000000 --- a/_sass/vendor/bourbon/helpers/_linear-side-corner-parser.scss +++ /dev/null @@ -1,31 +0,0 @@ -// Private function for linear-gradient-parser -@function _linear-side-corner-parser($image, $first-val, $prefix, $suffix, $has-multiple-vals) { - $val-1: str-slice($first-val, 0, $has-multiple-vals - 1 ); - $val-2: str-slice($first-val, $has-multiple-vals + 1, str-length($first-val)); - $val-3: null; - $has-val-3: str-index($val-2, " "); - - @if $has-val-3 { - $val-3: str-slice($val-2, $has-val-3 + 1, str-length($val-2)); - $val-2: str-slice($val-2, 0, $has-val-3 - 1); - } - - $pos: _position-flipper($val-1) _position-flipper($val-2) _position-flipper($val-3); - $pos: unquote($pos + ""); - - // Use old spec for webkit - @if $val-1 == "to" { - @return ( - webkit-image: -webkit- + $prefix + $pos + $suffix, - spec-image: $image - ); - } - - // Bring the code up to spec - @else { - @return ( - webkit-image: -webkit- + $image, - spec-image: $prefix + "to " + $pos + $suffix - ); - } -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/helpers/_radial-arg-parser.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/helpers/_radial-arg-parser.scss b/_sass/vendor/bourbon/helpers/_radial-arg-parser.scss deleted file mode 100644 index a3a3704..0000000 --- a/_sass/vendor/bourbon/helpers/_radial-arg-parser.scss +++ /dev/null @@ -1,69 +0,0 @@ -@function _radial-arg-parser($G1, $G2, $pos, $shape-size) { - @each $value in $G1, $G2 { - $first-val: nth($value, 1); - $pos-type: type-of($first-val); - $spec-at-index: null; - - // Determine if spec was passed to mixin - @if type-of($value) == list { - $spec-at-index: if(index($value, at), index($value, at), false); - } - @if $spec-at-index { - @if $spec-at-index > 1 { - @for $i from 1 through ($spec-at-index - 1) { - $shape-size: $shape-size nth($value, $i); - } - @for $i from ($spec-at-index + 1) through length($value) { - $pos: $pos nth($value, $i); - } - } - @else if $spec-at-index == 1 { - @for $i from ($spec-at-index + 1) through length($value) { - $pos: $pos nth($value, $i); - } - } - $G1: null; - } - - // If not spec calculate correct values - @else { - @if ($pos-type != color) or ($first-val != "transparent") { - @if ($pos-type == number) - or ($first-val == "center") - or ($first-val == "top") - or ($first-val == "right") - or ($first-val == "bottom") - or ($first-val == "left") { - - $pos: $value; - - @if $pos == $G1 { - $G1: null; - } - } - - @else if - ($first-val == "ellipse") - or ($first-val == "circle") - or ($first-val == "closest-side") - or ($first-val == "closest-corner") - or ($first-val == "farthest-side") - or ($first-val == "farthest-corner") - or ($first-val == "contain") - or ($first-val == "cover") { - - $shape-size: $value; - - @if $value == $G1 { - $G1: null; - } - - @else if $value == $G2 { - $G2: null; - } - } - } - } - } - @return $G1, $G2, $pos, $shape-size; -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/helpers/_radial-gradient-parser.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/helpers/_radial-gradient-parser.scss b/_sass/vendor/bourbon/helpers/_radial-gradient-parser.scss deleted file mode 100644 index 6dde50f..0000000 --- a/_sass/vendor/bourbon/helpers/_radial-gradient-parser.scss +++ /dev/null @@ -1,50 +0,0 @@ -@function _radial-gradient-parser($image) { - $image: unquote($image); - $gradients: (); - $start: str-index($image, "("); - $end: str-index($image, ","); - $first-val: str-slice($image, $start + 1, $end - 1); - - $prefix: str-slice($image, 0, $start); - $suffix: str-slice($image, $end, str-length($image)); - - $is-spec-syntax: str-index($first-val, "at"); - - @if $is-spec-syntax and $is-spec-syntax > 1 { - $keyword: str-slice($first-val, 1, $is-spec-syntax - 2); - $pos: str-slice($first-val, $is-spec-syntax + 3, str-length($first-val)); - $pos: append($pos, $keyword, comma); - - $gradients: ( - webkit-image: -webkit- + $prefix + $pos + $suffix, - spec-image: $image - ) - } - - @else if $is-spec-syntax == 1 { - $pos: str-slice($first-val, $is-spec-syntax + 3, str-length($first-val)); - - $gradients: ( - webkit-image: -webkit- + $prefix + $pos + $suffix, - spec-image: $image - ) - } - - @else if str-index($image, "cover") or str-index($image, "contain") { - @warn "Radial-gradient needs to be updated to conform to latest spec."; - - $gradients: ( - webkit-image: null, - spec-image: $image - ) - } - - @else { - $gradients: ( - webkit-image: -webkit- + $image, - spec-image: $image - ) - } - - @return $gradients; -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/helpers/_radial-positions-parser.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/helpers/_radial-positions-parser.scss b/_sass/vendor/bourbon/helpers/_radial-positions-parser.scss deleted file mode 100644 index 6a5b477..0000000 --- a/_sass/vendor/bourbon/helpers/_radial-positions-parser.scss +++ /dev/null @@ -1,18 +0,0 @@ -@function _radial-positions-parser($gradient-pos) { - $shape-size: nth($gradient-pos, 1); - $pos: nth($gradient-pos, 2); - $shape-size-spec: _shape-size-stripper($shape-size); - - $pre-spec: unquote(if($pos, "#{$pos}, ", null)) - unquote(if($shape-size, "#{$shape-size},", null)); - $pos-spec: if($pos, "at #{$pos}", null); - - $spec: "#{$shape-size-spec} #{$pos-spec}"; - - // Add comma - @if ($spec != ' ') { - $spec: "#{$spec}," - } - - @return $pre-spec $spec; -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/helpers/_render-gradients.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/helpers/_render-gradients.scss b/_sass/vendor/bourbon/helpers/_render-gradients.scss deleted file mode 100644 index 5765676..0000000 --- a/_sass/vendor/bourbon/helpers/_render-gradients.scss +++ /dev/null @@ -1,26 +0,0 @@ -// User for linear and radial gradients within background-image or border-image properties - -@function _render-gradients($gradient-positions, $gradients, $gradient-type, $vendor: false) { - $pre-spec: null; - $spec: null; - $vendor-gradients: null; - @if $gradient-type == linear { - @if $gradient-positions { - $pre-spec: nth($gradient-positions, 1); - $spec: nth($gradient-positions, 2); - } - } - @else if $gradient-type == radial { - $pre-spec: nth($gradient-positions, 1); - $spec: nth($gradient-positions, 2); - } - - @if $vendor { - $vendor-gradients: -#{$vendor}-#{$gradient-type}-gradient(#{$pre-spec} $gradients); - } - @else if $vendor == false { - $vendor-gradients: "#{$gradient-type}-gradient(#{$spec} #{$gradients})"; - $vendor-gradients: unquote($vendor-gradients); - } - @return $vendor-gradients; -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/helpers/_shape-size-stripper.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/helpers/_shape-size-stripper.scss b/_sass/vendor/bourbon/helpers/_shape-size-stripper.scss deleted file mode 100644 index ee5eda4..0000000 --- a/_sass/vendor/bourbon/helpers/_shape-size-stripper.scss +++ /dev/null @@ -1,10 +0,0 @@ -@function _shape-size-stripper($shape-size) { - $shape-size-spec: null; - @each $value in $shape-size { - @if ($value == "cover") or ($value == "contain") { - $value: null; - } - $shape-size-spec: "#{$shape-size-spec} #{$value}"; - } - @return $shape-size-spec; -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/helpers/_str-to-num.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/helpers/_str-to-num.scss b/_sass/vendor/bourbon/helpers/_str-to-num.scss deleted file mode 100644 index b3d6168..0000000 --- a/_sass/vendor/bourbon/helpers/_str-to-num.scss +++ /dev/null @@ -1,50 +0,0 @@ -//************************************************************************// -// Helper function for linear/radial-gradient-parsers. -// Source: http://sassmeister.com/gist/9647408 -//************************************************************************// -@function _str-to-num($string) { - // Matrices - $strings: '0' '1' '2' '3' '4' '5' '6' '7' '8' '9'; - $numbers: 0 1 2 3 4 5 6 7 8 9; - - // Result - $result: 0; - $divider: 0; - $minus: false; - - // Looping through all characters - @for $i from 1 through str-length($string) { - $character: str-slice($string, $i, $i); - $index: index($strings, $character); - - @if $character == '-' { - $minus: true; - } - - @else if $character == '.' { - $divider: 1; - } - - @else { - @if not $index { - $result: if($minus, $result * -1, $result); - @return _convert-units($result, str-slice($string, $i)); - } - - $number: nth($numbers, $index); - - @if $divider == 0 { - $result: $result * 10; - } - - @else { - // Move the decimal dot to the left - $divider: $divider * 10; - $number: $number / $divider; - } - - $result: $result + $number; - } - } - @return if($minus, $result * -1, $result); -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/settings/_prefixer.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/settings/_prefixer.scss b/_sass/vendor/bourbon/settings/_prefixer.scss deleted file mode 100644 index ecab49f..0000000 --- a/_sass/vendor/bourbon/settings/_prefixer.scss +++ /dev/null @@ -1,6 +0,0 @@ -// Variable settings for /addons/prefixer.scss -$prefix-for-webkit: true !default; -$prefix-for-mozilla: true !default; -$prefix-for-microsoft: true !default; -$prefix-for-opera: true !default; -$prefix-for-spec: true !default; // required for keyframe mixin http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/bourbon/settings/_px-to-em.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/bourbon/settings/_px-to-em.scss b/_sass/vendor/bourbon/settings/_px-to-em.scss deleted file mode 100644 index f2f9a3e..0000000 --- a/_sass/vendor/bourbon/settings/_px-to-em.scss +++ /dev/null @@ -1 +0,0 @@ -$em-base: 16px !default; http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/font-awesome/_animated.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/font-awesome/_animated.scss b/_sass/vendor/font-awesome/_animated.scss deleted file mode 100644 index 8a020db..0000000 --- a/_sass/vendor/font-awesome/_animated.scss +++ /dev/null @@ -1,34 +0,0 @@ -// Spinning Icons -// -------------------------- - -.#{$fa-css-prefix}-spin { - -webkit-animation: fa-spin 2s infinite linear; - animation: fa-spin 2s infinite linear; -} - -.#{$fa-css-prefix}-pulse { - -webkit-animation: fa-spin 1s infinite steps(8); - animation: fa-spin 1s infinite steps(8); -} - -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} - -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/font-awesome/_bordered-pulled.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/font-awesome/_bordered-pulled.scss b/_sass/vendor/font-awesome/_bordered-pulled.scss deleted file mode 100644 index d4b85a0..0000000 --- a/_sass/vendor/font-awesome/_bordered-pulled.scss +++ /dev/null @@ -1,25 +0,0 @@ -// Bordered & Pulled -// ------------------------- - -.#{$fa-css-prefix}-border { - padding: .2em .25em .15em; - border: solid .08em $fa-border-color; - border-radius: .1em; -} - -.#{$fa-css-prefix}-pull-left { float: left; } -.#{$fa-css-prefix}-pull-right { float: right; } - -.#{$fa-css-prefix} { - &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } - &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } -} - -/* Deprecated as of 4.4.0 */ -.pull-right { float: right; } -.pull-left { float: left; } - -.#{$fa-css-prefix} { - &.pull-left { margin-right: .3em; } - &.pull-right { margin-left: .3em; } -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/font-awesome/_core.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/font-awesome/_core.scss b/_sass/vendor/font-awesome/_core.scss deleted file mode 100644 index 7425ef8..0000000 --- a/_sass/vendor/font-awesome/_core.scss +++ /dev/null @@ -1,12 +0,0 @@ -// Base Class Definition -// ------------------------- - -.#{$fa-css-prefix} { - display: inline-block; - font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration - font-size: inherit; // can't have font-size inherit on line above, so need to override - text-rendering: auto; // optimizelegibility throws things off #1094 - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -} http://git-wip-us.apache.org/repos/asf/incubator-ariatosca-website/blob/77b31961/_sass/vendor/font-awesome/_fixed-width.scss ---------------------------------------------------------------------- diff --git a/_sass/vendor/font-awesome/_fixed-width.scss b/_sass/vendor/font-awesome/_fixed-width.scss deleted file mode 100644 index b221c98..0000000 --- a/_sass/vendor/font-awesome/_fixed-width.scss +++ /dev/null @@ -1,6 +0,0 @@ -// Fixed Width Icons -// ------------------------- -.#{$fa-css-prefix}-fw { - width: (18em / 14); - text-align: center; -}
