diff options
| author | Mark Otto <[email protected]> | 2011-10-11 19:31:25 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2011-10-11 19:31:25 -0700 |
| commit | fa8b1dc12dcfe993f1e4185f95ebe0981fbeb0f0 (patch) | |
| tree | 53dcc6d2f5b2badd47388a8b1fc238029fa30810 /lib/mixins.less | |
| parent | b6443905411dcdcec54d7eaad2f998a582271728 (diff) | |
| download | bootstrap-fa8b1dc12dcfe993f1e4185f95ebe0981fbeb0f0.tar.xz bootstrap-fa8b1dc12dcfe993f1e4185f95ebe0981fbeb0f0.zip | |
remove color scheme variables, remove font-face mixin
Diffstat (limited to 'lib/mixins.less')
| -rw-r--r-- | lib/mixins.less | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/lib/mixins.less b/lib/mixins.less index 9c27346c2..22a30a1c8 100644 --- a/lib/mixins.less +++ b/lib/mixins.less @@ -71,20 +71,6 @@ } } -// Font face generator -.font-face(@fontFamily, @fileName, @style, @weight) { - @font-face { - font-family: @fontFamily; - font-style: @style; - font-weight: @weight; - src: url('@{fileName}.eot'); - src: url('@{fileName}.eot?#iefix') format('embedded-opentype'), - url('@{fileName}.woff') format('woff'), - url('@{fileName}.ttf') format('truetype'), - url('@{fileName}.svg#@{fontFamily}') format('svg'); - } -} - // Grid System .fixed-container() { width: @siteWidth; @@ -115,6 +101,9 @@ -webkit-border-radius: @radius; -moz-border-radius: @radius; border-radius: @radius; + -webkit-background-clip: padding-box; + -moz-background-clip: padding; + background-clip: padding-box; } .border-radius-custom(@topLeft, @topRight, @bottomRight, @bottomLeft) { -webkit-border-top-left-radius: @topLeft; |
