forked from madr/css3-sass-mixins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_all.sass
139 lines (121 loc) · 5.01 KB
/
_all.sass
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
// ---- CSS3 SASS MIXINS ----
// https://github.com/madr/css3-sass-mixins
//
// Copyright (C) 2011 by Anders Ytterström
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
// ---- LEGACY IE SUPPORT USING FILTERS ----
// Should IE filters be used or not?
// PROS: gradients, drop shadows etc will be handled by css.
// CONS: will harm the site performance badly,
// especially on sites with heavy rendering and scripting.
$useIEFilters: 0
// might be 0 or 1. disabled by default.
// ---- /LEGACY IE SUPPORT USING FILTERS ----
=background-size($value)
-webkit-background-size: $value
background-size: $value
=border-image($path, $offsets, $repeats)
-moz-border-image: $path $offsets $repeats
-o-border-image: $path $offsets $repeats
-webkit-border-image: $path $offsets $repeats
border-image: $path $offsets $repeats
=border-radius($values)
-moz-border-radius: $values
-webkit-border-radius: $values
border-radius: $values
-moz-background-clip: padding
-webkit-background-clip: padding-box
background-clip: padding-box
=box-shadow($x, $y, $offset, $hex, $ie: $useIEFilters)
-moz-box-shadow: $x $y $offset $hex
-webkit-box-shadow: $x $y $offset $hex
box-shadow: $x $y $offset $hex
@if $ie == 1
$iecolor: "#" + red($hex) + green($hex) + blue($hex)
filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=#{$x}, OffY=#{$y}, Color='#{$iecolor}')
-ms-filter: quote(progid:DXImageTransform.Microsoft.dropshadow(OffX=#{$x}, OffY=#{$y}, Color='#{$iecolor}'))
=box-sizing($value)
-moz-box-sizing: $value
-webkit-box-sizing: $value
box-sizing: $value
// requires sass 3.2
//@mixin keyframes {
// @-moz-keyframes { @content; }
// @-ms-keyframes { @content; }
// @-o-keyframes { @content; }
// @-webkit-keyframes { @content; }
// @keyframes { @content; }
//}
=linear-gradient($from, $to, $ie: $useIEFilters)
@if $ie != 1
background-color: $to
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, $from), color-stop(1, $to))
background-image: -webkit-linear-gradient(top, $from, $to)
background-image: -moz-linear-gradient(top, $from, $to)
background-image: -ms-linear-gradient(top, $from, $to)
background-image: -o-linear-gradient(top, $from, $to)
background-image: linear-gradient(top, bottom, $from, $to)
@if $ie == 1
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$from}', endColorstr='#{$to}')
-ms-filter: quote(progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$from}', endColorstr='#{$to}'))
=rgba-bg($hex, $alpha, $ie: $useIEFilters)
@if $ie == 1
background-color: none
$hexopac: ie-hex-str(rgba($hex, $alpha))
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#{$hexopac}',EndColorStr='#{$hexopac}}')
-ms-filter: quote(progid:DXImageTransform.Microsoft.gradient(startColorStr='#{$hexopac}',EndColorStr='#{$hexopac}'))
@else
background-color: $hex
background-color: rgba($hex, $alpha)
=perspective($perspective)
-moz-perspective: $perspective
-ms-perspective: $perspective
-webkit-perspective: $perspective
perspective: $perspective
-moz-transform-style: preserve-3d
-ms-transform-style: preserve-3d
-webkit-transform-style: preserve-3d
transform-style: preserve-3d
=transform($transforms)
-moz-transform: $transforms
-o-transform: $transforms
-ms-transform: $transforms
-webkit-transform: $transforms
transform: $transforms
=matrix($a, $b, $c, $d, $e, $f)
-moz-transform: matrix($a, $b, $c, $d, #{$e}px, #{$f}px)
-o-transform: matrix($a, $b, $c, $d, $e, $f)
-ms-transform: matrix($a, $b, $c, $d, $e, $f)
-webkit-transform: matrix($a, $b, $c, $d, $e, $f)
transform: matrix($a, $b, $c, $d, $e, $f)
=rotate($deg)
+transform(rotate(#{$deg}deg))
=scale($size)
+transform(scale(#{$size}))
=translate($x, $y)
+transform(translate($x, $y))
=transition($value)
-moz-transition: $value
-o-transition: $value
-ms-transition: $value
-webkit-transition: $value
transition: $value
// ==== /CSS3 SASS MIXINS ====