~cmiller/mailpile/upstream

« back to all changes in this revision

Viewing changes to static/default/less/libraries/bootstrap.less

  • Committer: Brennan Novak
  • Date: 2014-02-28 11:16:54 UTC
  • Revision ID: git-v1:fb68856e531d4c597a1d2860604fc4be6538a86d
Moved Mixins into Libraries folder

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Horizontal dividers
 
2
// -------------------------
 
3
// Dividers (basically an hr) within dropdowns and nav lists
 
4
.nav-divider(@color: #e5e5e5) {
 
5
  height: 1px;
 
6
  margin: ((@line-height-computed / 2) - 1) 0;
 
7
  overflow: hidden;
 
8
  background-color: @color;
 
9
}
 
10
 
 
11
 
 
12
// Reset filters for IE
 
13
// When you need to remove a gradient background, do not forget to use this to reset
 
14
// the IE filter for IE9 and below.
 
15
.reset-filter() {
 
16
  filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
 
17
}
 
18
 
 
19
 
 
20
// Drop shadows
 
21
//
 
22
// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's
 
23
//   supported browsers that have box shadow capabilities now support the
 
24
//   standard `box-shadow` property.
 
25
.box-shadow(@shadow) {
 
26
  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1
 
27
          box-shadow: @shadow;
 
28
}
 
29
 
 
30
 
 
31
// Transitions
 
32
.transition(@transition) {
 
33
  -webkit-transition: @transition;
 
34
          transition: @transition;
 
35
}
 
36
.transition-property(@transition-property) {
 
37
  -webkit-transition-property: @transition-property;
 
38
          transition-property: @transition-property;
 
39
}
 
40
.transition-delay(@transition-delay) {
 
41
  -webkit-transition-delay: @transition-delay;
 
42
          transition-delay: @transition-delay;
 
43
}
 
44
.transition-duration(@transition-duration) {
 
45
  -webkit-transition-duration: @transition-duration;
 
46
          transition-duration: @transition-duration;
 
47
}
 
48
.transition-transform(@transition) {
 
49
  -webkit-transition: -webkit-transform @transition;
 
50
     -moz-transition: -moz-transform @transition;
 
51
       -o-transition: -o-transform @transition;
 
52
          transition: transform @transition;
 
53
}
 
 
b'\\ No newline at end of file'