bootstrap-sass 2.3.2.2 → 3.0.0.0.rc
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of bootstrap-sass might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.gitignore +9 -0
- data/.travis.yml +8 -2
- data/CHANGELOG.md +4 -0
- data/CONTRIBUTING.md +12 -4
- data/README.md +87 -74
- data/Rakefile +31 -3
- data/bootstrap-sass.gemspec +14 -2
- data/lib/bootstrap-sass/engine.rb +1 -1
- data/lib/bootstrap-sass/version.rb +4 -0
- data/tasks/converter.rb +829 -0
- data/templates/project/_variables.scss.erb +6 -0
- data/templates/project/manifest.rb +8 -13
- data/templates/project/styles.scss +1 -6
- data/test/compass_test.rb +8 -0
- data/test/compilation_test.rb +1 -1
- data/test/dummy/README.rdoc +3 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/images/.keep +0 -0
- data/test/dummy/app/assets/javascripts/application.js +2 -0
- data/test/dummy/app/assets/stylesheets/application.css.sass +1 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/pages_controller.rb +4 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/pages/root.html.slim +11 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +17 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +26 -0
- data/test/dummy/config/environments/production.rb +76 -0
- data/test/dummy/config/environments/test.rb +30 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +18 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +3 -0
- data/test/dummy/config/locales/es.yml +3 -0
- data/test/dummy/config/routes.rb +3 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/lib/assets/.keep +0 -0
- data/test/dummy/log/.keep +0 -0
- data/test/dummy/log/development.log +0 -0
- data/test/dummy/public/404.html +58 -0
- data/test/dummy/public/422.html +58 -0
- data/test/dummy/public/500.html +57 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/gemfiles/sass_3_2.gemfile +1 -1
- data/test/gemfiles/sass_3_3.gemfile +6 -0
- data/test/pages_test.rb +14 -0
- data/test/support/integration_test.rb +29 -0
- data/test/test_helper.rb +26 -1
- data/vendor/assets/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
- data/vendor/assets/fonts/bootstrap/glyphicons-halflings-regular.svg +228 -0
- data/vendor/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
- data/vendor/assets/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
- data/vendor/assets/javascripts/bootstrap.js +12 -13
- data/vendor/assets/javascripts/bootstrap/affix.js +126 -0
- data/vendor/assets/javascripts/bootstrap/alert.js +98 -0
- data/vendor/assets/javascripts/bootstrap/button.js +109 -0
- data/vendor/assets/javascripts/bootstrap/carousel.js +217 -0
- data/vendor/assets/javascripts/bootstrap/collapse.js +179 -0
- data/vendor/assets/javascripts/bootstrap/dropdown.js +154 -0
- data/vendor/assets/javascripts/bootstrap/modal.js +246 -0
- data/vendor/assets/javascripts/bootstrap/popover.js +117 -0
- data/vendor/assets/javascripts/bootstrap/scrollspy.js +158 -0
- data/vendor/assets/javascripts/bootstrap/tab.js +135 -0
- data/vendor/assets/javascripts/bootstrap/tooltip.js +386 -0
- data/vendor/assets/javascripts/bootstrap/transition.js +56 -0
- data/vendor/assets/stylesheets/bootstrap/_alerts.scss +46 -58
- data/vendor/assets/stylesheets/bootstrap/_badges.scss +51 -0
- data/vendor/assets/stylesheets/bootstrap/_breadcrumbs.scss +8 -9
- data/vendor/assets/stylesheets/bootstrap/_button-groups.scss +173 -154
- data/vendor/assets/stylesheets/bootstrap/_buttons.scss +97 -165
- data/vendor/assets/stylesheets/bootstrap/_carousel.scss +116 -65
- data/vendor/assets/stylesheets/bootstrap/_close.scss +11 -8
- data/vendor/assets/stylesheets/bootstrap/_code.scss +16 -21
- data/vendor/assets/stylesheets/bootstrap/_component-animations.scss +10 -3
- data/vendor/assets/stylesheets/bootstrap/_dropdowns.scss +94 -148
- data/vendor/assets/stylesheets/bootstrap/_forms.scss +222 -559
- data/vendor/assets/stylesheets/bootstrap/_glyphicons.scss +232 -0
- data/vendor/assets/stylesheets/bootstrap/_grid.scss +336 -11
- data/vendor/assets/stylesheets/bootstrap/_input-groups.scss +127 -0
- data/vendor/assets/stylesheets/bootstrap/_jumbotron.scss +40 -0
- data/vendor/assets/stylesheets/bootstrap/_labels.scss +58 -0
- data/vendor/assets/stylesheets/bootstrap/_list-group.scss +90 -0
- data/vendor/assets/stylesheets/bootstrap/_media.scss +8 -7
- data/vendor/assets/stylesheets/bootstrap/_mixins.scss +468 -434
- data/vendor/assets/stylesheets/bootstrap/_modals.scss +103 -52
- data/vendor/assets/stylesheets/bootstrap/_navbar.scss +511 -383
- data/vendor/assets/stylesheets/bootstrap/_navs.scss +169 -349
- data/vendor/assets/stylesheets/bootstrap/_normalize.scss +396 -0
- data/vendor/assets/stylesheets/bootstrap/_pager.scss +45 -33
- data/vendor/assets/stylesheets/bootstrap/_pagination.scss +65 -105
- data/vendor/assets/stylesheets/bootstrap/_panels.scss +148 -0
- data/vendor/assets/stylesheets/bootstrap/_popovers.scss +51 -51
- data/vendor/assets/stylesheets/bootstrap/_print.scss +100 -0
- data/vendor/assets/stylesheets/bootstrap/_progress-bars.scss +28 -55
- data/vendor/assets/stylesheets/bootstrap/_responsive-utilities.scss +180 -45
- data/vendor/assets/stylesheets/bootstrap/_scaffolding.scss +101 -24
- data/vendor/assets/stylesheets/bootstrap/_tables.scss +169 -168
- data/vendor/assets/stylesheets/bootstrap/_theme.scss +232 -0
- data/vendor/assets/stylesheets/bootstrap/_thumbnails.scss +11 -33
- data/vendor/assets/stylesheets/bootstrap/_tooltip.scss +45 -20
- data/vendor/assets/stylesheets/bootstrap/_type.scss +101 -110
- data/vendor/assets/stylesheets/bootstrap/_utilities.scss +19 -22
- data/vendor/assets/stylesheets/bootstrap/_variables.scss +498 -179
- data/vendor/assets/stylesheets/bootstrap/_wells.scss +7 -7
- data/vendor/assets/stylesheets/bootstrap/bootstrap.scss +29 -33
- metadata +201 -34
- data/asseturl.patch +0 -15
- data/templates/project/_variables.scss +0 -301
- data/update-bootstrap.sh +0 -25
- data/vendor/assets/images/glyphicons-halflings-white.png +0 -0
- data/vendor/assets/images/glyphicons-halflings.png +0 -0
- data/vendor/assets/javascripts/bootstrap-affix.js +0 -117
- data/vendor/assets/javascripts/bootstrap-alert.js +0 -99
- data/vendor/assets/javascripts/bootstrap-button.js +0 -105
- data/vendor/assets/javascripts/bootstrap-carousel.js +0 -207
- data/vendor/assets/javascripts/bootstrap-collapse.js +0 -167
- data/vendor/assets/javascripts/bootstrap-dropdown.js +0 -169
- data/vendor/assets/javascripts/bootstrap-modal.js +0 -247
- data/vendor/assets/javascripts/bootstrap-popover.js +0 -114
- data/vendor/assets/javascripts/bootstrap-scrollspy.js +0 -162
- data/vendor/assets/javascripts/bootstrap-tab.js +0 -144
- data/vendor/assets/javascripts/bootstrap-tooltip.js +0 -361
- data/vendor/assets/javascripts/bootstrap-transition.js +0 -60
- data/vendor/assets/javascripts/bootstrap-typeahead.js +0 -335
- data/vendor/assets/stylesheets/bootstrap-responsive.scss +0 -1
- data/vendor/assets/stylesheets/bootstrap/_accordion.scss +0 -34
- data/vendor/assets/stylesheets/bootstrap/_hero-unit.scss +0 -25
- data/vendor/assets/stylesheets/bootstrap/_labels-badges.scss +0 -83
- data/vendor/assets/stylesheets/bootstrap/_layouts.scss +0 -16
- data/vendor/assets/stylesheets/bootstrap/_reset.scss +0 -216
- data/vendor/assets/stylesheets/bootstrap/_responsive-1200px-min.scss +0 -28
- data/vendor/assets/stylesheets/bootstrap/_responsive-767px-max.scss +0 -193
- data/vendor/assets/stylesheets/bootstrap/_responsive-768px-979px.scss +0 -19
- data/vendor/assets/stylesheets/bootstrap/_responsive-navbar.scss +0 -189
- data/vendor/assets/stylesheets/bootstrap/_sprites.scss +0 -197
- data/vendor/assets/stylesheets/bootstrap/responsive.scss +0 -48
@@ -0,0 +1,127 @@
|
|
1
|
+
//
|
2
|
+
// Input groups
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
// Base styles
|
6
|
+
// -------------------------
|
7
|
+
.input-group {
|
8
|
+
position: relative; // For dropdowns
|
9
|
+
display: table;
|
10
|
+
border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table
|
11
|
+
|
12
|
+
// Undo padding and float of grid classes
|
13
|
+
&.col {
|
14
|
+
float: none;
|
15
|
+
padding-left: 0;
|
16
|
+
padding-right: 0;
|
17
|
+
}
|
18
|
+
|
19
|
+
.form-control {
|
20
|
+
width: 100%;
|
21
|
+
margin-bottom: 0;
|
22
|
+
}
|
23
|
+
}
|
24
|
+
|
25
|
+
// Sizing options
|
26
|
+
//
|
27
|
+
// Remix the default form control sizing classes into new ones for easier
|
28
|
+
// manipulation.
|
29
|
+
|
30
|
+
.input-group-lg > .form-control,
|
31
|
+
.input-group-lg > .input-group-addon,
|
32
|
+
.input-group-lg > .input-group-btn > .btn { @extend .input-lg; }
|
33
|
+
.input-group-sm > .form-control,
|
34
|
+
.input-group-sm > .input-group-addon,
|
35
|
+
.input-group-sm > .input-group-btn > .btn { @extend .input-sm; }
|
36
|
+
|
37
|
+
|
38
|
+
// Display as table-cell
|
39
|
+
// -------------------------
|
40
|
+
.input-group-addon,
|
41
|
+
.input-group-btn,
|
42
|
+
.input-group .form-control {
|
43
|
+
display: table-cell;
|
44
|
+
|
45
|
+
&:not(:first-child):not(:last-child) {
|
46
|
+
border-radius: 0;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
// Addon and addon wrapper for buttons
|
50
|
+
.input-group-addon,
|
51
|
+
.input-group-btn {
|
52
|
+
width: 1%;
|
53
|
+
white-space: nowrap;
|
54
|
+
vertical-align: middle; // Match the inputs
|
55
|
+
}
|
56
|
+
|
57
|
+
// Text input groups
|
58
|
+
// -------------------------
|
59
|
+
.input-group-addon {
|
60
|
+
padding: $padding-base-vertical $padding-base-horizontal;
|
61
|
+
font-size: $font-size-base;
|
62
|
+
font-weight: normal;
|
63
|
+
line-height: 1;
|
64
|
+
text-align: center;
|
65
|
+
background-color: $input-group-addon-bg;
|
66
|
+
border: 1px solid $input-group-addon-border-color;
|
67
|
+
border-radius: $border-radius-base;
|
68
|
+
|
69
|
+
// Sizing
|
70
|
+
&.input-sm {
|
71
|
+
padding: $padding-small-vertical $padding-small-horizontal;
|
72
|
+
font-size: $font-size-small;
|
73
|
+
border-radius: $border-radius-small;
|
74
|
+
}
|
75
|
+
&.input-lg {
|
76
|
+
padding: $padding-large-vertical $padding-large-horizontal;
|
77
|
+
font-size: $font-size-large;
|
78
|
+
border-radius: $border-radius-large;
|
79
|
+
}
|
80
|
+
|
81
|
+
// Nuke default margins from checkboxes and radios to vertically center within.
|
82
|
+
input[type="radio"],
|
83
|
+
input[type="checkbox"] {
|
84
|
+
margin-top: 0;
|
85
|
+
}
|
86
|
+
}
|
87
|
+
|
88
|
+
// Reset rounded corners
|
89
|
+
.input-group .form-control:first-child,
|
90
|
+
.input-group-addon:first-child,
|
91
|
+
.input-group-btn:first-child > .btn,
|
92
|
+
.input-group-btn:first-child > .dropdown-toggle,
|
93
|
+
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
|
94
|
+
@include border-right-radius(0);
|
95
|
+
}
|
96
|
+
.input-group-addon:first-child {
|
97
|
+
border-right: 0;
|
98
|
+
}
|
99
|
+
.input-group .form-control:last-child,
|
100
|
+
.input-group-addon:last-child,
|
101
|
+
.input-group-btn:last-child > .btn,
|
102
|
+
.input-group-btn:last-child > .dropdown-toggle,
|
103
|
+
.input-group-btn:first-child > .btn:not(:first-child) {
|
104
|
+
@include border-left-radius(0);
|
105
|
+
}
|
106
|
+
.input-group-addon:last-child {
|
107
|
+
border-left: 0;
|
108
|
+
}
|
109
|
+
|
110
|
+
// Button input groups
|
111
|
+
// -------------------------
|
112
|
+
.input-group-btn {
|
113
|
+
position: relative;
|
114
|
+
white-space: nowrap;
|
115
|
+
}
|
116
|
+
.input-group-btn > .btn {
|
117
|
+
position: relative;
|
118
|
+
// Jankily prevent input button groups from wrapping
|
119
|
+
+ .btn {
|
120
|
+
margin-left: -4px;
|
121
|
+
}
|
122
|
+
// Bring the "active" button to the front
|
123
|
+
&:hover,
|
124
|
+
&:active {
|
125
|
+
z-index: 2;
|
126
|
+
}
|
127
|
+
}
|
@@ -0,0 +1,40 @@
|
|
1
|
+
//
|
2
|
+
// Jumbotron
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
.jumbotron {
|
7
|
+
padding: $jumbotron-padding;
|
8
|
+
margin-bottom: $jumbotron-padding;
|
9
|
+
font-size: ($font-size-base * 1.5);
|
10
|
+
font-weight: 200;
|
11
|
+
line-height: ($line-height-base * 1.5);
|
12
|
+
color: $jumbotron-color;
|
13
|
+
background-color: $jumbotron-bg;
|
14
|
+
|
15
|
+
h1 {
|
16
|
+
line-height: 1;
|
17
|
+
color: $jumbotron-heading-color;
|
18
|
+
}
|
19
|
+
p {
|
20
|
+
line-height: 1.4;
|
21
|
+
}
|
22
|
+
|
23
|
+
.container & {
|
24
|
+
border-radius: $border-radius-large; // Only round corners at higher resolutions if contained in a container
|
25
|
+
}
|
26
|
+
|
27
|
+
@media screen and (min-width: $screen-tablet) {
|
28
|
+
padding-top: ($jumbotron-padding * 1.6);
|
29
|
+
padding-bottom: ($jumbotron-padding * 1.6);
|
30
|
+
|
31
|
+
.container & {
|
32
|
+
padding-left: ($jumbotron-padding * 2);
|
33
|
+
padding-right: ($jumbotron-padding * 2);
|
34
|
+
}
|
35
|
+
|
36
|
+
h1 {
|
37
|
+
font-size: ($font-size-base * 4.5);
|
38
|
+
}
|
39
|
+
}
|
40
|
+
}
|
@@ -0,0 +1,58 @@
|
|
1
|
+
//
|
2
|
+
// Labels
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
.label {
|
6
|
+
display: inline;
|
7
|
+
padding: .2em .6em .3em;
|
8
|
+
font-size: 75%;
|
9
|
+
font-weight: bold;
|
10
|
+
line-height: 1;
|
11
|
+
color: $label-color;
|
12
|
+
text-align: center;
|
13
|
+
white-space: nowrap;
|
14
|
+
vertical-align: baseline;
|
15
|
+
border-radius: .25em;
|
16
|
+
|
17
|
+
// Add hover effects, but only for links
|
18
|
+
&[href] {
|
19
|
+
&:hover,
|
20
|
+
&:focus {
|
21
|
+
color: $label-link-hover-color;
|
22
|
+
text-decoration: none;
|
23
|
+
cursor: pointer;
|
24
|
+
}
|
25
|
+
}
|
26
|
+
|
27
|
+
// Empty labels collapse automatically (not available in IE8)
|
28
|
+
&:empty {
|
29
|
+
display: none;
|
30
|
+
}
|
31
|
+
}
|
32
|
+
|
33
|
+
// Colors
|
34
|
+
// Contextual variations (linked labels get darker on :hover)
|
35
|
+
|
36
|
+
.label-default {
|
37
|
+
@include label-variant($label-default-bg);
|
38
|
+
}
|
39
|
+
|
40
|
+
.label-primary {
|
41
|
+
@include label-variant($label-primary-bg);
|
42
|
+
}
|
43
|
+
|
44
|
+
.label-success {
|
45
|
+
@include label-variant($label-success-bg);
|
46
|
+
}
|
47
|
+
|
48
|
+
.label-info {
|
49
|
+
@include label-variant($label-info-bg);
|
50
|
+
}
|
51
|
+
|
52
|
+
.label-warning {
|
53
|
+
@include label-variant($label-warning-bg);
|
54
|
+
}
|
55
|
+
|
56
|
+
.label-danger {
|
57
|
+
@include label-variant($label-danger-bg);
|
58
|
+
}
|
@@ -0,0 +1,90 @@
|
|
1
|
+
//
|
2
|
+
// List groups
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
// Base class
|
6
|
+
//
|
7
|
+
// Easily usable on <ul>, <ol>, or <div>.
|
8
|
+
.list-group {
|
9
|
+
// No need to set list-style: none; since .list-group-item is block level
|
10
|
+
margin-bottom: 20px;
|
11
|
+
padding-left: 0; // reset padding because ul and ol
|
12
|
+
}
|
13
|
+
|
14
|
+
// Individual list items
|
15
|
+
// -------------------------
|
16
|
+
|
17
|
+
.list-group-item {
|
18
|
+
position: relative;
|
19
|
+
display: block;
|
20
|
+
padding: 10px 15px;
|
21
|
+
// Place the border on the list items and negative margin up for better styling
|
22
|
+
margin-bottom: -1px;
|
23
|
+
background-color: $list-group-bg;
|
24
|
+
border: 1px solid $list-group-border;
|
25
|
+
|
26
|
+
// Round the first and last items
|
27
|
+
&:first-child {
|
28
|
+
@include border-top-radius($list-group-border-radius);
|
29
|
+
}
|
30
|
+
&:last-child {
|
31
|
+
margin-bottom: 0;
|
32
|
+
@include border-bottom-radius($list-group-border-radius);
|
33
|
+
}
|
34
|
+
|
35
|
+
// Align badges within list items
|
36
|
+
> .badge {
|
37
|
+
float: right;
|
38
|
+
}
|
39
|
+
> .badge + .badge {
|
40
|
+
margin-right: 5px;
|
41
|
+
}
|
42
|
+
|
43
|
+
// [converter] extracted a& to a.list-group-item
|
44
|
+
|
45
|
+
// Active class on item itself, not parent
|
46
|
+
&.active,
|
47
|
+
&.active:hover,
|
48
|
+
&.active:focus {
|
49
|
+
z-index: 2; // Place active items above their siblings for proper border styling
|
50
|
+
color: $list-group-active-color;
|
51
|
+
background-color: $list-group-active-bg;
|
52
|
+
border-color: $list-group-active-border;
|
53
|
+
|
54
|
+
// Force color to inherit for custom content
|
55
|
+
.list-group-item-heading {
|
56
|
+
color: inherit;
|
57
|
+
}
|
58
|
+
.list-group-item-text {
|
59
|
+
color: lighten($list-group-active-bg, 40%);
|
60
|
+
}
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
// Linked list items
|
65
|
+
a.list-group-item {
|
66
|
+
color: $list-group-link-color;
|
67
|
+
|
68
|
+
.list-group-item-heading {
|
69
|
+
color: $list-group-link-heading-color;
|
70
|
+
}
|
71
|
+
|
72
|
+
// Hover state
|
73
|
+
&:hover,
|
74
|
+
&:focus {
|
75
|
+
text-decoration: none;
|
76
|
+
background-color: $list-group-hover-bg;
|
77
|
+
}
|
78
|
+
}
|
79
|
+
|
80
|
+
// Custom content options
|
81
|
+
// -------------------------
|
82
|
+
|
83
|
+
.list-group-item-heading {
|
84
|
+
margin-top: 0;
|
85
|
+
margin-bottom: 5px;
|
86
|
+
}
|
87
|
+
.list-group-item-text {
|
88
|
+
margin-bottom: 0;
|
89
|
+
line-height: 1.3;
|
90
|
+
}
|
@@ -10,7 +10,6 @@
|
|
10
10
|
.media,
|
11
11
|
.media-body {
|
12
12
|
overflow: hidden;
|
13
|
-
*overflow: visible;
|
14
13
|
zoom: 1;
|
15
14
|
}
|
16
15
|
|
@@ -37,11 +36,13 @@
|
|
37
36
|
// Media image alignment
|
38
37
|
// -------------------------
|
39
38
|
|
40
|
-
.media
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
39
|
+
.media {
|
40
|
+
> .pull-left {
|
41
|
+
margin-right: 10px;
|
42
|
+
}
|
43
|
+
> .pull-right {
|
44
|
+
margin-left: 10px;
|
45
|
+
}
|
45
46
|
}
|
46
47
|
|
47
48
|
|
@@ -50,6 +51,6 @@
|
|
50
51
|
|
51
52
|
// Undo default ul/ol styles
|
52
53
|
.media-list {
|
53
|
-
|
54
|
+
padding-left: 0;
|
54
55
|
list-style: none;
|
55
56
|
}
|
@@ -3,21 +3,24 @@
|
|
3
3
|
// --------------------------------------------------
|
4
4
|
|
5
5
|
|
6
|
-
//
|
7
|
-
//
|
6
|
+
// Utilities
|
7
|
+
// -------------------------
|
8
8
|
|
9
9
|
// Clearfix
|
10
|
-
//
|
11
|
-
//
|
12
|
-
|
13
|
-
|
10
|
+
// Source: http://nicolasgallagher.com/micro-clearfix-hack/
|
11
|
+
//
|
12
|
+
// For modern browsers
|
13
|
+
// 1. The space content is one way to avoid an Opera bug when the
|
14
|
+
// contenteditable attribute is included anywhere else in the document.
|
15
|
+
// Otherwise it causes space to appear at the top and bottom of elements
|
16
|
+
// that are clearfixed.
|
17
|
+
// 2. The use of `table` rather than `block` is only necessary if using
|
18
|
+
// `:before` to contain the top-margins of child elements.
|
19
|
+
@mixin clearfix() {
|
14
20
|
&:before,
|
15
21
|
&:after {
|
16
|
-
|
17
|
-
|
18
|
-
// Fixes Opera/contenteditable bug:
|
19
|
-
// http://nicolasgallagher.com/micro-clearfix-hack/#comment-36952
|
20
|
-
line-height: 0;
|
22
|
+
content: " "; /* 1 */
|
23
|
+
display: table; /* 2 */
|
21
24
|
}
|
22
25
|
&:after {
|
23
26
|
clear: both;
|
@@ -25,7 +28,6 @@
|
|
25
28
|
}
|
26
29
|
|
27
30
|
// Webkit-style focus
|
28
|
-
// ------------------
|
29
31
|
@mixin tab-focus() {
|
30
32
|
// Default
|
31
33
|
outline: thin dotted #333;
|
@@ -35,41 +37,14 @@
|
|
35
37
|
}
|
36
38
|
|
37
39
|
// Center-align a block level element
|
38
|
-
// ----------------------------------
|
39
40
|
@mixin center-block() {
|
40
41
|
display: block;
|
41
42
|
margin-left: auto;
|
42
43
|
margin-right: auto;
|
43
44
|
}
|
44
45
|
|
45
|
-
// IE7 inline-block
|
46
|
-
// ----------------
|
47
|
-
@mixin ie7-inline-block() {
|
48
|
-
*display: inline; /* IE7 inline-block hack */
|
49
|
-
*zoom: 1;
|
50
|
-
}
|
51
|
-
|
52
|
-
// IE7 likes to collapse whitespace on either side of the inline-block elements.
|
53
|
-
// Ems because we're attempting to match the width of a space character. Left
|
54
|
-
// version is for form buttons, which typically come after other elements, and
|
55
|
-
// right version is for icons, which come before. Applying both is ok, but it will
|
56
|
-
// mean that space between those elements will be .6em (~2 space characters) in IE7,
|
57
|
-
// instead of the 1 space in other browsers.
|
58
|
-
@mixin ie7-restore-left-whitespace() {
|
59
|
-
*margin-left: .3em;
|
60
|
-
|
61
|
-
&:first-child {
|
62
|
-
*margin-left: 0;
|
63
|
-
}
|
64
|
-
}
|
65
|
-
|
66
|
-
@mixin ie7-restore-right-whitespace() {
|
67
|
-
*margin-right: .3em;
|
68
|
-
}
|
69
|
-
|
70
46
|
// Sizing shortcuts
|
71
|
-
|
72
|
-
@mixin size($height, $width) {
|
47
|
+
@mixin size($width, $height) {
|
73
48
|
width: $width;
|
74
49
|
height: $height;
|
75
50
|
}
|
@@ -78,21 +53,14 @@
|
|
78
53
|
}
|
79
54
|
|
80
55
|
// Placeholder text
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
}
|
86
|
-
&:-ms-input-placeholder {
|
87
|
-
color: $color;
|
88
|
-
}
|
89
|
-
&::-webkit-input-placeholder {
|
90
|
-
color: $color;
|
91
|
-
}
|
56
|
+
@mixin placeholder($color: $input-color-placeholder) {
|
57
|
+
&:-moz-placeholder { color: $color; } // Firefox 4-18
|
58
|
+
&::-moz-placeholder { color: $color; } // Firefox 19+
|
59
|
+
&:-ms-input-placeholder { color: $color; } // Internet Explorer 10+
|
60
|
+
&::-webkit-input-placeholder { color: $color; } // Safari and Chrome
|
92
61
|
}
|
93
62
|
|
94
63
|
// Text overflow
|
95
|
-
// -------------------------
|
96
64
|
// Requires inline-block or block for proper styling
|
97
65
|
@mixin text-overflow() {
|
98
66
|
overflow: hidden;
|
@@ -101,10 +69,9 @@
|
|
101
69
|
}
|
102
70
|
|
103
71
|
// CSS image replacement
|
104
|
-
// -------------------------
|
105
72
|
// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
|
106
|
-
@mixin hide-text {
|
107
|
-
font: 0/0 a;
|
73
|
+
@mixin hide-text() {
|
74
|
+
font: #{0/0} a;
|
108
75
|
color: transparent;
|
109
76
|
text-shadow: none;
|
110
77
|
background-color: transparent;
|
@@ -112,204 +79,83 @@
|
|
112
79
|
}
|
113
80
|
|
114
81
|
|
115
|
-
// FONTS
|
116
|
-
// --------------------------------------------------
|
117
|
-
|
118
|
-
@mixin font-family-serif() {
|
119
|
-
font-family: $serifFontFamily;
|
120
|
-
}
|
121
|
-
@mixin font-family-sans-serif() {
|
122
|
-
font-family: $sansFontFamily;
|
123
|
-
}
|
124
|
-
@mixin font-family-monospace() {
|
125
|
-
font-family: $monoFontFamily;
|
126
|
-
}
|
127
|
-
@mixin font-shorthand($size: $baseFontSize, $weight: normal, $lineHeight: $baseLineHeight) {
|
128
|
-
font-size: $size;
|
129
|
-
font-weight: $weight;
|
130
|
-
line-height: $lineHeight;
|
131
|
-
}
|
132
|
-
@mixin font-serif($size: $baseFontSize, $weight: normal, $lineHeight: $baseLineHeight) {
|
133
|
-
@include font-family-serif();
|
134
|
-
@include font-shorthand($size, $weight, $lineHeight);
|
135
|
-
}
|
136
|
-
@mixin font-sans-serif($size: $baseFontSize, $weight: normal, $lineHeight: $baseLineHeight) {
|
137
|
-
@include font-family-sans-serif();
|
138
|
-
@include font-shorthand($size, $weight, $lineHeight);
|
139
|
-
}
|
140
|
-
@mixin font-monospace($size: $baseFontSize, $weight: normal, $lineHeight: $baseLineHeight) {
|
141
|
-
@include font-family-monospace();
|
142
|
-
@include font-shorthand($size, $weight, $lineHeight);
|
143
|
-
}
|
144
|
-
|
145
|
-
|
146
|
-
// FORMS
|
147
|
-
// --------------------------------------------------
|
148
|
-
|
149
|
-
// Block level inputs
|
150
|
-
@mixin input-block-level {
|
151
|
-
display: block;
|
152
|
-
width: 100%;
|
153
|
-
min-height: $inputHeight; // Make inputs at least the height of their button counterpart (base line-height + padding + border)
|
154
|
-
@include box-sizing(border-box); // Makes inputs behave like true block-level elements
|
155
|
-
}
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
// Mixin for form field states
|
160
|
-
@mixin formFieldState($textColor: #555, $borderColor: #ccc, $backgroundColor: #f5f5f5) {
|
161
|
-
// Set the text color
|
162
|
-
.control-label,
|
163
|
-
.help-block,
|
164
|
-
.help-inline {
|
165
|
-
color: $textColor;
|
166
|
-
}
|
167
|
-
// Style inputs accordingly
|
168
|
-
.checkbox,
|
169
|
-
.radio,
|
170
|
-
input,
|
171
|
-
select,
|
172
|
-
textarea {
|
173
|
-
color: $textColor;
|
174
|
-
}
|
175
|
-
input,
|
176
|
-
select,
|
177
|
-
textarea {
|
178
|
-
border-color: $borderColor;
|
179
|
-
@include box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work
|
180
|
-
&:focus {
|
181
|
-
border-color: darken($borderColor, 10%);
|
182
|
-
@include box-shadow(inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten($borderColor, 20%));
|
183
|
-
}
|
184
|
-
}
|
185
|
-
// Give a small background color for input-prepend/-append
|
186
|
-
.input-prepend .add-on,
|
187
|
-
.input-append .add-on {
|
188
|
-
color: $textColor;
|
189
|
-
background-color: $backgroundColor;
|
190
|
-
border-color: $textColor;
|
191
|
-
}
|
192
|
-
}
|
193
|
-
|
194
|
-
|
195
82
|
|
196
83
|
// CSS3 PROPERTIES
|
197
84
|
// --------------------------------------------------
|
198
85
|
|
199
|
-
//
|
200
|
-
@mixin border-radius($radius) {
|
201
|
-
-webkit-border-radius: $radius;
|
202
|
-
-moz-border-radius: $radius;
|
203
|
-
border-radius: $radius;
|
204
|
-
}
|
205
|
-
|
206
|
-
// Single Corner Border Radius
|
207
|
-
@mixin border-top-left-radius($radius) {
|
208
|
-
-webkit-border-top-left-radius: $radius;
|
209
|
-
-moz-border-radius-topleft: $radius;
|
210
|
-
border-top-left-radius: $radius;
|
211
|
-
}
|
212
|
-
@mixin border-top-right-radius($radius) {
|
213
|
-
-webkit-border-top-right-radius: $radius;
|
214
|
-
-moz-border-radius-topright: $radius;
|
215
|
-
border-top-right-radius: $radius;
|
216
|
-
}
|
217
|
-
@mixin border-bottom-right-radius($radius) {
|
218
|
-
-webkit-border-bottom-right-radius: $radius;
|
219
|
-
-moz-border-radius-bottomright: $radius;
|
220
|
-
border-bottom-right-radius: $radius;
|
221
|
-
}
|
222
|
-
@mixin border-bottom-left-radius($radius) {
|
223
|
-
-webkit-border-bottom-left-radius: $radius;
|
224
|
-
-moz-border-radius-bottomleft: $radius;
|
225
|
-
border-bottom-left-radius: $radius;
|
226
|
-
}
|
227
|
-
|
228
|
-
// Single Side Border Radius
|
86
|
+
// Single side border-radius
|
229
87
|
@mixin border-top-radius($radius) {
|
230
|
-
|
231
|
-
|
88
|
+
border-top-right-radius: $radius;
|
89
|
+
border-top-left-radius: $radius;
|
232
90
|
}
|
233
91
|
@mixin border-right-radius($radius) {
|
234
|
-
|
235
|
-
|
92
|
+
border-bottom-right-radius: $radius;
|
93
|
+
border-top-right-radius: $radius;
|
236
94
|
}
|
237
95
|
@mixin border-bottom-radius($radius) {
|
238
|
-
|
239
|
-
|
96
|
+
border-bottom-right-radius: $radius;
|
97
|
+
border-bottom-left-radius: $radius;
|
240
98
|
}
|
241
99
|
@mixin border-left-radius($radius) {
|
242
|
-
|
243
|
-
|
100
|
+
border-bottom-left-radius: $radius;
|
101
|
+
border-top-left-radius: $radius;
|
244
102
|
}
|
245
103
|
|
246
104
|
// Drop shadows
|
247
105
|
@mixin box-shadow($shadow...) {
|
248
|
-
-webkit-box-shadow: $shadow;
|
249
|
-
-moz-box-shadow: $shadow;
|
106
|
+
-webkit-box-shadow: $shadow; // iOS <4.3 & Android <4.1
|
250
107
|
box-shadow: $shadow;
|
251
108
|
}
|
252
109
|
|
253
110
|
// Transitions
|
254
111
|
@mixin transition($transition...) {
|
255
112
|
-webkit-transition: $transition;
|
256
|
-
-moz-transition: $transition;
|
257
|
-
-o-transition: $transition;
|
258
113
|
transition: $transition;
|
259
114
|
}
|
260
115
|
@mixin transition-delay($transition-delay) {
|
261
116
|
-webkit-transition-delay: $transition-delay;
|
262
|
-
-moz-transition-delay: $transition-delay;
|
263
|
-
-o-transition-delay: $transition-delay;
|
264
117
|
transition-delay: $transition-delay;
|
265
118
|
}
|
266
119
|
@mixin transition-duration($transition-duration) {
|
267
120
|
-webkit-transition-duration: $transition-duration;
|
268
|
-
-moz-transition-duration: $transition-duration;
|
269
|
-
-o-transition-duration: $transition-duration;
|
270
121
|
transition-duration: $transition-duration;
|
271
122
|
}
|
123
|
+
@mixin transition-transform($transition...) {
|
124
|
+
-webkit-transition: -webkit-transform $transition;
|
125
|
+
-moz-transition: -moz-transform $transition;
|
126
|
+
-o-transition: -o-transform $transition;
|
127
|
+
transition: transform $transition;
|
128
|
+
}
|
272
129
|
|
273
130
|
// Transformations
|
274
131
|
@mixin rotate($degrees) {
|
275
132
|
-webkit-transform: rotate($degrees);
|
276
|
-
|
277
|
-
-ms-transform: rotate($degrees);
|
278
|
-
-o-transform: rotate($degrees);
|
133
|
+
-ms-transform: rotate($degrees); // IE9+
|
279
134
|
transform: rotate($degrees);
|
280
135
|
}
|
281
136
|
@mixin scale($ratio) {
|
282
137
|
-webkit-transform: scale($ratio);
|
283
|
-
|
284
|
-
-ms-transform: scale($ratio);
|
285
|
-
-o-transform: scale($ratio);
|
138
|
+
-ms-transform: scale($ratio); // IE9+
|
286
139
|
transform: scale($ratio);
|
287
140
|
}
|
288
141
|
@mixin translate($x, $y) {
|
289
142
|
-webkit-transform: translate($x, $y);
|
290
|
-
|
291
|
-
-ms-transform: translate($x, $y);
|
292
|
-
-o-transform: translate($x, $y);
|
143
|
+
-ms-transform: translate($x, $y); // IE9+
|
293
144
|
transform: translate($x, $y);
|
294
145
|
}
|
295
146
|
@mixin skew($x, $y) {
|
296
147
|
-webkit-transform: skew($x, $y);
|
297
|
-
|
298
|
-
-ms-transform: skewX($x) skewY($y); // See https://github.com/twitter/bootstrap/issues/4885
|
299
|
-
-o-transform: skew($x, $y);
|
148
|
+
-ms-transform: skewX($x) skewY($y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+
|
300
149
|
transform: skew($x, $y);
|
301
|
-
-webkit-backface-visibility: hidden; // See https://github.com/twitter/bootstrap/issues/5319
|
302
150
|
}
|
303
151
|
@mixin translate3d($x, $y, $z) {
|
304
152
|
-webkit-transform: translate3d($x, $y, $z);
|
305
|
-
-moz-transform: translate3d($x, $y, $z);
|
306
|
-
-o-transform: translate3d($x, $y, $z);
|
307
153
|
transform: translate3d($x, $y, $z);
|
308
154
|
}
|
309
155
|
|
310
156
|
// Backface visibility
|
311
157
|
// Prevent browsers from flickering when using CSS 3D transforms.
|
312
|
-
// Default value is `visible`, but can be changed to `hidden
|
158
|
+
// Default value is `visible`, but can be changed to `hidden`
|
313
159
|
// See git pull https://github.com/dannykeane/bootstrap.git backface-visibility for examples
|
314
160
|
@mixin backface-visibility($visibility){
|
315
161
|
-webkit-backface-visibility: $visibility;
|
@@ -317,23 +163,6 @@
|
|
317
163
|
backface-visibility: $visibility;
|
318
164
|
}
|
319
165
|
|
320
|
-
// Background clipping
|
321
|
-
// Heads up: FF 3.6 and under need "padding" instead of "padding-box"
|
322
|
-
@mixin background-clip($clip) {
|
323
|
-
-webkit-background-clip: $clip;
|
324
|
-
-moz-background-clip: $clip;
|
325
|
-
background-clip: $clip;
|
326
|
-
}
|
327
|
-
|
328
|
-
// Background sizing
|
329
|
-
@mixin background-size($size) {
|
330
|
-
-webkit-background-size: $size;
|
331
|
-
-moz-background-size: $size;
|
332
|
-
-o-background-size: $size;
|
333
|
-
background-size: $size;
|
334
|
-
}
|
335
|
-
|
336
|
-
|
337
166
|
// Box sizing
|
338
167
|
@mixin box-sizing($boxmodel) {
|
339
168
|
-webkit-box-sizing: $boxmodel;
|
@@ -346,7 +175,7 @@
|
|
346
175
|
@mixin user-select($select) {
|
347
176
|
-webkit-user-select: $select;
|
348
177
|
-moz-user-select: $select;
|
349
|
-
-ms-user-select: $select;
|
178
|
+
-ms-user-select: $select; // IE10+
|
350
179
|
-o-user-select: $select;
|
351
180
|
user-select: $select;
|
352
181
|
}
|
@@ -358,13 +187,13 @@
|
|
358
187
|
}
|
359
188
|
|
360
189
|
// CSS3 Content Columns
|
361
|
-
@mixin content-columns($
|
362
|
-
-webkit-column-count: $
|
363
|
-
-moz-column-count: $
|
364
|
-
column-count: $
|
365
|
-
-webkit-column-gap: $
|
366
|
-
-moz-column-gap: $
|
367
|
-
column-gap: $
|
190
|
+
@mixin content-columns($column-count, $column-gap: $grid-gutter-width) {
|
191
|
+
-webkit-column-count: $column-count;
|
192
|
+
-moz-column-count: $column-count;
|
193
|
+
column-count: $column-count;
|
194
|
+
-webkit-column-gap: $column-gap;
|
195
|
+
-moz-column-gap: $column-gap;
|
196
|
+
column-gap: $column-gap;
|
368
197
|
}
|
369
198
|
|
370
199
|
// Optional hyphenation
|
@@ -372,166 +201,328 @@
|
|
372
201
|
word-wrap: break-word;
|
373
202
|
-webkit-hyphens: $mode;
|
374
203
|
-moz-hyphens: $mode;
|
375
|
-
-ms-hyphens: $mode;
|
204
|
+
-ms-hyphens: $mode; // IE10+
|
376
205
|
-o-hyphens: $mode;
|
377
206
|
hyphens: $mode;
|
378
207
|
}
|
379
208
|
|
380
209
|
// Opacity
|
381
210
|
@mixin opacity($opacity) {
|
382
|
-
opacity: $opacity
|
383
|
-
filter
|
211
|
+
opacity: $opacity;
|
212
|
+
// IE8 filter
|
213
|
+
$opacity-ie: ($opacity * 100);
|
214
|
+
filter: #{alpha(opacity=$opacity-ie)};
|
384
215
|
}
|
385
216
|
|
386
217
|
|
387
218
|
|
388
|
-
//
|
219
|
+
// GRADIENTS
|
389
220
|
// --------------------------------------------------
|
390
221
|
|
391
|
-
// Add an alphatransparency value to any background or border color (via Elyse Holladay)
|
392
|
-
@mixin translucent-background($color: $white, $alpha: 1) {
|
393
|
-
background-color: hsla(hue($color), saturation($color), lightness($color), $alpha);
|
394
|
-
}
|
395
222
|
|
396
|
-
@mixin translucent-border($color: $white, $alpha: 1) {
|
397
|
-
border-color: hsla(hue($color), saturation($color), lightness($color), $alpha);
|
398
|
-
@include background-clip(padding-box);
|
399
|
-
}
|
400
223
|
|
401
|
-
//
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
224
|
+
// Horizontal gradient, from left to right
|
225
|
+
//
|
226
|
+
// Creates two color stops, start and end, by specifying a color and position for each color stop.
|
227
|
+
// Color stops are not available in IE9 and below.
|
228
|
+
@mixin gradient-horizontal($start-color: #555, $end-color: #333, $start-percent: 0%, $end-percent: 100%) {
|
229
|
+
background-image: -webkit-gradient(linear, $start-percent top, $end-percent top, from($start-color), to($end-color)); // Safari 4+, Chrome 2+
|
230
|
+
background-image: -webkit-linear-gradient(left, color-stop($start-color $start-percent), color-stop($end-color $end-percent)); // Safari 5.1+, Chrome 10+
|
231
|
+
background-image: -moz-linear-gradient(left, $start-color $start-percent, $end-color $end-percent); // FF 3.6+
|
232
|
+
background-image: linear-gradient(to right, $start-color $start-percent, $end-color $end-percent); // Standard, IE10
|
233
|
+
background-repeat: repeat-x;
|
234
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}', GradientType=1); // IE9 and down
|
408
235
|
}
|
409
236
|
|
410
|
-
//
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
background-image: -webkit-
|
416
|
-
background-image: -
|
417
|
-
background-image:
|
418
|
-
background-
|
419
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($startColor)}', endColorstr='#{ie-hex-str($endColor)}', GradientType=1); // IE9 and down
|
420
|
-
}
|
421
|
-
@mixin gradient-vertical($startColor: #555, $endColor: #333) {
|
422
|
-
background-color: mix($startColor, $endColor, 60%);
|
423
|
-
background-image: -moz-linear-gradient(top, $startColor, $endColor); // FF 3.6+
|
424
|
-
background-image: -webkit-gradient(linear, 0 0, 0 100%, from($startColor), to($endColor)); // Safari 4+, Chrome 2+
|
425
|
-
background-image: -webkit-linear-gradient(top, $startColor, $endColor); // Safari 5.1+, Chrome 10+
|
426
|
-
background-image: -o-linear-gradient(top, $startColor, $endColor); // Opera 11.10
|
427
|
-
background-image: linear-gradient(to bottom, $startColor, $endColor); // Standard, IE10
|
237
|
+
// Vertical gradient, from top to bottom
|
238
|
+
//
|
239
|
+
// Creates two color stops, start and end, by specifying a color and position for each color stop.
|
240
|
+
// Color stops are not available in IE9 and below.
|
241
|
+
@mixin gradient-vertical($start-color: #555, $end-color: #333, $start-percent: 0%, $end-percent: 100%) {
|
242
|
+
background-image: -webkit-gradient(linear, left $start-percent, left $end-percent, from($start-color), to($end-color)); // Safari 4+, Chrome 2+
|
243
|
+
background-image: -webkit-linear-gradient(top, $start-color, $start-percent, $end-color, $end-percent); // Safari 5.1+, Chrome 10+
|
244
|
+
background-image: -moz-linear-gradient(top, $start-color $start-percent, $end-color $end-percent); // FF 3.6+
|
245
|
+
background-image: linear-gradient(to bottom, $start-color $start-percent, $end-color $end-percent); // Standard, IE10
|
428
246
|
background-repeat: repeat-x;
|
429
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($
|
247
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}', GradientType=0); // IE9 and down
|
430
248
|
}
|
431
|
-
|
432
|
-
|
249
|
+
|
250
|
+
@mixin gradient-directional($start-color: #555, $end-color: #333, $deg: 45deg) {
|
433
251
|
background-repeat: repeat-x;
|
434
|
-
background-image: -
|
435
|
-
background-image: -
|
436
|
-
background-image:
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
background-
|
441
|
-
background-image: -
|
442
|
-
background-image:
|
443
|
-
background-image: -moz-linear-gradient(left, $startColor, $midColor $colorStop, $endColor);
|
444
|
-
background-image: -o-linear-gradient(left, $startColor, $midColor $colorStop, $endColor);
|
445
|
-
background-image: linear-gradient(to right, $startColor, $midColor $colorStop, $endColor);
|
252
|
+
background-image: -webkit-linear-gradient($deg, $start-color, $end-color); // Safari 5.1+, Chrome 10+
|
253
|
+
background-image: -moz-linear-gradient($deg, $start-color, $end-color); // FF 3.6+
|
254
|
+
background-image: linear-gradient($deg, $start-color, $end-color); // Standard, IE10
|
255
|
+
}
|
256
|
+
@mixin gradient-horizontal-three-colors($start-color: #00b3ee, $mid-color: #7a43b6, $color-stop: 50%, $end-color: #c3325f) {
|
257
|
+
background-image: -webkit-gradient(left, linear, 0 0, 0 100%, from($start-color), color-stop($color-stop, $mid-color), to($end-color));
|
258
|
+
background-image: -webkit-linear-gradient(left, $start-color, $mid-color $color-stop, $end-color);
|
259
|
+
background-image: -moz-linear-gradient(left, $start-color, $mid-color $color-stop, $end-color);
|
260
|
+
background-image: linear-gradient(to right, $start-color, $mid-color $color-stop, $end-color);
|
446
261
|
background-repeat: no-repeat;
|
447
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($
|
262
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}', GradientType=1); // IE9 and down, gets no color-stop at all for proper fallback
|
448
263
|
}
|
449
|
-
|
450
|
-
|
451
|
-
background-
|
452
|
-
background-image: -
|
453
|
-
background-image:
|
454
|
-
background-image: -moz-linear-gradient(top, $startColor, $midColor $colorStop, $endColor);
|
455
|
-
background-image: -o-linear-gradient($startColor, $midColor $colorStop, $endColor);
|
456
|
-
background-image: linear-gradient($startColor, $midColor $colorStop, $endColor);
|
264
|
+
@mixin gradient-vertical-three-colors($start-color: #00b3ee, $mid-color: #7a43b6, $color-stop: 50%, $end-color: #c3325f) {
|
265
|
+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from($start-color), color-stop($color-stop, $mid-color), to($end-color));
|
266
|
+
background-image: -webkit-linear-gradient($start-color, $mid-color $color-stop, $end-color);
|
267
|
+
background-image: -moz-linear-gradient(top, $start-color, $mid-color $color-stop, $end-color);
|
268
|
+
background-image: linear-gradient($start-color, $mid-color $color-stop, $end-color);
|
457
269
|
background-repeat: no-repeat;
|
458
|
-
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($
|
459
|
-
}
|
460
|
-
@mixin gradient-radial($
|
461
|
-
background-
|
462
|
-
background-image: -webkit-gradient(
|
463
|
-
background-image: -
|
464
|
-
background-image:
|
465
|
-
background-image: -o-radial-gradient(circle, $innerColor, $outerColor);
|
270
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{ie-hex-str($start-color)}', endColorstr='#{ie-hex-str($end-color)}', GradientType=0); // IE9 and down, gets no color-stop at all for proper fallback
|
271
|
+
}
|
272
|
+
@mixin gradient-radial($inner-color: #555, $outer-color: #333) {
|
273
|
+
background-image: -webkit-gradient(radial, center center, 0, center center, 460, from($inner-color), to($outer-color));
|
274
|
+
background-image: -webkit-radial-gradient(circle, $inner-color, $outer-color);
|
275
|
+
background-image: -moz-radial-gradient(circle, $inner-color, $outer-color);
|
276
|
+
background-image: radial-gradient(circle, $inner-color, $outer-color);
|
466
277
|
background-repeat: no-repeat;
|
467
278
|
}
|
468
279
|
@mixin gradient-striped($color: #555, $angle: 45deg) {
|
469
|
-
background-color: $color;
|
470
280
|
background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255,255,255,.15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255,255,255,.15)), color-stop(.75, rgba(255,255,255,.15)), color-stop(.75, transparent), to(transparent));
|
471
281
|
background-image: -webkit-linear-gradient($angle, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
|
472
282
|
background-image: -moz-linear-gradient($angle, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
|
473
|
-
background-image: -o-linear-gradient($angle, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
|
474
283
|
background-image: linear-gradient($angle, rgba(255,255,255,.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.15) 50%, rgba(255,255,255,.15) 75%, transparent 75%, transparent);
|
475
284
|
}
|
476
285
|
|
477
286
|
// Reset filters for IE
|
287
|
+
//
|
288
|
+
// When you need to remove a gradient background, do not forget to use this to reset
|
289
|
+
// the IE filter for IE9 and below.
|
478
290
|
@mixin reset-filter() {
|
479
|
-
filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
|
291
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
480
292
|
}
|
481
293
|
|
482
294
|
|
483
295
|
|
296
|
+
// Retina images
|
297
|
+
//
|
298
|
+
// Short retina mixin for setting background-image and -size
|
299
|
+
|
300
|
+
@mixin img-retina($file-1x, $file-2x, $width-1x, $height-1x) {
|
301
|
+
background-image: image-url("#{$file-1x}");
|
302
|
+
|
303
|
+
@media
|
304
|
+
only screen and (-webkit-min-device-pixel-ratio: 2),
|
305
|
+
only screen and ( min--moz-device-pixel-ratio: 2),
|
306
|
+
only screen and ( -o-min-device-pixel-ratio: 2/1),
|
307
|
+
only screen and ( min-device-pixel-ratio: 2),
|
308
|
+
only screen and ( min-resolution: 192dpi),
|
309
|
+
only screen and ( min-resolution: 2dppx) {
|
310
|
+
background-image: image-url("#{$file-2x}");
|
311
|
+
background-size: $width-1x $height-1x;
|
312
|
+
}
|
313
|
+
}
|
314
|
+
|
315
|
+
|
316
|
+
// Responsive image
|
317
|
+
//
|
318
|
+
// Keep images from scaling beyond the width of their parents.
|
319
|
+
|
320
|
+
@mixin img-responsive($display: block) {
|
321
|
+
display: $display;
|
322
|
+
max-width: 100%; // Part 1: Set a maximum relative to the parent
|
323
|
+
height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching
|
324
|
+
}
|
325
|
+
|
326
|
+
|
484
327
|
// COMPONENT MIXINS
|
485
328
|
// --------------------------------------------------
|
486
329
|
|
487
330
|
// Horizontal dividers
|
488
331
|
// -------------------------
|
489
332
|
// Dividers (basically an hr) within dropdowns and nav lists
|
490
|
-
@mixin nav-divider($
|
491
|
-
// IE7 needs a set width since we gave a height. Restricting just
|
492
|
-
// to IE7 to keep the 1px left/right space in other browsers.
|
493
|
-
// It is unclear where IE is getting the extra space that we need
|
494
|
-
// to negative-margin away, but so it goes.
|
495
|
-
*width: 100%;
|
333
|
+
@mixin nav-divider($color: #e5e5e5) {
|
496
334
|
height: 1px;
|
497
|
-
margin: (($
|
498
|
-
*margin: -5px 0 5px;
|
335
|
+
margin: (($line-height-computed / 2) - 1) 0;
|
499
336
|
overflow: hidden;
|
500
|
-
background-color: $
|
501
|
-
|
337
|
+
background-color: $color;
|
338
|
+
}
|
339
|
+
|
340
|
+
// Panels
|
341
|
+
// -------------------------
|
342
|
+
@mixin panel-variant($border, $heading-text-color, $heading-bg-color, $heading-border) {
|
343
|
+
border-color: $border;
|
344
|
+
& > .panel-heading {
|
345
|
+
color: $heading-text-color;
|
346
|
+
background-color: $heading-bg-color;
|
347
|
+
border-color: $heading-border;
|
348
|
+
+ .panel-collapse .panel-body {
|
349
|
+
border-top-color: $border;
|
350
|
+
}
|
351
|
+
}
|
352
|
+
& > .panel-footer {
|
353
|
+
+ .panel-collapse .panel-body {
|
354
|
+
border-bottom-color: $border;
|
355
|
+
}
|
356
|
+
}
|
502
357
|
}
|
503
358
|
|
504
|
-
//
|
505
|
-
//
|
506
|
-
@mixin
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
359
|
+
// Alerts
|
360
|
+
// -------------------------
|
361
|
+
@mixin alert-variant($background, $border, $text-color) {
|
362
|
+
background-color: $background;
|
363
|
+
border-color: $border;
|
364
|
+
color: $text-color;
|
365
|
+
hr {
|
366
|
+
border-top-color: darken($border, 5%);
|
367
|
+
}
|
368
|
+
.alert-link {
|
369
|
+
color: darken($text-color, 10%);
|
370
|
+
}
|
371
|
+
}
|
372
|
+
|
373
|
+
// Tables
|
374
|
+
// -------------------------
|
375
|
+
@mixin table-row-variant($state, $background, $border) {
|
376
|
+
// Exact selectors below required to override `.table-striped` and prevent
|
377
|
+
// inheritance to nested tables.
|
378
|
+
.table > thead > tr,
|
379
|
+
.table > tbody > tr,
|
380
|
+
.table > tfoot > tr {
|
381
|
+
> td.#{$state},
|
382
|
+
> th.#{$state},
|
383
|
+
&.#{$state} > td,
|
384
|
+
&.#{$state} > th {
|
385
|
+
background-color: $background;
|
386
|
+
border-color: $border;
|
387
|
+
}
|
388
|
+
}
|
511
389
|
|
512
|
-
//
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
390
|
+
// Hover states for `.table-hover`
|
391
|
+
// Note: this is not available for cells or rows within `thead` or `tfoot`.
|
392
|
+
.table-hover > tbody > tr {
|
393
|
+
> td.#{$state}:hover,
|
394
|
+
> th.#{$state}:hover,
|
395
|
+
&.#{$state}:hover > td {
|
396
|
+
background-color: darken($background, 5%);
|
397
|
+
border-color: darken($border, 5%);
|
398
|
+
}
|
517
399
|
}
|
400
|
+
}
|
518
401
|
|
519
|
-
|
402
|
+
// Button variants
|
403
|
+
// -------------------------
|
404
|
+
// Easily pump out default styles, as well as :hover, :focus, :active,
|
405
|
+
// and disabled options for all buttons
|
406
|
+
@mixin button-variant($color, $background, $border) {
|
407
|
+
color: $color;
|
408
|
+
background-color: $background;
|
409
|
+
border-color: $border;
|
410
|
+
|
411
|
+
&:hover,
|
412
|
+
&:focus,
|
520
413
|
&:active,
|
521
414
|
&.active {
|
522
|
-
|
415
|
+
color: $color;
|
416
|
+
background-color: darken($background, 8%);
|
417
|
+
border-color: darken($border, 12%);
|
418
|
+
}
|
419
|
+
.open & { &.dropdown-toggle {
|
420
|
+
color: $color;
|
421
|
+
background-color: darken($background, 8%);
|
422
|
+
border-color: darken($border, 12%);
|
423
|
+
} }
|
424
|
+
&:active,
|
425
|
+
&.active {
|
426
|
+
background-image: none;
|
427
|
+
}
|
428
|
+
.open & { &.dropdown-toggle {
|
429
|
+
background-image: none;
|
430
|
+
} }
|
431
|
+
&.disabled,
|
432
|
+
&[disabled],
|
433
|
+
fieldset[disabled] & {
|
434
|
+
&,
|
435
|
+
&:hover,
|
436
|
+
&:focus,
|
437
|
+
&:active,
|
438
|
+
&.active {
|
439
|
+
background-color: $background;
|
440
|
+
border-color: $border
|
441
|
+
}
|
442
|
+
}
|
443
|
+
}
|
444
|
+
|
445
|
+
// Button sizes
|
446
|
+
// -------------------------
|
447
|
+
@mixin button-size($padding-vertical, $padding-horizontal, $font-size, $line-height, $border-radius) {
|
448
|
+
padding: $padding-vertical $padding-horizontal;
|
449
|
+
font-size: $font-size;
|
450
|
+
line-height: $line-height;
|
451
|
+
border-radius: $border-radius;
|
452
|
+
}
|
453
|
+
|
454
|
+
// Pagination
|
455
|
+
// -------------------------
|
456
|
+
@mixin pagination-size($padding-vertical, $padding-horizontal, $font-size, $border-radius) {
|
457
|
+
> li {
|
458
|
+
> a,
|
459
|
+
> span {
|
460
|
+
padding: $padding-vertical $padding-horizontal;
|
461
|
+
font-size: $font-size;
|
462
|
+
}
|
463
|
+
&:first-child {
|
464
|
+
> a,
|
465
|
+
> span {
|
466
|
+
@include border-left-radius($border-radius);
|
467
|
+
}
|
468
|
+
}
|
469
|
+
&:last-child {
|
470
|
+
> a,
|
471
|
+
> span {
|
472
|
+
@include border-right-radius($border-radius);
|
473
|
+
}
|
474
|
+
}
|
475
|
+
}
|
476
|
+
}
|
477
|
+
|
478
|
+
// Labels
|
479
|
+
// -------------------------
|
480
|
+
@mixin label-variant($color) {
|
481
|
+
background-color: $color;
|
482
|
+
&[href] {
|
483
|
+
&:hover,
|
484
|
+
&:focus {
|
485
|
+
background-color: darken($color, 10%);
|
486
|
+
}
|
523
487
|
}
|
524
488
|
}
|
525
489
|
|
526
490
|
// Navbar vertical align
|
527
491
|
// -------------------------
|
528
492
|
// Vertically center elements in the navbar.
|
529
|
-
// Example: an element has a height of 30px, so write out `.
|
530
|
-
@mixin
|
531
|
-
margin-top: ($
|
493
|
+
// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.
|
494
|
+
@mixin navbar-vertical-align($element-height) {
|
495
|
+
margin-top: (($navbar-height - $element-height) / 2);
|
496
|
+
margin-bottom: (($navbar-height - $element-height) / 2);
|
532
497
|
}
|
533
498
|
|
499
|
+
// Progress bars
|
500
|
+
// -------------------------
|
501
|
+
@mixin progress-bar-variant($color) {
|
502
|
+
background-color: $color;
|
503
|
+
.progress-striped & {
|
504
|
+
@include gradient-striped($color);
|
505
|
+
}
|
506
|
+
}
|
534
507
|
|
508
|
+
// Responsive utilities
|
509
|
+
// -------------------------
|
510
|
+
// More easily include all the states for responsive-utilities.less.
|
511
|
+
// [converter] $parent hack
|
512
|
+
@mixin responsive-visibility($parent) {
|
513
|
+
#{$parent} { display: block !important; }
|
514
|
+
tr#{$parent} { display: table-row !important; }
|
515
|
+
th#{$parent},
|
516
|
+
td#{$parent} { display: table-cell !important; }
|
517
|
+
}
|
518
|
+
|
519
|
+
// [converter] $parent hack
|
520
|
+
@mixin responsive-invisibility($parent) {
|
521
|
+
#{$parent} { display: none !important; }
|
522
|
+
tr#{$parent} { display: none !important; }
|
523
|
+
th#{$parent},
|
524
|
+
td#{$parent} { display: none !important; }
|
525
|
+
}
|
535
526
|
|
536
527
|
// Grid System
|
537
528
|
// -----------
|
@@ -540,157 +531,200 @@
|
|
540
531
|
@mixin container-fixed() {
|
541
532
|
margin-right: auto;
|
542
533
|
margin-left: auto;
|
534
|
+
padding-left: ($grid-gutter-width / 2);
|
535
|
+
padding-right: ($grid-gutter-width / 2);
|
543
536
|
@include clearfix();
|
544
537
|
}
|
545
538
|
|
546
|
-
//
|
547
|
-
@mixin
|
548
|
-
|
549
|
-
|
550
|
-
margin-left: 0; // undo default grid column styles
|
551
|
-
}
|
552
|
-
|
553
|
-
// Make a Grid
|
554
|
-
// Use .makeRow and .makeColumn to assign semantic layouts grid system behavior
|
555
|
-
@mixin makeRow() {
|
556
|
-
margin-left: $gridGutterWidth * -1;
|
539
|
+
// Creates a wrapper for a series of columns
|
540
|
+
@mixin make-row($gutter: $grid-gutter-width) {
|
541
|
+
margin-left: ($gutter / -2);
|
542
|
+
margin-right: ($gutter / -2);
|
557
543
|
@include clearfix();
|
558
544
|
}
|
559
|
-
@mixin makeColumn($columns: 1, $offset: 0) {
|
560
|
-
float: left;
|
561
|
-
margin-left: ($gridColumnWidth * $offset) + ($gridGutterWidth * ($offset - 1)) + ($gridGutterWidth * 2);
|
562
|
-
width: ($gridColumnWidth * $columns) + ($gridGutterWidth * ($columns - 1));
|
563
|
-
}
|
564
|
-
|
565
|
-
// The Grid
|
566
|
-
@mixin grid-core($gridColumnWidth, $gridGutterWidth) {
|
567
|
-
.row {
|
568
|
-
margin-left: $gridGutterWidth * -1;
|
569
|
-
@include clearfix();
|
570
|
-
}
|
571
545
|
|
572
|
-
|
546
|
+
// Generate the extra small columns
|
547
|
+
@mixin make-xs-column($columns, $gutter: $grid-gutter-width) {
|
548
|
+
position: relative;
|
549
|
+
float: left;
|
550
|
+
width: percentage(($columns / $grid-columns));
|
551
|
+
// Prevent columns from collapsing when empty
|
552
|
+
min-height: 1px;
|
553
|
+
// Inner gutter via padding
|
554
|
+
padding-left: ($gutter / 2);
|
555
|
+
padding-right: ($gutter / 2);
|
556
|
+
}
|
557
|
+
|
558
|
+
// Generate the small columns
|
559
|
+
@mixin make-sm-column($columns, $gutter: $grid-gutter-width) {
|
560
|
+
position: relative;
|
561
|
+
// Prevent columns from collapsing when empty
|
562
|
+
min-height: 1px;
|
563
|
+
// Inner gutter via padding
|
564
|
+
padding-left: ($gutter / 2);
|
565
|
+
padding-right: ($gutter / 2);
|
566
|
+
|
567
|
+
// Calculate width based on number of columns available
|
568
|
+
@media (min-width: $screen-sm) {
|
573
569
|
float: left;
|
574
|
-
|
575
|
-
margin-left: $gridGutterWidth;
|
570
|
+
width: percentage(($columns / $grid-columns));
|
576
571
|
}
|
572
|
+
}
|
577
573
|
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
.navbar-fixed-bottom .container {
|
583
|
-
@include grid-core-span($gridColumns, $gridColumnWidth, $gridGutterWidth);
|
574
|
+
// Generate the small column offsets
|
575
|
+
@mixin make-sm-column-offset($columns) {
|
576
|
+
@media (min-width: $screen-sm) {
|
577
|
+
margin-left: percentage(($columns / $grid-columns));
|
584
578
|
}
|
585
|
-
|
586
|
-
// generate .spanX and .offsetX
|
587
|
-
@include grid-core-span-x($gridColumns, $gridColumnWidth, $gridGutterWidth);
|
588
|
-
@include grid-core-offset-x($gridColumns, $gridColumnWidth, $gridGutterWidth);
|
589
579
|
}
|
590
|
-
|
591
|
-
@
|
592
|
-
|
593
|
-
.span#{$i} { @include grid-core-span($i, $gridColumnWidth, $gridGutterWidth); }
|
580
|
+
@mixin make-sm-column-push($columns) {
|
581
|
+
@media (min-width: $screen-sm) {
|
582
|
+
left: percentage(($columns / $grid-columns));
|
594
583
|
}
|
595
584
|
}
|
596
|
-
|
597
|
-
@
|
598
|
-
|
599
|
-
.offset#{$i} { @include grid-core-offset($i, $gridColumnWidth, $gridGutterWidth); }
|
585
|
+
@mixin make-sm-column-pull($columns) {
|
586
|
+
@media (min-width: $screen-sm) {
|
587
|
+
right: percentage(($columns / $grid-columns));
|
600
588
|
}
|
601
589
|
}
|
602
590
|
|
603
|
-
|
604
|
-
|
605
|
-
|
591
|
+
// Generate the medium columns
|
592
|
+
@mixin make-md-column($columns, $gutter: $grid-gutter-width) {
|
593
|
+
position: relative;
|
594
|
+
// Prevent columns from collapsing when empty
|
595
|
+
min-height: 1px;
|
596
|
+
// Inner gutter via padding
|
597
|
+
padding-left: ($gutter / 2);
|
598
|
+
padding-right: ($gutter / 2);
|
606
599
|
|
607
|
-
|
608
|
-
|
600
|
+
// Calculate width based on number of columns available
|
601
|
+
@media (min-width: $screen-md) {
|
602
|
+
float: left;
|
603
|
+
width: percentage(($columns / $grid-columns));
|
604
|
+
}
|
609
605
|
}
|
610
606
|
|
611
|
-
|
612
|
-
|
613
|
-
@
|
614
|
-
|
615
|
-
width: 100%;
|
616
|
-
@include clearfix();
|
617
|
-
[class*="span"] {
|
618
|
-
@include input-block-level();
|
619
|
-
float: left;
|
620
|
-
margin-left: $fluidGridGutterWidth;
|
621
|
-
*margin-left: $fluidGridGutterWidth - (.5 / $gridRowWidth * 100px * 1%);
|
622
|
-
}
|
623
|
-
[class*="span"]:first-child {
|
624
|
-
margin-left: 0;
|
625
|
-
}
|
626
|
-
|
627
|
-
// Space grid-sized controls properly if multiple per line
|
628
|
-
.controls-row [class*="span"] + [class*="span"] {
|
629
|
-
margin-left: $fluidGridGutterWidth;
|
630
|
-
}
|
631
|
-
|
632
|
-
// generate .spanX and .offsetX
|
633
|
-
@include grid-fluid-span-x($gridColumns, $fluidGridColumnWidth, $fluidGridGutterWidth);
|
634
|
-
@include grid-fluid-offset-x($gridColumns, $fluidGridColumnWidth, $fluidGridGutterWidth);
|
607
|
+
// Generate the large column offsets
|
608
|
+
@mixin make-md-column-offset($columns) {
|
609
|
+
@media (min-width: $screen-md) {
|
610
|
+
margin-left: percentage(($columns / $grid-columns));
|
635
611
|
}
|
636
612
|
}
|
637
|
-
|
638
|
-
@
|
639
|
-
|
640
|
-
.span#{$i} { @include grid-fluid-span($i, $fluidGridColumnWidth, $fluidGridGutterWidth); }
|
613
|
+
@mixin make-md-column-push($columns) {
|
614
|
+
@media (min-width: $screen-md) {
|
615
|
+
left: percentage(($columns / $grid-columns));
|
641
616
|
}
|
642
617
|
}
|
643
|
-
|
644
|
-
@
|
645
|
-
|
646
|
-
.offset#{$i} { @include grid-fluid-offset($i, $fluidGridColumnWidth, $fluidGridGutterWidth); }
|
647
|
-
.offset#{$i}:first-child { @include grid-fluid-offset-first-child($i, $fluidGridColumnWidth, $fluidGridGutterWidth); }
|
618
|
+
@mixin make-md-column-pull($columns) {
|
619
|
+
@media (min-width: $screen-md) {
|
620
|
+
right: percentage(($columns / $grid-columns));
|
648
621
|
}
|
649
622
|
}
|
650
623
|
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
624
|
+
// Generate the large columns
|
625
|
+
@mixin make-lg-column($columns, $gutter: $grid-gutter-width) {
|
626
|
+
position: relative;
|
627
|
+
// Prevent columns from collapsing when empty
|
628
|
+
min-height: 1px;
|
629
|
+
// Inner gutter via padding
|
630
|
+
padding-left: ($gutter / 2);
|
631
|
+
padding-right: ($gutter / 2);
|
655
632
|
|
656
|
-
|
657
|
-
|
658
|
-
|
633
|
+
// Calculate width based on number of columns available
|
634
|
+
@media (min-width: $screen-lg) {
|
635
|
+
float: left;
|
636
|
+
width: percentage(($columns / $grid-columns));
|
637
|
+
}
|
659
638
|
}
|
660
639
|
|
661
|
-
|
662
|
-
|
663
|
-
|
640
|
+
// Generate the large column offsets
|
641
|
+
@mixin make-lg-column-offset($columns) {
|
642
|
+
@media (min-width: $screen-lg) {
|
643
|
+
margin-left: percentage(($columns / $grid-columns));
|
644
|
+
}
|
645
|
+
}
|
646
|
+
@mixin make-lg-column-push($columns) {
|
647
|
+
@media (min-width: $screen-lg) {
|
648
|
+
left: percentage(($columns / $grid-columns));
|
649
|
+
}
|
650
|
+
}
|
651
|
+
@mixin make-lg-column-pull($columns) {
|
652
|
+
@media (min-width: $screen-lg) {
|
653
|
+
right: percentage(($columns / $grid-columns));
|
654
|
+
}
|
664
655
|
}
|
665
656
|
|
666
657
|
|
658
|
+
// Form validation states
|
659
|
+
//
|
660
|
+
// Used in forms.less to generate the form validation CSS for warnings, errors,
|
661
|
+
// and successes.
|
667
662
|
|
668
|
-
@mixin
|
669
|
-
|
670
|
-
|
671
|
-
.
|
672
|
-
|
663
|
+
@mixin form-control-validation($text-color: #555, $border-color: #ccc, $background-color: #f5f5f5) {
|
664
|
+
// Color the label and help text
|
665
|
+
.help-block,
|
666
|
+
.control-label {
|
667
|
+
color: $text-color;
|
673
668
|
}
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
669
|
+
// Set the border and box shadow on specific inputs to match
|
670
|
+
.form-control {
|
671
|
+
border-color: $border-color;
|
672
|
+
@include box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work
|
673
|
+
&:focus {
|
674
|
+
border-color: darken($border-color, 10%);
|
675
|
+
$shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten($border-color, 20%);
|
676
|
+
@include box-shadow($shadow);
|
677
|
+
}
|
678
|
+
}
|
679
|
+
// Set validation states also for addons
|
680
|
+
.input-group-addon {
|
681
|
+
color: $text-color;
|
682
|
+
border-color: $border-color;
|
683
|
+
background-color: $background-color;
|
678
684
|
}
|
679
|
-
|
680
|
-
// generate .spanX
|
681
|
-
@include grid-input-span-x($gridColumns, $gridColumnWidth, $gridGutterWidth);
|
682
685
|
}
|
683
686
|
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
687
|
+
// Form control focus state
|
688
|
+
//
|
689
|
+
// Generate a customized focus state and for any input with the specified color,
|
690
|
+
// which defaults to the `$input-focus-border` variable.
|
691
|
+
//
|
692
|
+
// We highly encourage you to not customize the default value, but instead use
|
693
|
+
// this to tweak colors on an as-needed basis. This aesthetic change is based on
|
694
|
+
// WebKit's default styles, but applicable to a wider range of browsers. Its
|
695
|
+
// usability and accessibility should be taken into account with any change.
|
696
|
+
//
|
697
|
+
// Example usage: change the default blue border and shadow to white for better
|
698
|
+
// contrast against a dark gray background.
|
699
|
+
|
700
|
+
@mixin form-control-focus($color: $input-border-focus) {
|
701
|
+
$color-rgba: rgba(red($color), green($color), blue($color), .6);
|
702
|
+
&:focus {
|
703
|
+
border-color: $color;
|
704
|
+
outline: 0;
|
705
|
+
@include box-shadow(inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px $color-rgba);
|
691
706
|
}
|
692
707
|
}
|
693
708
|
|
694
|
-
|
695
|
-
|
709
|
+
// Form control sizing
|
710
|
+
//
|
711
|
+
// Relative text size, padding, and border-radii changes for form controls. For
|
712
|
+
// horizontal sizing, wrap controls in the predefined grid classes. `<select>`
|
713
|
+
// element gets special love because it's special, and that's a fact!
|
714
|
+
|
715
|
+
// [converter] $parent hack
|
716
|
+
@mixin input-size($parent, $input-height, $padding-vertical, $padding-horizontal, $font-size, $line-height, $border-radius) {
|
717
|
+
#{$parent} { height: $input-height;
|
718
|
+
padding: $padding-vertical $padding-horizontal;
|
719
|
+
font-size: $font-size;
|
720
|
+
line-height: $line-height;
|
721
|
+
border-radius: $border-radius; }
|
722
|
+
select#{$parent} {
|
723
|
+
height: $input-height;
|
724
|
+
line-height: $input-height;
|
725
|
+
}
|
726
|
+
|
727
|
+
textarea#{$parent} {
|
728
|
+
height: auto;
|
729
|
+
}
|
696
730
|
}
|