221 lines
6.0 KiB
Plaintext
221 lines
6.0 KiB
Plaintext
// Border radius
|
|
//
|
|
.border-radius(@radius) {
|
|
-webkit-border-radius: @radius;
|
|
-moz-border-radius: @radius;
|
|
border-radius: @radius;
|
|
}
|
|
|
|
// Single side border-radius
|
|
.border-top-radius(@radius) {
|
|
border-top-right-radius: @radius;
|
|
border-top-left-radius: @radius;
|
|
}
|
|
.border-right-radius(@radius) {
|
|
border-bottom-right-radius: @radius;
|
|
border-top-right-radius: @radius;
|
|
}
|
|
.border-bottom-radius(@radius) {
|
|
border-bottom-right-radius: @radius;
|
|
border-bottom-left-radius: @radius;
|
|
}
|
|
.border-left-radius(@radius) {
|
|
border-bottom-left-radius: @radius;
|
|
border-top-left-radius: @radius;
|
|
}
|
|
|
|
// Drop shadows
|
|
//
|
|
// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's
|
|
// supported browsers that have box shadow capabilities now support the
|
|
// standard `box-shadow` property.
|
|
.box-shadow(@shadow) {
|
|
-webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1
|
|
box-shadow: @shadow;
|
|
}
|
|
|
|
// Transitions
|
|
.transition(@transition) {
|
|
-webkit-transition: @transition;
|
|
transition: @transition;
|
|
}
|
|
.transition-property(@transition-property) {
|
|
-webkit-transition-property: @transition-property;
|
|
transition-property: @transition-property;
|
|
}
|
|
.transition-delay(@transition-delay) {
|
|
-webkit-transition-delay: @transition-delay;
|
|
transition-delay: @transition-delay;
|
|
}
|
|
.transition-duration(@transition-duration) {
|
|
-webkit-transition-duration: @transition-duration;
|
|
transition-duration: @transition-duration;
|
|
}
|
|
.transition-transform(@transition) {
|
|
-webkit-transition: -webkit-transform @transition;
|
|
-moz-transition: -moz-transform @transition;
|
|
-o-transition: -o-transform @transition;
|
|
transition: transform @transition;
|
|
}
|
|
|
|
// Transformations
|
|
.rotate(@degrees) {
|
|
-webkit-transform: rotate(@degrees);
|
|
-ms-transform: rotate(@degrees); // IE9 only
|
|
transform: rotate(@degrees);
|
|
}
|
|
.scale(@ratio; @ratio-y...) {
|
|
-webkit-transform: scale(@ratio, @ratio-y);
|
|
-ms-transform: scale(@ratio, @ratio-y); // IE9 only
|
|
transform: scale(@ratio, @ratio-y);
|
|
}
|
|
.translate(@x; @y) {
|
|
-webkit-transform: translate(@x, @y);
|
|
-ms-transform: translate(@x, @y); // IE9 only
|
|
transform: translate(@x, @y);
|
|
}
|
|
.skew(@x; @y) {
|
|
-webkit-transform: skew(@x, @y);
|
|
-ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+
|
|
transform: skew(@x, @y);
|
|
}
|
|
.translate3d(@x; @y; @z) {
|
|
-webkit-transform: translate3d(@x, @y, @z);
|
|
transform: translate3d(@x, @y, @z);
|
|
}
|
|
|
|
.rotateX(@degrees) {
|
|
-webkit-transform: rotateX(@degrees);
|
|
-ms-transform: rotateX(@degrees); // IE9 only
|
|
transform: rotateX(@degrees);
|
|
}
|
|
.rotateY(@degrees) {
|
|
-webkit-transform: rotateY(@degrees);
|
|
-ms-transform: rotateY(@degrees); // IE9 only
|
|
transform: rotateY(@degrees);
|
|
}
|
|
.perspective(@perspective) {
|
|
-webkit-perspective: @perspective;
|
|
-moz-perspective: @perspective;
|
|
perspective: @perspective;
|
|
}
|
|
.perspective-origin(@perspective) {
|
|
-webkit-perspective-origin: @perspective;
|
|
-moz-perspective-origin: @perspective;
|
|
perspective-origin: @perspective;
|
|
}
|
|
.transform-origin(@origin) {
|
|
-webkit-transform-origin: @origin;
|
|
-moz-transform-origin: @origin;
|
|
-ms-transform-origin: @origin; // IE9 only
|
|
transform-origin: @origin;
|
|
}
|
|
|
|
// Animations
|
|
.animation(@animation) {
|
|
-webkit-animation: @animation;
|
|
animation: @animation;
|
|
}
|
|
.animation-name(@name) {
|
|
-webkit-animation-name: @name;
|
|
animation-name: @name;
|
|
}
|
|
.animation-duration(@duration) {
|
|
-webkit-animation-duration: @duration;
|
|
animation-duration: @duration;
|
|
}
|
|
.animation-timing-function(@timing-function) {
|
|
-webkit-animation-timing-function: @timing-function;
|
|
animation-timing-function: @timing-function;
|
|
}
|
|
.animation-delay(@delay) {
|
|
-webkit-animation-delay: @delay;
|
|
animation-delay: @delay;
|
|
}
|
|
.animation-iteration-count(@iteration-count) {
|
|
-webkit-animation-iteration-count: @iteration-count;
|
|
animation-iteration-count: @iteration-count;
|
|
}
|
|
.animation-direction(@direction) {
|
|
-webkit-animation-direction: @direction;
|
|
animation-direction: @direction;
|
|
}
|
|
|
|
// Backface visibility
|
|
// Prevent browsers from flickering when using CSS 3D transforms.
|
|
// Default value is `visible`, but can be changed to `hidden`
|
|
.backface-visibility(@visibility){
|
|
-webkit-backface-visibility: @visibility;
|
|
-moz-backface-visibility: @visibility;
|
|
backface-visibility: @visibility;
|
|
}
|
|
|
|
// Box sizing
|
|
.box-sizing(@boxmodel) {
|
|
-webkit-box-sizing: @boxmodel;
|
|
-moz-box-sizing: @boxmodel;
|
|
box-sizing: @boxmodel;
|
|
}
|
|
|
|
// User select
|
|
// For selecting text on the page
|
|
.user-select(@select) {
|
|
-webkit-user-select: @select;
|
|
-moz-user-select: @select;
|
|
-ms-user-select: @select; // IE10+
|
|
user-select: @select;
|
|
}
|
|
|
|
// Resize anything
|
|
.resizable(@direction) {
|
|
resize: @direction; // Options: horizontal, vertical, both
|
|
overflow: auto; // Safari fix
|
|
}
|
|
|
|
// CSS3 Content Columns
|
|
.content-columns(@column-count; @column-gap: @grid-gutter-width) {
|
|
-webkit-column-count: @column-count;
|
|
-moz-column-count: @column-count;
|
|
column-count: @column-count;
|
|
-webkit-column-gap: @column-gap;
|
|
-moz-column-gap: @column-gap;
|
|
column-gap: @column-gap;
|
|
}
|
|
|
|
// Optional hyphenation
|
|
.hyphens(@mode: auto) {
|
|
word-wrap: break-word;
|
|
-webkit-hyphens: @mode;
|
|
-moz-hyphens: @mode;
|
|
-ms-hyphens: @mode; // IE10+
|
|
-o-hyphens: @mode;
|
|
hyphens: @mode;
|
|
}
|
|
|
|
// Opacity
|
|
.opacity(@opacity) {
|
|
opacity: @opacity;
|
|
// IE8 filter
|
|
@opacity-ie: (@opacity * 100);
|
|
filter: ~"alpha(opacity=@{opacity-ie})";
|
|
}
|
|
|
|
// Universal transform
|
|
// --------------------------------------------------
|
|
|
|
.transform(@transform) {
|
|
-webkit-transform: @transform;
|
|
-ms-transform: @transform; // IE9+
|
|
transform: @transform;
|
|
}
|
|
|
|
// Transformations
|
|
//
|
|
|
|
.scaleAxes(@x, @y) {
|
|
-webkit-transform: scale(@x, @y);
|
|
-moz-transform: scale(@x, @y);
|
|
-ms-transform: scale(@x, @y);
|
|
-o-transform: scale(@x, @y);
|
|
transform: scale(@x, @y);
|
|
} |