rails_admin 0.6.5 → 0.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/assets/javascripts/rails_admin/bootstrap/bootstrap-affix.js +99 -74
- data/app/assets/javascripts/rails_admin/bootstrap/bootstrap-alert.js +48 -55
- data/app/assets/javascripts/rails_admin/bootstrap/bootstrap-button.js +70 -65
- data/app/assets/javascripts/rails_admin/bootstrap/bootstrap-carousel.js +163 -147
- data/app/assets/javascripts/rails_admin/bootstrap/bootstrap-collapse.js +117 -114
- data/app/assets/javascripts/rails_admin/bootstrap/bootstrap-dropdown.js +89 -107
- data/app/assets/javascripts/rails_admin/bootstrap/bootstrap-modal.js +208 -175
- data/app/assets/javascripts/rails_admin/bootstrap/bootstrap-popover.js +77 -78
- data/app/assets/javascripts/rails_admin/bootstrap/bootstrap-scrollspy.js +137 -129
- data/app/assets/javascripts/rails_admin/bootstrap/bootstrap-tab.js +85 -101
- data/app/assets/javascripts/rails_admin/bootstrap/bootstrap-tooltip.js +364 -268
- data/app/assets/javascripts/rails_admin/bootstrap/bootstrap-transition.js +51 -52
- data/app/assets/javascripts/rails_admin/bootstrap/bootstrap-typeahead.js +1782 -335
- data/app/assets/javascripts/rails_admin/ra.filter-box.js +1 -1
- data/app/assets/javascripts/rails_admin/ra.filtering-multiselect.js +3 -3
- data/app/assets/javascripts/rails_admin/ra.filtering-select.js +1 -1
- data/app/assets/javascripts/rails_admin/ra.remote-form.js +6 -2
- data/app/assets/stylesheets/rails_admin/base/theming.scss +34 -14
- data/app/assets/stylesheets/rails_admin/bootstrap/_alerts.scss +47 -58
- data/app/assets/stylesheets/rails_admin/bootstrap/_badges.scss +57 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/_breadcrumbs.scss +12 -10
- data/app/assets/stylesheets/rails_admin/bootstrap/_button-groups.scss +163 -152
- data/app/assets/stylesheets/rails_admin/bootstrap/_buttons.scss +98 -169
- data/app/assets/stylesheets/rails_admin/bootstrap/_carousel.scss +151 -66
- data/app/assets/stylesheets/rails_admin/bootstrap/_close.scss +11 -8
- data/app/assets/stylesheets/rails_admin/bootstrap/_code.scss +36 -29
- data/app/assets/stylesheets/rails_admin/bootstrap/_component-animations.scss +16 -3
- data/app/assets/stylesheets/rails_admin/bootstrap/_dropdowns.scss +115 -148
- data/app/assets/stylesheets/rails_admin/bootstrap/_forms.scss +396 -547
- data/app/assets/stylesheets/rails_admin/bootstrap/_glyphicons.scss +237 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/_grid.scss +74 -11
- data/app/assets/stylesheets/rails_admin/bootstrap/_input-groups.scss +166 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/_jumbotron.scss +48 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/_labels.scss +66 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/_list-group.scss +131 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/_media.scss +8 -7
- data/app/assets/stylesheets/rails_admin/bootstrap/_mixins.scss +36 -693
- data/app/assets/stylesheets/rails_admin/bootstrap/_modals.scss +108 -53
- data/app/assets/stylesheets/rails_admin/bootstrap/_navbar.scss +545 -383
- data/app/assets/stylesheets/rails_admin/bootstrap/_navs.scss +191 -358
- data/app/assets/stylesheets/rails_admin/bootstrap/_normalize.scss +425 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/_pager.scss +45 -33
- data/app/assets/stylesheets/rails_admin/bootstrap/_pagination.scss +70 -105
- data/app/assets/stylesheets/rails_admin/bootstrap/_panels.scss +243 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/_popovers.scss +61 -61
- data/app/assets/stylesheets/rails_admin/bootstrap/_print.scss +101 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/_progress-bars.scss +56 -73
- data/app/assets/stylesheets/rails_admin/bootstrap/_responsive-embed.scss +34 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/_responsive-utilities.scss +150 -50
- data/app/assets/stylesheets/rails_admin/bootstrap/_scaffolding.scss +120 -23
- data/app/assets/stylesheets/rails_admin/bootstrap/_tables.scss +168 -170
- data/app/assets/stylesheets/rails_admin/bootstrap/_theme.scss +258 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/_thumbnails.scss +27 -42
- data/app/assets/stylesheets/rails_admin/bootstrap/_tooltip.scss +49 -24
- data/app/assets/stylesheets/rails_admin/bootstrap/_type.scss +200 -143
- data/app/assets/stylesheets/rails_admin/bootstrap/_utilities.scss +33 -21
- data/app/assets/stylesheets/rails_admin/bootstrap/_variables.scss +764 -215
- data/app/assets/stylesheets/rails_admin/bootstrap/_wells.scss +7 -7
- data/app/assets/stylesheets/rails_admin/bootstrap/bootstrap.scss +47 -60
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_alerts.scss +14 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_background-variant.scss +11 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_border-radius.scss +18 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_buttons.scss +50 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_center-block.scss +7 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_clearfix.scss +22 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_forms.scss +84 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_gradients.scss +58 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_grid-framework.scss +81 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_grid.scss +122 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_hide-text.scss +21 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_image.scss +34 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_labels.scss +12 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_list-group.scss +31 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_nav-divider.scss +10 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_opacity.scss +8 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_pagination.scss +23 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_panels.scss +24 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_progress-bar.scss +10 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_reset-filter.scss +8 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_resize.scss +6 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_size.scss +10 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_tab-focus.scss +9 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_table-row.scss +28 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_text-emphasis.scss +11 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_text-overflow.scss +8 -0
- data/app/assets/stylesheets/rails_admin/bootstrap/mixins/_vendor-prefixes.scss +219 -0
- data/app/assets/stylesheets/rails_admin/ra.calendar-additions.scss +17 -0
- data/app/assets/stylesheets/rails_admin/rails_admin.scss.erb +9 -5
- data/app/helpers/rails_admin/application_helper.rb +20 -19
- data/app/helpers/rails_admin/form_builder.rb +14 -11
- data/app/views/kaminari/twitter-bootstrap/_paginator.html.haml +8 -9
- data/app/views/layouts/rails_admin/_navigation.html.haml +5 -5
- data/app/views/layouts/rails_admin/_secondary_navigation.html.haml +1 -1
- data/app/views/layouts/rails_admin/application.html.haml +9 -8
- data/app/views/layouts/rails_admin/pjax.html.haml +4 -3
- data/app/views/rails_admin/main/_form_datetime.html.haml +2 -1
- data/app/views/rails_admin/main/_form_field.html.haml +1 -1
- data/app/views/rails_admin/main/_form_text.html.haml +1 -1
- data/app/views/rails_admin/main/_submit_buttons.html.haml +1 -0
- data/app/views/rails_admin/main/dashboard.html.haml +1 -1
- data/app/views/rails_admin/main/export.html.haml +19 -16
- data/app/views/rails_admin/main/index.html.haml +11 -7
- data/app/views/rails_admin/main/show.html.haml +1 -1
- data/lib/rails_admin/adapters/active_record.rb +2 -2
- data/lib/rails_admin/adapters/mongoid/property.rb +1 -1
- data/lib/rails_admin/config/actions/bulk_delete.rb +0 -1
- data/lib/rails_admin/config/actions/edit.rb +0 -2
- data/lib/rails_admin/config/actions/export.rb +0 -2
- data/lib/rails_admin/config/actions/index.rb +0 -3
- data/lib/rails_admin/config/actions/new.rb +0 -2
- data/lib/rails_admin/config/configurable.rb +1 -1
- data/lib/rails_admin/config/fields/base.rb +9 -0
- data/lib/rails_admin/config/fields/factories/enum.rb +2 -3
- data/lib/rails_admin/config/fields/types/polymorphic_association.rb +4 -0
- data/lib/rails_admin/config/model.rb +2 -1
- data/lib/rails_admin/extensions/paper_trail/auditing_adapter.rb +2 -2
- data/lib/rails_admin/support/csv_converter.rb +22 -42
- data/lib/rails_admin/version.rb +1 -1
- metadata +59 -18
- data/app/assets/stylesheets/rails_admin/bootstrap/_accordion.scss +0 -34
- data/app/assets/stylesheets/rails_admin/bootstrap/_hero-unit.scss +0 -25
- data/app/assets/stylesheets/rails_admin/bootstrap/_labels-badges.scss +0 -83
- data/app/assets/stylesheets/rails_admin/bootstrap/_layouts.scss +0 -16
- data/app/assets/stylesheets/rails_admin/bootstrap/_reset.scss +0 -216
- data/app/assets/stylesheets/rails_admin/bootstrap/_responsive-1200px-min.scss +0 -28
- data/app/assets/stylesheets/rails_admin/bootstrap/_responsive-767px-max.scss +0 -193
- data/app/assets/stylesheets/rails_admin/bootstrap/_responsive-768px-979px.scss +0 -19
- data/app/assets/stylesheets/rails_admin/bootstrap/_responsive-navbar.scss +0 -189
- data/app/assets/stylesheets/rails_admin/bootstrap/_sprites.scss +0 -197
- data/app/assets/stylesheets/rails_admin/bootstrap/responsive.scss +0 -48
|
@@ -3,43 +3,55 @@
|
|
|
3
3
|
// --------------------------------------------------
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
//
|
|
6
|
+
// Floats
|
|
7
|
+
// -------------------------
|
|
8
|
+
|
|
9
|
+
.clearfix {
|
|
10
|
+
@include clearfix();
|
|
11
|
+
}
|
|
12
|
+
.center-block {
|
|
13
|
+
@include center-block();
|
|
14
|
+
}
|
|
7
15
|
.pull-right {
|
|
8
|
-
float: right;
|
|
16
|
+
float: right !important;
|
|
9
17
|
}
|
|
10
18
|
.pull-left {
|
|
11
|
-
float: left;
|
|
19
|
+
float: left !important;
|
|
12
20
|
}
|
|
13
21
|
|
|
22
|
+
|
|
14
23
|
// Toggling content
|
|
24
|
+
// -------------------------
|
|
25
|
+
|
|
26
|
+
// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1
|
|
15
27
|
.hide {
|
|
16
|
-
display: none;
|
|
28
|
+
display: none !important;
|
|
17
29
|
}
|
|
18
30
|
.show {
|
|
19
|
-
display: block;
|
|
31
|
+
display: block !important;
|
|
20
32
|
}
|
|
21
|
-
|
|
22
|
-
// Visibility
|
|
23
33
|
.invisible {
|
|
24
34
|
visibility: hidden;
|
|
25
35
|
}
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
.affix {
|
|
29
|
-
position: fixed;
|
|
36
|
+
.text-hide {
|
|
37
|
+
@include text-hide();
|
|
30
38
|
}
|
|
31
39
|
|
|
32
|
-
// Clearing floats
|
|
33
|
-
.clearfix {
|
|
34
|
-
@include clearfix();
|
|
35
|
-
}
|
|
36
40
|
|
|
37
|
-
//
|
|
38
|
-
|
|
39
|
-
|
|
41
|
+
// Hide from screenreaders and browsers
|
|
42
|
+
//
|
|
43
|
+
// Credit: HTML5 Boilerplate
|
|
44
|
+
|
|
45
|
+
.hidden {
|
|
46
|
+
display: none !important;
|
|
47
|
+
visibility: hidden !important;
|
|
40
48
|
}
|
|
41
49
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
50
|
+
|
|
51
|
+
// For Affix plugin
|
|
52
|
+
// -------------------------
|
|
53
|
+
|
|
54
|
+
.affix {
|
|
55
|
+
position: fixed;
|
|
56
|
+
@include translate3d(0, 0, 0);
|
|
45
57
|
}
|
|
@@ -1,301 +1,850 @@
|
|
|
1
|
+
// a flag to toggle asset pipeline / compass integration
|
|
2
|
+
// defaults to true if twbs-font-path function is present (no function => twbs-font-path('') parsed as string == right side)
|
|
3
|
+
// in Sass 3.3 this can be improved with: function-exists(twbs-font-path)
|
|
4
|
+
$bootstrap-sass-asset-helper: (twbs-font-path("") != unquote('twbs-font-path("")')) !default;
|
|
1
5
|
//
|
|
2
6
|
// Variables
|
|
3
7
|
// --------------------------------------------------
|
|
4
8
|
|
|
5
9
|
|
|
6
|
-
|
|
7
|
-
//
|
|
10
|
+
//== Colors
|
|
11
|
+
//
|
|
12
|
+
//## Gray and brand colors for use across Bootstrap.
|
|
8
13
|
|
|
14
|
+
$gray-darker: lighten(#000, 13.5%) !default; // #222
|
|
15
|
+
$gray-dark: lighten(#000, 20%) !default; // #333
|
|
16
|
+
$gray: lighten(#000, 33.5%) !default; // #555
|
|
17
|
+
$gray-light: lighten(#000, 46.7%) !default; // #777
|
|
18
|
+
$gray-lighter: lighten(#000, 93.5%) !default; // #eee
|
|
9
19
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
$
|
|
13
|
-
$
|
|
14
|
-
$
|
|
15
|
-
$gray: #555 !default;
|
|
16
|
-
$grayLight: #999 !default;
|
|
17
|
-
$grayLighter: #eee !default;
|
|
18
|
-
$white: #fff !default;
|
|
20
|
+
$brand-primary: #428bca !default;
|
|
21
|
+
$brand-success: #5cb85c !default;
|
|
22
|
+
$brand-info: #5bc0de !default;
|
|
23
|
+
$brand-warning: #f0ad4e !default;
|
|
24
|
+
$brand-danger: #d9534f !default;
|
|
19
25
|
|
|
20
26
|
|
|
21
|
-
|
|
22
|
-
//
|
|
23
|
-
|
|
24
|
-
$blueDark: #0064cd !default;
|
|
25
|
-
$green: #46a546 !default;
|
|
26
|
-
$red: #9d261d !default;
|
|
27
|
-
$yellow: #ffc40d !default;
|
|
28
|
-
$orange: #f89406 !default;
|
|
29
|
-
$pink: #c3325f !default;
|
|
30
|
-
$purple: #7a43b6 !default;
|
|
27
|
+
//== Scaffolding
|
|
28
|
+
//
|
|
29
|
+
//## Settings for some of the most global styles.
|
|
31
30
|
|
|
31
|
+
//** Background color for `<body>`.
|
|
32
|
+
$body-bg: #fff !default;
|
|
33
|
+
//** Global text color on `<body>`.
|
|
34
|
+
$text-color: $gray-dark !default;
|
|
32
35
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
$
|
|
36
|
+
//** Global textual link color.
|
|
37
|
+
$link-color: $brand-primary !default;
|
|
38
|
+
//** Link hover color set via `darken()` function.
|
|
39
|
+
$link-hover-color: darken($link-color, 15%) !default;
|
|
37
40
|
|
|
38
41
|
|
|
39
|
-
|
|
40
|
-
//
|
|
41
|
-
|
|
42
|
-
|
|
42
|
+
//== Typography
|
|
43
|
+
//
|
|
44
|
+
//## Font, line-height, and color for body text, headings, and more.
|
|
45
|
+
|
|
46
|
+
$font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
|
|
47
|
+
$font-family-serif: Georgia, "Times New Roman", Times, serif !default;
|
|
48
|
+
//** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
|
|
49
|
+
$font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;
|
|
50
|
+
$font-family-base: $font-family-sans-serif !default;
|
|
51
|
+
|
|
52
|
+
$font-size-base: 14px !default;
|
|
53
|
+
$font-size-large: ceil(($font-size-base * 1.25)) !default; // ~18px
|
|
54
|
+
$font-size-small: ceil(($font-size-base * 0.85)) !default; // ~12px
|
|
55
|
+
|
|
56
|
+
$font-size-h1: floor(($font-size-base * 2.6)) !default; // ~36px
|
|
57
|
+
$font-size-h2: floor(($font-size-base * 2.15)) !default; // ~30px
|
|
58
|
+
$font-size-h3: ceil(($font-size-base * 1.7)) !default; // ~24px
|
|
59
|
+
$font-size-h4: ceil(($font-size-base * 1.25)) !default; // ~18px
|
|
60
|
+
$font-size-h5: $font-size-base !default;
|
|
61
|
+
$font-size-h6: ceil(($font-size-base * 0.85)) !default; // ~12px
|
|
62
|
+
|
|
63
|
+
//** Unit-less `line-height` for use in components like buttons.
|
|
64
|
+
$line-height-base: 1.428571429 !default; // 20/14
|
|
65
|
+
//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
|
|
66
|
+
$line-height-computed: floor(($font-size-base * $line-height-base)) !default; // ~20px
|
|
67
|
+
|
|
68
|
+
//** By default, this inherits from the `<body>`.
|
|
69
|
+
$headings-font-family: inherit !default;
|
|
70
|
+
$headings-font-weight: 500 !default;
|
|
71
|
+
$headings-line-height: 1.1 !default;
|
|
72
|
+
$headings-color: inherit !default;
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
//== Iconography
|
|
76
|
+
//
|
|
77
|
+
//## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
|
|
43
78
|
|
|
79
|
+
//** Load fonts from this directory.
|
|
80
|
+
$icon-font-path: "bootstrap/" !default;
|
|
81
|
+
//** File name for all font files.
|
|
82
|
+
$icon-font-name: "glyphicons-halflings-regular" !default;
|
|
83
|
+
//** Element ID within SVG icon file.
|
|
84
|
+
$icon-font-svg-id: "glyphicons_halflingsregular" !default;
|
|
44
85
|
|
|
45
|
-
// Typography
|
|
46
|
-
// -------------------------
|
|
47
|
-
$sansFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
|
|
48
|
-
$serifFontFamily: Georgia, "Times New Roman", Times, serif !default;
|
|
49
|
-
$monoFontFamily: Monaco, Menlo, Consolas, "Courier New", monospace !default;
|
|
50
86
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
$altFontFamily: $serifFontFamily !default;
|
|
87
|
+
//== Components
|
|
88
|
+
//
|
|
89
|
+
//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
|
|
55
90
|
|
|
56
|
-
$
|
|
57
|
-
$
|
|
58
|
-
$headingsColor: inherit !default; // empty to use BS default, $textColor
|
|
91
|
+
$padding-base-vertical: 6px !default;
|
|
92
|
+
$padding-base-horizontal: 12px !default;
|
|
59
93
|
|
|
94
|
+
$padding-large-vertical: 10px !default;
|
|
95
|
+
$padding-large-horizontal: 16px !default;
|
|
60
96
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
// Based on 14px font-size and 20px line-height
|
|
97
|
+
$padding-small-vertical: 5px !default;
|
|
98
|
+
$padding-small-horizontal: 10px !default;
|
|
64
99
|
|
|
65
|
-
$
|
|
66
|
-
$
|
|
67
|
-
$fontSizeMini: $baseFontSize * 0.75 !default; // ~11px
|
|
100
|
+
$padding-xs-vertical: 1px !default;
|
|
101
|
+
$padding-xs-horizontal: 5px !default;
|
|
68
102
|
|
|
69
|
-
$
|
|
70
|
-
$
|
|
71
|
-
$paddingMini: 0px 6px !default; // 22px
|
|
103
|
+
$line-height-large: 1.33 !default;
|
|
104
|
+
$line-height-small: 1.5 !default;
|
|
72
105
|
|
|
73
|
-
$
|
|
74
|
-
$
|
|
75
|
-
$
|
|
106
|
+
$border-radius-base: 4px !default;
|
|
107
|
+
$border-radius-large: 6px !default;
|
|
108
|
+
$border-radius-small: 3px !default;
|
|
76
109
|
|
|
110
|
+
//** Global color for active items (e.g., navs or dropdowns).
|
|
111
|
+
$component-active-color: #fff !default;
|
|
112
|
+
//** Global background color for active items (e.g., navs or dropdowns).
|
|
113
|
+
$component-active-bg: $brand-primary !default;
|
|
77
114
|
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
$
|
|
82
|
-
$tableBackgroundHover: #f5f5f5 !default; // for hover
|
|
83
|
-
$tableBorder: #ddd !default; // table and cell border
|
|
115
|
+
//** Width of the `border` for generating carets that indicator dropdowns.
|
|
116
|
+
$caret-width-base: 4px !default;
|
|
117
|
+
//** Carets increase slightly in size for larger components.
|
|
118
|
+
$caret-width-large: 5px !default;
|
|
84
119
|
|
|
85
|
-
// Buttons
|
|
86
|
-
// -------------------------
|
|
87
|
-
$btnBackground: $white !default;
|
|
88
|
-
$btnBackgroundHighlight: darken($white, 10%) !default;
|
|
89
|
-
$btnBorder: #ccc !default;
|
|
90
120
|
|
|
91
|
-
|
|
92
|
-
|
|
121
|
+
//== Tables
|
|
122
|
+
//
|
|
123
|
+
//## Customizes the `.table` component with basic values, each used across all table variations.
|
|
93
124
|
|
|
94
|
-
|
|
95
|
-
$
|
|
125
|
+
//** Padding for `<th>`s and `<td>`s.
|
|
126
|
+
$table-cell-padding: 8px !default;
|
|
127
|
+
//** Padding for cells in `.table-condensed`.
|
|
128
|
+
$table-condensed-cell-padding: 5px !default;
|
|
96
129
|
|
|
97
|
-
|
|
98
|
-
$
|
|
130
|
+
//** Default background color used for all tables.
|
|
131
|
+
$table-bg: transparent !default;
|
|
132
|
+
//** Background color used for `.table-striped`.
|
|
133
|
+
$table-bg-accent: #f9f9f9 !default;
|
|
134
|
+
//** Background color used for `.table-hover`.
|
|
135
|
+
$table-bg-hover: #f5f5f5 !default;
|
|
136
|
+
$table-bg-active: $table-bg-hover !default;
|
|
99
137
|
|
|
100
|
-
|
|
101
|
-
$
|
|
138
|
+
//** Border color for table and cell borders.
|
|
139
|
+
$table-border-color: #ddd !default;
|
|
102
140
|
|
|
103
|
-
$btnDangerBackground: #ee5f5b !default;
|
|
104
|
-
$btnDangerBackgroundHighlight: #bd362f !default;
|
|
105
141
|
|
|
106
|
-
|
|
107
|
-
|
|
142
|
+
//== Buttons
|
|
143
|
+
//
|
|
144
|
+
//## For each of Bootstrap's buttons, define text, background and border color.
|
|
108
145
|
|
|
146
|
+
$btn-font-weight: normal !default;
|
|
109
147
|
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
$
|
|
113
|
-
$inputBorder: #ccc !default;
|
|
114
|
-
$inputBorderRadius: $baseBorderRadius !default;
|
|
115
|
-
$inputDisabledBackground: $grayLighter !default;
|
|
116
|
-
$formActionsBackground: #f5f5f5 !default;
|
|
117
|
-
$inputHeight: $baseLineHeight + 10px; // base line-height + 8px vertical padding + 2px top/bottom border
|
|
148
|
+
$btn-default-color: #333 !default;
|
|
149
|
+
$btn-default-bg: #fff !default;
|
|
150
|
+
$btn-default-border: #ccc !default;
|
|
118
151
|
|
|
152
|
+
$btn-primary-color: #fff !default;
|
|
153
|
+
$btn-primary-bg: $brand-primary !default;
|
|
154
|
+
$btn-primary-border: darken($btn-primary-bg, 5%) !default;
|
|
119
155
|
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
$
|
|
123
|
-
$dropdownBorder: rgba(0,0,0,.2) !default;
|
|
124
|
-
$dropdownDividerTop: #e5e5e5 !default;
|
|
125
|
-
$dropdownDividerBottom: $white !default;
|
|
156
|
+
$btn-success-color: #fff !default;
|
|
157
|
+
$btn-success-bg: $brand-success !default;
|
|
158
|
+
$btn-success-border: darken($btn-success-bg, 5%) !default;
|
|
126
159
|
|
|
127
|
-
$
|
|
128
|
-
$
|
|
129
|
-
$
|
|
160
|
+
$btn-info-color: #fff !default;
|
|
161
|
+
$btn-info-bg: $brand-info !default;
|
|
162
|
+
$btn-info-border: darken($btn-info-bg, 5%) !default;
|
|
130
163
|
|
|
131
|
-
$
|
|
132
|
-
$
|
|
164
|
+
$btn-warning-color: #fff !default;
|
|
165
|
+
$btn-warning-bg: $brand-warning !default;
|
|
166
|
+
$btn-warning-border: darken($btn-warning-bg, 5%) !default;
|
|
133
167
|
|
|
168
|
+
$btn-danger-color: #fff !default;
|
|
169
|
+
$btn-danger-bg: $brand-danger !default;
|
|
170
|
+
$btn-danger-border: darken($btn-danger-bg, 5%) !default;
|
|
134
171
|
|
|
172
|
+
$btn-link-disabled-color: $gray-light !default;
|
|
135
173
|
|
|
136
|
-
// COMPONENT VARIABLES
|
|
137
|
-
// --------------------------------------------------
|
|
138
174
|
|
|
175
|
+
//== Forms
|
|
176
|
+
//
|
|
177
|
+
//##
|
|
178
|
+
|
|
179
|
+
//** `<input>` background color
|
|
180
|
+
$input-bg: #fff !default;
|
|
181
|
+
//** `<input disabled>` background color
|
|
182
|
+
$input-bg-disabled: $gray-lighter !default;
|
|
183
|
+
|
|
184
|
+
//** Text color for `<input>`s
|
|
185
|
+
$input-color: $gray !default;
|
|
186
|
+
//** `<input>` border color
|
|
187
|
+
$input-border: #ccc !default;
|
|
188
|
+
//** `<input>` border radius
|
|
189
|
+
$input-border-radius: $border-radius-base !default;
|
|
190
|
+
//** Border color for inputs on focus
|
|
191
|
+
$input-border-focus: #66afe9 !default;
|
|
192
|
+
|
|
193
|
+
//** Placeholder text color
|
|
194
|
+
$input-color-placeholder: $gray-light !default;
|
|
195
|
+
|
|
196
|
+
//** Default `.form-control` height
|
|
197
|
+
$input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2) !default;
|
|
198
|
+
//** Large `.form-control` height
|
|
199
|
+
$input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2) !default;
|
|
200
|
+
//** Small `.form-control` height
|
|
201
|
+
$input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;
|
|
202
|
+
|
|
203
|
+
$legend-color: $gray-dark !default;
|
|
204
|
+
$legend-border-color: #e5e5e5 !default;
|
|
205
|
+
|
|
206
|
+
//** Background color for textual input addons
|
|
207
|
+
$input-group-addon-bg: $gray-lighter !default;
|
|
208
|
+
//** Border color for textual input addons
|
|
209
|
+
$input-group-addon-border-color: $input-border !default;
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
//== Dropdowns
|
|
213
|
+
//
|
|
214
|
+
//## Dropdown menu container and contents.
|
|
139
215
|
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
$
|
|
146
|
-
|
|
147
|
-
$
|
|
148
|
-
$zindexModalBackdrop: 1040 !default;
|
|
149
|
-
$zindexModal: 1050 !default;
|
|
216
|
+
//** Background for the dropdown menu.
|
|
217
|
+
$dropdown-bg: #fff !default;
|
|
218
|
+
//** Dropdown menu `border-color`.
|
|
219
|
+
$dropdown-border: rgba(0,0,0,.15) !default;
|
|
220
|
+
//** Dropdown menu `border-color` **for IE8**.
|
|
221
|
+
$dropdown-fallback-border: #ccc !default;
|
|
222
|
+
//** Divider color for between dropdown items.
|
|
223
|
+
$dropdown-divider-bg: #e5e5e5 !default;
|
|
150
224
|
|
|
225
|
+
//** Dropdown link text color.
|
|
226
|
+
$dropdown-link-color: $gray-dark !default;
|
|
227
|
+
//** Hover color for dropdown links.
|
|
228
|
+
$dropdown-link-hover-color: darken($gray-dark, 5%) !default;
|
|
229
|
+
//** Hover background for dropdown links.
|
|
230
|
+
$dropdown-link-hover-bg: #f5f5f5 !default;
|
|
151
231
|
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
$
|
|
232
|
+
//** Active dropdown menu item text color.
|
|
233
|
+
$dropdown-link-active-color: $component-active-color !default;
|
|
234
|
+
//** Active dropdown menu item background color.
|
|
235
|
+
$dropdown-link-active-bg: $component-active-bg !default;
|
|
156
236
|
|
|
237
|
+
//** Disabled dropdown menu item background color.
|
|
238
|
+
$dropdown-link-disabled-color: $gray-light !default;
|
|
157
239
|
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
$placeholderText: $grayLight !default;
|
|
240
|
+
//** Text color for headers within dropdown menus.
|
|
241
|
+
$dropdown-header-color: $gray-light !default;
|
|
161
242
|
|
|
243
|
+
//** Deprecated `$dropdown-caret-color` as of v3.1.0
|
|
244
|
+
$dropdown-caret-color: #000 !default;
|
|
162
245
|
|
|
163
|
-
// Hr border color
|
|
164
|
-
// -------------------------
|
|
165
|
-
$hrBorder: $grayLighter !default;
|
|
166
246
|
|
|
247
|
+
//-- Z-index master list
|
|
248
|
+
//
|
|
249
|
+
// Warning: Avoid customizing these values. They're used for a bird's eye view
|
|
250
|
+
// of components dependent on the z-axis and are designed to all work together.
|
|
251
|
+
//
|
|
252
|
+
// Note: These variables are not generated into the Customizer.
|
|
167
253
|
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
$
|
|
254
|
+
$zindex-navbar: 1000 !default;
|
|
255
|
+
$zindex-dropdown: 1000 !default;
|
|
256
|
+
$zindex-popover: 1060 !default;
|
|
257
|
+
$zindex-tooltip: 1070 !default;
|
|
258
|
+
$zindex-navbar-fixed: 1030 !default;
|
|
259
|
+
$zindex-modal-background: 1040 !default;
|
|
260
|
+
$zindex-modal: 1050 !default;
|
|
171
261
|
|
|
172
262
|
|
|
173
|
-
|
|
174
|
-
//
|
|
175
|
-
|
|
263
|
+
//== Media queries breakpoints
|
|
264
|
+
//
|
|
265
|
+
//## Define the breakpoints at which your layout will change, adapting to different screen sizes.
|
|
266
|
+
|
|
267
|
+
// Extra small screen / phone
|
|
268
|
+
//** Deprecated `$screen-xs` as of v3.0.1
|
|
269
|
+
$screen-xs: 480px !default;
|
|
270
|
+
//** Deprecated `$screen-xs-min` as of v3.2.0
|
|
271
|
+
$screen-xs-min: $screen-xs !default;
|
|
272
|
+
//** Deprecated `$screen-phone` as of v3.0.1
|
|
273
|
+
$screen-phone: $screen-xs-min !default;
|
|
274
|
+
|
|
275
|
+
// Small screen / tablet
|
|
276
|
+
//** Deprecated `$screen-sm` as of v3.0.1
|
|
277
|
+
$screen-sm: 768px !default;
|
|
278
|
+
$screen-sm-min: $screen-sm !default;
|
|
279
|
+
//** Deprecated `$screen-tablet` as of v3.0.1
|
|
280
|
+
$screen-tablet: $screen-sm-min !default;
|
|
281
|
+
|
|
282
|
+
// Medium screen / desktop
|
|
283
|
+
//** Deprecated `$screen-md` as of v3.0.1
|
|
284
|
+
$screen-md: 992px !default;
|
|
285
|
+
$screen-md-min: $screen-md !default;
|
|
286
|
+
//** Deprecated `$screen-desktop` as of v3.0.1
|
|
287
|
+
$screen-desktop: $screen-md-min !default;
|
|
288
|
+
|
|
289
|
+
// Large screen / wide desktop
|
|
290
|
+
//** Deprecated `$screen-lg` as of v3.0.1
|
|
291
|
+
$screen-lg: 1200px !default;
|
|
292
|
+
$screen-lg-min: $screen-lg !default;
|
|
293
|
+
//** Deprecated `$screen-lg-desktop` as of v3.0.1
|
|
294
|
+
$screen-lg-desktop: $screen-lg-min !default;
|
|
295
|
+
|
|
296
|
+
// So media queries don't overlap when required, provide a maximum
|
|
297
|
+
$screen-xs-max: ($screen-sm-min - 1) !default;
|
|
298
|
+
$screen-sm-max: ($screen-md-min - 1) !default;
|
|
299
|
+
$screen-md-max: ($screen-lg-min - 1) !default;
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
//== Grid system
|
|
303
|
+
//
|
|
304
|
+
//## Define your custom responsive grid.
|
|
305
|
+
|
|
306
|
+
//** Number of columns in the grid.
|
|
307
|
+
$grid-columns: 12 !default;
|
|
308
|
+
//** Padding between columns. Gets divided in half for the left and right.
|
|
309
|
+
$grid-gutter-width: 30px !default;
|
|
310
|
+
// Navbar collapse
|
|
311
|
+
//** Point at which the navbar becomes uncollapsed.
|
|
312
|
+
$grid-float-breakpoint: $screen-sm-min !default;
|
|
313
|
+
//** Point at which the navbar begins collapsing.
|
|
314
|
+
$grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
//== Container sizes
|
|
318
|
+
//
|
|
319
|
+
//## Define the maximum width of `.container` for different screen sizes.
|
|
176
320
|
|
|
321
|
+
// Small screen / tablet
|
|
322
|
+
$container-tablet: ((720px + $grid-gutter-width)) !default;
|
|
323
|
+
//** For `$screen-sm-min` and up.
|
|
324
|
+
$container-sm: $container-tablet !default;
|
|
177
325
|
|
|
178
|
-
//
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
$
|
|
326
|
+
// Medium screen / desktop
|
|
327
|
+
$container-desktop: ((940px + $grid-gutter-width)) !default;
|
|
328
|
+
//** For `$screen-md-min` and up.
|
|
329
|
+
$container-md: $container-desktop !default;
|
|
182
330
|
|
|
183
|
-
|
|
184
|
-
$
|
|
185
|
-
|
|
186
|
-
$
|
|
331
|
+
// Large screen / wide desktop
|
|
332
|
+
$container-large-desktop: ((1140px + $grid-gutter-width)) !default;
|
|
333
|
+
//** For `$screen-lg-min` and up.
|
|
334
|
+
$container-lg: $container-large-desktop !default;
|
|
187
335
|
|
|
188
|
-
$navbarText: #777 !default;
|
|
189
|
-
$navbarLinkColor: #777 !default;
|
|
190
|
-
$navbarLinkColorHover: $grayDark !default;
|
|
191
|
-
$navbarLinkColorActive: $gray !default;
|
|
192
|
-
$navbarLinkBackgroundHover: transparent !default;
|
|
193
|
-
$navbarLinkBackgroundActive: darken($navbarBackground, 5%) !default;
|
|
194
336
|
|
|
195
|
-
|
|
337
|
+
//== Navbar
|
|
338
|
+
//
|
|
339
|
+
//##
|
|
340
|
+
|
|
341
|
+
// Basics of a navbar
|
|
342
|
+
$navbar-height: 50px !default;
|
|
343
|
+
$navbar-margin-bottom: $line-height-computed !default;
|
|
344
|
+
$navbar-border-radius: $border-radius-base !default;
|
|
345
|
+
$navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default;
|
|
346
|
+
$navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default;
|
|
347
|
+
$navbar-collapse-max-height: 340px !default;
|
|
348
|
+
|
|
349
|
+
$navbar-default-color: #777 !default;
|
|
350
|
+
$navbar-default-bg: #f8f8f8 !default;
|
|
351
|
+
$navbar-default-border: darken($navbar-default-bg, 6.5%) !default;
|
|
352
|
+
|
|
353
|
+
// Navbar links
|
|
354
|
+
$navbar-default-link-color: #777 !default;
|
|
355
|
+
$navbar-default-link-hover-color: #333 !default;
|
|
356
|
+
$navbar-default-link-hover-bg: transparent !default;
|
|
357
|
+
$navbar-default-link-active-color: #555 !default;
|
|
358
|
+
$navbar-default-link-active-bg: darken($navbar-default-bg, 6.5%) !default;
|
|
359
|
+
$navbar-default-link-disabled-color: #ccc !default;
|
|
360
|
+
$navbar-default-link-disabled-bg: transparent !default;
|
|
361
|
+
|
|
362
|
+
// Navbar brand label
|
|
363
|
+
$navbar-default-brand-color: $navbar-default-link-color !default;
|
|
364
|
+
$navbar-default-brand-hover-color: darken($navbar-default-brand-color, 10%) !default;
|
|
365
|
+
$navbar-default-brand-hover-bg: transparent !default;
|
|
366
|
+
|
|
367
|
+
// Navbar toggle
|
|
368
|
+
$navbar-default-toggle-hover-bg: #ddd !default;
|
|
369
|
+
$navbar-default-toggle-icon-bar-bg: #888 !default;
|
|
370
|
+
$navbar-default-toggle-border-color: #ddd !default;
|
|
371
|
+
|
|
196
372
|
|
|
197
373
|
// Inverted navbar
|
|
198
|
-
|
|
199
|
-
$
|
|
200
|
-
$
|
|
374
|
+
// Reset inverted navbar basics
|
|
375
|
+
$navbar-inverse-color: $gray-light !default;
|
|
376
|
+
$navbar-inverse-bg: #222 !default;
|
|
377
|
+
$navbar-inverse-border: darken($navbar-inverse-bg, 10%) !default;
|
|
378
|
+
|
|
379
|
+
// Inverted navbar links
|
|
380
|
+
$navbar-inverse-link-color: $gray-light !default;
|
|
381
|
+
$navbar-inverse-link-hover-color: #fff !default;
|
|
382
|
+
$navbar-inverse-link-hover-bg: transparent !default;
|
|
383
|
+
$navbar-inverse-link-active-color: $navbar-inverse-link-hover-color !default;
|
|
384
|
+
$navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 10%) !default;
|
|
385
|
+
$navbar-inverse-link-disabled-color: #444 !default;
|
|
386
|
+
$navbar-inverse-link-disabled-bg: transparent !default;
|
|
387
|
+
|
|
388
|
+
// Inverted navbar brand label
|
|
389
|
+
$navbar-inverse-brand-color: $navbar-inverse-link-color !default;
|
|
390
|
+
$navbar-inverse-brand-hover-color: #fff !default;
|
|
391
|
+
$navbar-inverse-brand-hover-bg: transparent !default;
|
|
392
|
+
|
|
393
|
+
// Inverted navbar toggle
|
|
394
|
+
$navbar-inverse-toggle-hover-bg: #333 !default;
|
|
395
|
+
$navbar-inverse-toggle-icon-bar-bg: #fff !default;
|
|
396
|
+
$navbar-inverse-toggle-border-color: #333 !default;
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
//== Navs
|
|
400
|
+
//
|
|
401
|
+
//##
|
|
201
402
|
|
|
202
|
-
|
|
203
|
-
$
|
|
204
|
-
$
|
|
205
|
-
$navbarInverseLinkColorActive: $navbarInverseLinkColorHover !default;
|
|
206
|
-
$navbarInverseLinkBackgroundHover: transparent !default;
|
|
207
|
-
$navbarInverseLinkBackgroundActive: $navbarInverseBackground !default;
|
|
403
|
+
//=== Shared nav styles
|
|
404
|
+
$nav-link-padding: 10px 15px !default;
|
|
405
|
+
$nav-link-hover-bg: $gray-lighter !default;
|
|
208
406
|
|
|
209
|
-
$
|
|
210
|
-
$
|
|
211
|
-
$navbarInverseSearchBorder: $navbarInverseBackground !default;
|
|
212
|
-
$navbarInverseSearchPlaceholderColor: #ccc !default;
|
|
407
|
+
$nav-disabled-link-color: $gray-light !default;
|
|
408
|
+
$nav-disabled-link-hover-color: $gray-light !default;
|
|
213
409
|
|
|
214
|
-
$
|
|
410
|
+
$nav-open-link-hover-color: #fff !default;
|
|
215
411
|
|
|
412
|
+
//== Tabs
|
|
413
|
+
$nav-tabs-border-color: #ddd !default;
|
|
216
414
|
|
|
217
|
-
|
|
218
|
-
// -------------------------
|
|
219
|
-
$paginationBackground: #fff !default;
|
|
220
|
-
$paginationBorder: #ddd !default;
|
|
221
|
-
$paginationActiveBackground: #f5f5f5 !default;
|
|
415
|
+
$nav-tabs-link-hover-border-color: $gray-lighter !default;
|
|
222
416
|
|
|
417
|
+
$nav-tabs-active-link-hover-bg: $body-bg !default;
|
|
418
|
+
$nav-tabs-active-link-hover-color: $gray !default;
|
|
419
|
+
$nav-tabs-active-link-hover-border-color: #ddd !default;
|
|
223
420
|
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
$heroUnitBackground: $grayLighter !default;
|
|
227
|
-
$heroUnitHeadingColor: inherit !default;
|
|
228
|
-
$heroUnitLeadColor: inherit !default;
|
|
421
|
+
$nav-tabs-justified-link-border-color: #ddd !default;
|
|
422
|
+
$nav-tabs-justified-active-link-border-color: $body-bg !default;
|
|
229
423
|
|
|
424
|
+
//== Pills
|
|
425
|
+
$nav-pills-border-radius: $border-radius-base !default;
|
|
426
|
+
$nav-pills-active-link-hover-bg: $component-active-bg !default;
|
|
427
|
+
$nav-pills-active-link-hover-color: $component-active-color !default;
|
|
230
428
|
|
|
231
|
-
// Form states and alerts
|
|
232
|
-
// -------------------------
|
|
233
|
-
$warningText: #c09853 !default;
|
|
234
|
-
$warningBackground: #fcf8e3 !default;
|
|
235
|
-
$warningBorder: darken(adjust-hue($warningBackground, -10), 3%) !default;
|
|
236
429
|
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
430
|
+
//== Pagination
|
|
431
|
+
//
|
|
432
|
+
//##
|
|
240
433
|
|
|
241
|
-
$
|
|
242
|
-
$
|
|
243
|
-
$
|
|
434
|
+
$pagination-color: $link-color !default;
|
|
435
|
+
$pagination-bg: #fff !default;
|
|
436
|
+
$pagination-border: #ddd !default;
|
|
244
437
|
|
|
245
|
-
$
|
|
246
|
-
$
|
|
247
|
-
$
|
|
438
|
+
$pagination-hover-color: $link-hover-color !default;
|
|
439
|
+
$pagination-hover-bg: $gray-lighter !default;
|
|
440
|
+
$pagination-hover-border: #ddd !default;
|
|
248
441
|
|
|
442
|
+
$pagination-active-color: #fff !default;
|
|
443
|
+
$pagination-active-bg: $brand-primary !default;
|
|
444
|
+
$pagination-active-border: $brand-primary !default;
|
|
249
445
|
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
$
|
|
253
|
-
$tooltipBackground: #000 !default;
|
|
254
|
-
$tooltipArrowWidth: 5px !default;
|
|
255
|
-
$tooltipArrowColor: $tooltipBackground !default;
|
|
446
|
+
$pagination-disabled-color: $gray-light !default;
|
|
447
|
+
$pagination-disabled-bg: #fff !default;
|
|
448
|
+
$pagination-disabled-border: #ddd !default;
|
|
256
449
|
|
|
257
|
-
$popoverBackground: #fff !default;
|
|
258
|
-
$popoverArrowWidth: 10px !default;
|
|
259
|
-
$popoverArrowColor: #fff !default;
|
|
260
|
-
$popoverTitleBackground: darken($popoverBackground, 3%) !default;
|
|
261
450
|
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
451
|
+
//== Pager
|
|
452
|
+
//
|
|
453
|
+
//##
|
|
265
454
|
|
|
455
|
+
$pager-bg: $pagination-bg !default;
|
|
456
|
+
$pager-border: $pagination-border !default;
|
|
457
|
+
$pager-border-radius: 15px !default;
|
|
266
458
|
|
|
459
|
+
$pager-hover-bg: $pagination-hover-bg !default;
|
|
267
460
|
|
|
268
|
-
|
|
269
|
-
|
|
461
|
+
$pager-active-bg: $pagination-active-bg !default;
|
|
462
|
+
$pager-active-color: $pagination-active-color !default;
|
|
270
463
|
|
|
464
|
+
$pager-disabled-color: $pagination-disabled-color !default;
|
|
271
465
|
|
|
272
|
-
// Default 940px grid
|
|
273
|
-
// -------------------------
|
|
274
|
-
$gridColumns: 12 !default;
|
|
275
|
-
$gridColumnWidth: 60px !default;
|
|
276
|
-
$gridGutterWidth: 20px !default;
|
|
277
|
-
$gridRowWidth: ($gridColumns * $gridColumnWidth) + ($gridGutterWidth * ($gridColumns - 1)) !default;
|
|
278
466
|
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
467
|
+
//== Jumbotron
|
|
468
|
+
//
|
|
469
|
+
//##
|
|
470
|
+
|
|
471
|
+
$jumbotron-padding: 30px !default;
|
|
472
|
+
$jumbotron-color: inherit !default;
|
|
473
|
+
$jumbotron-bg: $gray-lighter !default;
|
|
474
|
+
$jumbotron-heading-color: inherit !default;
|
|
475
|
+
$jumbotron-font-size: ceil(($font-size-base * 1.5)) !default;
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
//== Form states and alerts
|
|
479
|
+
//
|
|
480
|
+
//## Define colors for form feedback states and, by default, alerts.
|
|
481
|
+
|
|
482
|
+
$state-success-text: #3c763d !default;
|
|
483
|
+
$state-success-bg: #dff0d8 !default;
|
|
484
|
+
$state-success-border: darken(adjust-hue($state-success-bg, -10), 5%) !default;
|
|
485
|
+
|
|
486
|
+
$state-info-text: #31708f !default;
|
|
487
|
+
$state-info-bg: #d9edf7 !default;
|
|
488
|
+
$state-info-border: darken(adjust-hue($state-info-bg, -10), 7%) !default;
|
|
489
|
+
|
|
490
|
+
$state-warning-text: #8a6d3b !default;
|
|
491
|
+
$state-warning-bg: #fcf8e3 !default;
|
|
492
|
+
$state-warning-border: darken(adjust-hue($state-warning-bg, -10), 5%) !default;
|
|
493
|
+
|
|
494
|
+
$state-danger-text: #a94442 !default;
|
|
495
|
+
$state-danger-bg: #f2dede !default;
|
|
496
|
+
$state-danger-border: darken(adjust-hue($state-danger-bg, -10), 5%) !default;
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
//== Tooltips
|
|
500
|
+
//
|
|
501
|
+
//##
|
|
502
|
+
|
|
503
|
+
//** Tooltip max width
|
|
504
|
+
$tooltip-max-width: 200px !default;
|
|
505
|
+
//** Tooltip text color
|
|
506
|
+
$tooltip-color: #fff !default;
|
|
507
|
+
//** Tooltip background color
|
|
508
|
+
$tooltip-bg: #000 !default;
|
|
509
|
+
$tooltip-opacity: .9 !default;
|
|
283
510
|
|
|
284
|
-
|
|
285
|
-
$
|
|
286
|
-
|
|
287
|
-
$
|
|
511
|
+
//** Tooltip arrow width
|
|
512
|
+
$tooltip-arrow-width: 5px !default;
|
|
513
|
+
//** Tooltip arrow color
|
|
514
|
+
$tooltip-arrow-color: $tooltip-bg !default;
|
|
288
515
|
|
|
289
516
|
|
|
290
|
-
|
|
291
|
-
//
|
|
292
|
-
|
|
293
|
-
|
|
517
|
+
//== Popovers
|
|
518
|
+
//
|
|
519
|
+
//##
|
|
520
|
+
|
|
521
|
+
//** Popover body background color
|
|
522
|
+
$popover-bg: #fff !default;
|
|
523
|
+
//** Popover maximum width
|
|
524
|
+
$popover-max-width: 276px !default;
|
|
525
|
+
//** Popover border color
|
|
526
|
+
$popover-border-color: rgba(0,0,0,.2) !default;
|
|
527
|
+
//** Popover fallback border color
|
|
528
|
+
$popover-fallback-border-color: #ccc !default;
|
|
529
|
+
|
|
530
|
+
//** Popover title background color
|
|
531
|
+
$popover-title-bg: darken($popover-bg, 3%) !default;
|
|
532
|
+
|
|
533
|
+
//** Popover arrow width
|
|
534
|
+
$popover-arrow-width: 10px !default;
|
|
535
|
+
//** Popover arrow color
|
|
536
|
+
$popover-arrow-color: #fff !default;
|
|
537
|
+
|
|
538
|
+
//** Popover outer arrow width
|
|
539
|
+
$popover-arrow-outer-width: ($popover-arrow-width + 1) !default;
|
|
540
|
+
//** Popover outer arrow color
|
|
541
|
+
$popover-arrow-outer-color: fade_in($popover-border-color, 0.05) !default;
|
|
542
|
+
//** Popover outer arrow fallback color
|
|
543
|
+
$popover-arrow-outer-fallback-color: darken($popover-fallback-border-color, 20%) !default;
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
//== Labels
|
|
547
|
+
//
|
|
548
|
+
//##
|
|
549
|
+
|
|
550
|
+
//** Default label background color
|
|
551
|
+
$label-default-bg: $gray-light !default;
|
|
552
|
+
//** Primary label background color
|
|
553
|
+
$label-primary-bg: $brand-primary !default;
|
|
554
|
+
//** Success label background color
|
|
555
|
+
$label-success-bg: $brand-success !default;
|
|
556
|
+
//** Info label background color
|
|
557
|
+
$label-info-bg: $brand-info !default;
|
|
558
|
+
//** Warning label background color
|
|
559
|
+
$label-warning-bg: $brand-warning !default;
|
|
560
|
+
//** Danger label background color
|
|
561
|
+
$label-danger-bg: $brand-danger !default;
|
|
562
|
+
|
|
563
|
+
//** Default label text color
|
|
564
|
+
$label-color: #fff !default;
|
|
565
|
+
//** Default text color of a linked label
|
|
566
|
+
$label-link-hover-color: #fff !default;
|
|
567
|
+
|
|
568
|
+
|
|
569
|
+
//== Modals
|
|
570
|
+
//
|
|
571
|
+
//##
|
|
572
|
+
|
|
573
|
+
//** Padding applied to the modal body
|
|
574
|
+
$modal-inner-padding: 15px !default;
|
|
575
|
+
|
|
576
|
+
//** Padding applied to the modal title
|
|
577
|
+
$modal-title-padding: 15px !default;
|
|
578
|
+
//** Modal title line-height
|
|
579
|
+
$modal-title-line-height: $line-height-base !default;
|
|
580
|
+
|
|
581
|
+
//** Background color of modal content area
|
|
582
|
+
$modal-content-bg: #fff !default;
|
|
583
|
+
//** Modal content border color
|
|
584
|
+
$modal-content-border-color: rgba(0,0,0,.2) !default;
|
|
585
|
+
//** Modal content border color **for IE8**
|
|
586
|
+
$modal-content-fallback-border-color: #999 !default;
|
|
587
|
+
|
|
588
|
+
//** Modal backdrop background color
|
|
589
|
+
$modal-backdrop-bg: #000 !default;
|
|
590
|
+
//** Modal backdrop opacity
|
|
591
|
+
$modal-backdrop-opacity: .5 !default;
|
|
592
|
+
//** Modal header border color
|
|
593
|
+
$modal-header-border-color: #e5e5e5 !default;
|
|
594
|
+
//** Modal footer border color
|
|
595
|
+
$modal-footer-border-color: $modal-header-border-color !default;
|
|
596
|
+
|
|
597
|
+
$modal-lg: 900px !default;
|
|
598
|
+
$modal-md: 600px !default;
|
|
599
|
+
$modal-sm: 300px !default;
|
|
600
|
+
|
|
601
|
+
|
|
602
|
+
//== Alerts
|
|
603
|
+
//
|
|
604
|
+
//## Define alert colors, border radius, and padding.
|
|
605
|
+
|
|
606
|
+
$alert-padding: 15px !default;
|
|
607
|
+
$alert-border-radius: $border-radius-base !default;
|
|
608
|
+
$alert-link-font-weight: bold !default;
|
|
609
|
+
|
|
610
|
+
$alert-success-bg: $state-success-bg !default;
|
|
611
|
+
$alert-success-text: $state-success-text !default;
|
|
612
|
+
$alert-success-border: $state-success-border !default;
|
|
613
|
+
|
|
614
|
+
$alert-info-bg: $state-info-bg !default;
|
|
615
|
+
$alert-info-text: $state-info-text !default;
|
|
616
|
+
$alert-info-border: $state-info-border !default;
|
|
617
|
+
|
|
618
|
+
$alert-warning-bg: $state-warning-bg !default;
|
|
619
|
+
$alert-warning-text: $state-warning-text !default;
|
|
620
|
+
$alert-warning-border: $state-warning-border !default;
|
|
621
|
+
|
|
622
|
+
$alert-danger-bg: $state-danger-bg !default;
|
|
623
|
+
$alert-danger-text: $state-danger-text !default;
|
|
624
|
+
$alert-danger-border: $state-danger-border !default;
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
//== Progress bars
|
|
628
|
+
//
|
|
629
|
+
//##
|
|
630
|
+
|
|
631
|
+
//** Background color of the whole progress component
|
|
632
|
+
$progress-bg: #f5f5f5 !default;
|
|
633
|
+
//** Progress bar text color
|
|
634
|
+
$progress-bar-color: #fff !default;
|
|
635
|
+
|
|
636
|
+
//** Default progress bar color
|
|
637
|
+
$progress-bar-bg: $brand-primary !default;
|
|
638
|
+
//** Success progress bar color
|
|
639
|
+
$progress-bar-success-bg: $brand-success !default;
|
|
640
|
+
//** Warning progress bar color
|
|
641
|
+
$progress-bar-warning-bg: $brand-warning !default;
|
|
642
|
+
//** Danger progress bar color
|
|
643
|
+
$progress-bar-danger-bg: $brand-danger !default;
|
|
644
|
+
//** Info progress bar color
|
|
645
|
+
$progress-bar-info-bg: $brand-info !default;
|
|
646
|
+
|
|
647
|
+
|
|
648
|
+
//== List group
|
|
649
|
+
//
|
|
650
|
+
//##
|
|
651
|
+
|
|
652
|
+
//** Background color on `.list-group-item`
|
|
653
|
+
$list-group-bg: #fff !default;
|
|
654
|
+
//** `.list-group-item` border color
|
|
655
|
+
$list-group-border: #ddd !default;
|
|
656
|
+
//** List group border radius
|
|
657
|
+
$list-group-border-radius: $border-radius-base !default;
|
|
658
|
+
|
|
659
|
+
//** Background color of single list items on hover
|
|
660
|
+
$list-group-hover-bg: #f5f5f5 !default;
|
|
661
|
+
//** Text color of active list items
|
|
662
|
+
$list-group-active-color: $component-active-color !default;
|
|
663
|
+
//** Background color of active list items
|
|
664
|
+
$list-group-active-bg: $component-active-bg !default;
|
|
665
|
+
//** Border color of active list elements
|
|
666
|
+
$list-group-active-border: $list-group-active-bg !default;
|
|
667
|
+
//** Text color for content within active list items
|
|
668
|
+
$list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
|
|
669
|
+
|
|
670
|
+
//** Text color of disabled list items
|
|
671
|
+
$list-group-disabled-color: $gray-light !default;
|
|
672
|
+
//** Background color of disabled list items
|
|
673
|
+
$list-group-disabled-bg: $gray-lighter !default;
|
|
674
|
+
//** Text color for content within disabled list items
|
|
675
|
+
$list-group-disabled-text-color: $list-group-disabled-color !default;
|
|
676
|
+
|
|
677
|
+
$list-group-link-color: #555 !default;
|
|
678
|
+
$list-group-link-hover-color: $list-group-link-color !default;
|
|
679
|
+
$list-group-link-heading-color: #333 !default;
|
|
680
|
+
|
|
681
|
+
|
|
682
|
+
//== Panels
|
|
683
|
+
//
|
|
684
|
+
//##
|
|
685
|
+
|
|
686
|
+
$panel-bg: #fff !default;
|
|
687
|
+
$panel-body-padding: 15px !default;
|
|
688
|
+
$panel-heading-padding: 10px 15px !default;
|
|
689
|
+
$panel-footer-padding: $panel-heading-padding !default;
|
|
690
|
+
$panel-border-radius: $border-radius-base !default;
|
|
691
|
+
|
|
692
|
+
//** Border color for elements within panels
|
|
693
|
+
$panel-inner-border: #ddd !default;
|
|
694
|
+
$panel-footer-bg: #f5f5f5 !default;
|
|
695
|
+
|
|
696
|
+
$panel-default-text: $gray-dark !default;
|
|
697
|
+
$panel-default-border: #ddd !default;
|
|
698
|
+
$panel-default-heading-bg: #f5f5f5 !default;
|
|
699
|
+
|
|
700
|
+
$panel-primary-text: #fff !default;
|
|
701
|
+
$panel-primary-border: $brand-primary !default;
|
|
702
|
+
$panel-primary-heading-bg: $brand-primary !default;
|
|
703
|
+
|
|
704
|
+
$panel-success-text: $state-success-text !default;
|
|
705
|
+
$panel-success-border: $state-success-border !default;
|
|
706
|
+
$panel-success-heading-bg: $state-success-bg !default;
|
|
707
|
+
|
|
708
|
+
$panel-info-text: $state-info-text !default;
|
|
709
|
+
$panel-info-border: $state-info-border !default;
|
|
710
|
+
$panel-info-heading-bg: $state-info-bg !default;
|
|
711
|
+
|
|
712
|
+
$panel-warning-text: $state-warning-text !default;
|
|
713
|
+
$panel-warning-border: $state-warning-border !default;
|
|
714
|
+
$panel-warning-heading-bg: $state-warning-bg !default;
|
|
715
|
+
|
|
716
|
+
$panel-danger-text: $state-danger-text !default;
|
|
717
|
+
$panel-danger-border: $state-danger-border !default;
|
|
718
|
+
$panel-danger-heading-bg: $state-danger-bg !default;
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
//== Thumbnails
|
|
722
|
+
//
|
|
723
|
+
//##
|
|
724
|
+
|
|
725
|
+
//** Padding around the thumbnail image
|
|
726
|
+
$thumbnail-padding: 4px !default;
|
|
727
|
+
//** Thumbnail background color
|
|
728
|
+
$thumbnail-bg: $body-bg !default;
|
|
729
|
+
//** Thumbnail border color
|
|
730
|
+
$thumbnail-border: #ddd !default;
|
|
731
|
+
//** Thumbnail border radius
|
|
732
|
+
$thumbnail-border-radius: $border-radius-base !default;
|
|
733
|
+
|
|
734
|
+
//** Custom text color for thumbnail captions
|
|
735
|
+
$thumbnail-caption-color: $text-color !default;
|
|
736
|
+
//** Padding around the thumbnail caption
|
|
737
|
+
$thumbnail-caption-padding: 9px !default;
|
|
738
|
+
|
|
739
|
+
|
|
740
|
+
//== Wells
|
|
741
|
+
//
|
|
742
|
+
//##
|
|
743
|
+
|
|
744
|
+
$well-bg: #f5f5f5 !default;
|
|
745
|
+
$well-border: darken($well-bg, 7%) !default;
|
|
746
|
+
|
|
747
|
+
|
|
748
|
+
//== Badges
|
|
749
|
+
//
|
|
750
|
+
//##
|
|
751
|
+
|
|
752
|
+
$badge-color: #fff !default;
|
|
753
|
+
//** Linked badge text color on hover
|
|
754
|
+
$badge-link-hover-color: #fff !default;
|
|
755
|
+
$badge-bg: $gray-light !default;
|
|
756
|
+
|
|
757
|
+
//** Badge text color in active nav link
|
|
758
|
+
$badge-active-color: $link-color !default;
|
|
759
|
+
//** Badge background color in active nav link
|
|
760
|
+
$badge-active-bg: #fff !default;
|
|
761
|
+
|
|
762
|
+
$badge-font-weight: bold !default;
|
|
763
|
+
$badge-line-height: 1 !default;
|
|
764
|
+
$badge-border-radius: 10px !default;
|
|
765
|
+
|
|
766
|
+
|
|
767
|
+
//== Breadcrumbs
|
|
768
|
+
//
|
|
769
|
+
//##
|
|
770
|
+
|
|
771
|
+
$breadcrumb-padding-vertical: 8px !default;
|
|
772
|
+
$breadcrumb-padding-horizontal: 15px !default;
|
|
773
|
+
//** Breadcrumb background color
|
|
774
|
+
$breadcrumb-bg: #f5f5f5 !default;
|
|
775
|
+
//** Breadcrumb text color
|
|
776
|
+
$breadcrumb-color: #ccc !default;
|
|
777
|
+
//** Text color of current page in the breadcrumb
|
|
778
|
+
$breadcrumb-active-color: $gray-light !default;
|
|
779
|
+
//** Textual separator for between breadcrumb elements
|
|
780
|
+
$breadcrumb-separator: "/" !default;
|
|
781
|
+
|
|
782
|
+
|
|
783
|
+
//== Carousel
|
|
784
|
+
//
|
|
785
|
+
//##
|
|
786
|
+
|
|
787
|
+
$carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6) !default;
|
|
788
|
+
|
|
789
|
+
$carousel-control-color: #fff !default;
|
|
790
|
+
$carousel-control-width: 15% !default;
|
|
791
|
+
$carousel-control-opacity: .5 !default;
|
|
792
|
+
$carousel-control-font-size: 20px !default;
|
|
793
|
+
|
|
794
|
+
$carousel-indicator-active-bg: #fff !default;
|
|
795
|
+
$carousel-indicator-border-color: #fff !default;
|
|
796
|
+
|
|
797
|
+
$carousel-caption-color: #fff !default;
|
|
798
|
+
|
|
799
|
+
|
|
800
|
+
//== Close
|
|
801
|
+
//
|
|
802
|
+
//##
|
|
803
|
+
|
|
804
|
+
$close-font-weight: bold !default;
|
|
805
|
+
$close-color: #000 !default;
|
|
806
|
+
$close-text-shadow: 0 1px 0 #fff !default;
|
|
807
|
+
|
|
808
|
+
|
|
809
|
+
//== Code
|
|
810
|
+
//
|
|
811
|
+
//##
|
|
812
|
+
|
|
813
|
+
$code-color: #c7254e !default;
|
|
814
|
+
$code-bg: #f9f2f4 !default;
|
|
815
|
+
|
|
816
|
+
$kbd-color: #fff !default;
|
|
817
|
+
$kbd-bg: #333 !default;
|
|
818
|
+
|
|
819
|
+
$pre-bg: #f5f5f5 !default;
|
|
820
|
+
$pre-color: $gray-dark !default;
|
|
821
|
+
$pre-border-color: #ccc !default;
|
|
822
|
+
$pre-scrollable-max-height: 340px !default;
|
|
823
|
+
|
|
824
|
+
|
|
825
|
+
//== Type
|
|
826
|
+
//
|
|
827
|
+
//##
|
|
828
|
+
|
|
829
|
+
//** Horizontal offset for forms and lists.
|
|
830
|
+
$component-offset-horizontal: 180px !default;
|
|
831
|
+
//** Text muted color
|
|
832
|
+
$text-muted: $gray-light !default;
|
|
833
|
+
//** Abbreviations and acronyms border color
|
|
834
|
+
$abbr-border-color: $gray-light !default;
|
|
835
|
+
//** Headings small color
|
|
836
|
+
$headings-small-color: $gray-light !default;
|
|
837
|
+
//** Blockquote small color
|
|
838
|
+
$blockquote-small-color: $gray-light !default;
|
|
839
|
+
//** Blockquote font size
|
|
840
|
+
$blockquote-font-size: ($font-size-base * 1.25) !default;
|
|
841
|
+
//** Blockquote border color
|
|
842
|
+
$blockquote-border-color: $gray-lighter !default;
|
|
843
|
+
//** Page header border color
|
|
844
|
+
$page-header-border-color: $gray-lighter !default;
|
|
845
|
+
//** Width of horizontal description list titles
|
|
846
|
+
$dl-horizontal-offset: $component-offset-horizontal !default;
|
|
847
|
+
//** Horizontal line color.
|
|
848
|
+
$hr-border: $gray-lighter !default;
|
|
294
849
|
|
|
295
|
-
// 1200px min
|
|
296
|
-
$fluidGridColumnWidth1200: percentage($gridColumnWidth1200/$gridRowWidth1200) !default;
|
|
297
|
-
$fluidGridGutterWidth1200: percentage($gridGutterWidth1200/$gridRowWidth1200) !default;
|
|
298
850
|
|
|
299
|
-
// 768px-979px
|
|
300
|
-
$fluidGridColumnWidth768: percentage($gridColumnWidth768/$gridRowWidth768) !default;
|
|
301
|
-
$fluidGridGutterWidth768: percentage($gridGutterWidth768/$gridRowWidth768) !default;
|