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,407 +3,240 @@
|
|
|
3
3
|
// --------------------------------------------------
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
//
|
|
7
|
-
//
|
|
6
|
+
// Base class
|
|
7
|
+
// --------------------------------------------------
|
|
8
8
|
|
|
9
9
|
.nav {
|
|
10
|
-
margin-
|
|
11
|
-
|
|
10
|
+
margin-bottom: 0;
|
|
11
|
+
padding-left: 0; // Override default ul/ol
|
|
12
12
|
list-style: none;
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
// Make links block level
|
|
16
|
-
.nav > li > a {
|
|
17
|
-
display: block;
|
|
18
|
-
}
|
|
19
|
-
.nav > li > a:hover,
|
|
20
|
-
.nav > li > a:focus {
|
|
21
|
-
text-decoration: none;
|
|
22
|
-
background-color: $grayLighter;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
// Prevent IE8 from misplacing imgs
|
|
26
|
-
// See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989
|
|
27
|
-
.nav > li > a > img {
|
|
28
|
-
max-width: none;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
// Redeclare pull classes because of specifity
|
|
32
|
-
.nav > .pull-right {
|
|
33
|
-
float: right;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
// Nav headers (for dropdowns and lists)
|
|
37
|
-
.nav-header {
|
|
38
|
-
display: block;
|
|
39
|
-
padding: 3px 15px;
|
|
40
|
-
font-size: 11px;
|
|
41
|
-
font-weight: bold;
|
|
42
|
-
line-height: $baseLineHeight;
|
|
43
|
-
color: $grayLight;
|
|
44
|
-
text-shadow: 0 1px 0 rgba(255,255,255,.5);
|
|
45
|
-
text-transform: uppercase;
|
|
46
|
-
}
|
|
47
|
-
// Space them out when they follow another list item (link)
|
|
48
|
-
.nav li + .nav-header {
|
|
49
|
-
margin-top: 9px;
|
|
50
|
-
}
|
|
13
|
+
@include clearfix();
|
|
51
14
|
|
|
15
|
+
> li {
|
|
16
|
+
position: relative;
|
|
17
|
+
display: block;
|
|
18
|
+
|
|
19
|
+
> a {
|
|
20
|
+
position: relative;
|
|
21
|
+
display: block;
|
|
22
|
+
padding: $nav-link-padding;
|
|
23
|
+
&:hover,
|
|
24
|
+
&:focus {
|
|
25
|
+
text-decoration: none;
|
|
26
|
+
background-color: $nav-link-hover-bg;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
// Disabled state sets text to gray and nukes hover/tab effects
|
|
31
|
+
&.disabled > a {
|
|
32
|
+
color: $nav-disabled-link-color;
|
|
33
|
+
|
|
34
|
+
&:hover,
|
|
35
|
+
&:focus {
|
|
36
|
+
color: $nav-disabled-link-hover-color;
|
|
37
|
+
text-decoration: none;
|
|
38
|
+
background-color: transparent;
|
|
39
|
+
cursor: not-allowed;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
52
43
|
|
|
44
|
+
// Open dropdowns
|
|
45
|
+
.open > a {
|
|
46
|
+
&,
|
|
47
|
+
&:hover,
|
|
48
|
+
&:focus {
|
|
49
|
+
background-color: $nav-link-hover-bg;
|
|
50
|
+
border-color: $link-color;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
53
|
|
|
54
|
-
//
|
|
55
|
-
//
|
|
54
|
+
// Nav dividers (deprecated with v3.0.1)
|
|
55
|
+
//
|
|
56
|
+
// This should have been removed in v3 with the dropping of `.nav-list`, but
|
|
57
|
+
// we missed it. We don't currently support this anywhere, but in the interest
|
|
58
|
+
// of maintaining backward compatibility in case you use it, it's deprecated.
|
|
59
|
+
.nav-divider {
|
|
60
|
+
@include nav-divider();
|
|
61
|
+
}
|
|
56
62
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
.nav-list .nav-header {
|
|
64
|
-
margin-left: -15px;
|
|
65
|
-
margin-right: -15px;
|
|
66
|
-
text-shadow: 0 1px 0 rgba(255,255,255,.5);
|
|
67
|
-
}
|
|
68
|
-
.nav-list > li > a {
|
|
69
|
-
padding: 3px 15px;
|
|
70
|
-
}
|
|
71
|
-
.nav-list > .active > a,
|
|
72
|
-
.nav-list > .active > a:hover,
|
|
73
|
-
.nav-list > .active > a:focus {
|
|
74
|
-
color: $white;
|
|
75
|
-
text-shadow: 0 -1px 0 rgba(0,0,0,.2);
|
|
76
|
-
background-color: $linkColor;
|
|
77
|
-
}
|
|
78
|
-
.nav-list [class^="icon-"],
|
|
79
|
-
.nav-list [class*=" icon-"] {
|
|
80
|
-
margin-right: 2px;
|
|
81
|
-
}
|
|
82
|
-
// Dividers (basically an hr) within the dropdown
|
|
83
|
-
.nav-list .divider {
|
|
84
|
-
@include nav-divider();
|
|
63
|
+
// Prevent IE8 from misplacing imgs
|
|
64
|
+
//
|
|
65
|
+
// See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989
|
|
66
|
+
> li > a > img {
|
|
67
|
+
max-width: none;
|
|
68
|
+
}
|
|
85
69
|
}
|
|
86
70
|
|
|
87
71
|
|
|
88
|
-
|
|
89
|
-
//
|
|
90
|
-
// -------------
|
|
91
|
-
|
|
92
|
-
// Common styles
|
|
93
|
-
.nav-tabs,
|
|
94
|
-
.nav-pills {
|
|
95
|
-
@include clearfix();
|
|
96
|
-
}
|
|
97
|
-
.nav-tabs > li,
|
|
98
|
-
.nav-pills > li {
|
|
99
|
-
float: left;
|
|
100
|
-
}
|
|
101
|
-
.nav-tabs > li > a,
|
|
102
|
-
.nav-pills > li > a {
|
|
103
|
-
padding-right: 12px;
|
|
104
|
-
padding-left: 12px;
|
|
105
|
-
margin-right: 2px;
|
|
106
|
-
line-height: 14px; // keeps the overall height an even number
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
// TABS
|
|
110
|
-
// ----
|
|
72
|
+
// Tabs
|
|
73
|
+
// -------------------------
|
|
111
74
|
|
|
112
75
|
// Give the tabs something to sit on
|
|
113
76
|
.nav-tabs {
|
|
114
|
-
border-bottom: 1px solid
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
// Actual tabs (as links)
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
77
|
+
border-bottom: 1px solid $nav-tabs-border-color;
|
|
78
|
+
> li {
|
|
79
|
+
float: left;
|
|
80
|
+
// Make the list-items overlay the bottom border
|
|
81
|
+
margin-bottom: -1px;
|
|
82
|
+
|
|
83
|
+
// Actual tabs (as links)
|
|
84
|
+
> a {
|
|
85
|
+
margin-right: 2px;
|
|
86
|
+
line-height: $line-height-base;
|
|
87
|
+
border: 1px solid transparent;
|
|
88
|
+
border-radius: $border-radius-base $border-radius-base 0 0;
|
|
89
|
+
&:hover {
|
|
90
|
+
border-color: $nav-tabs-link-hover-border-color $nav-tabs-link-hover-border-color $nav-tabs-border-color;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
// Active state, and its :hover to override normal :hover
|
|
95
|
+
&.active > a {
|
|
96
|
+
&,
|
|
97
|
+
&:hover,
|
|
98
|
+
&:focus {
|
|
99
|
+
color: $nav-tabs-active-link-hover-color;
|
|
100
|
+
background-color: $nav-tabs-active-link-hover-bg;
|
|
101
|
+
border: 1px solid $nav-tabs-active-link-hover-border-color;
|
|
102
|
+
border-bottom-color: transparent;
|
|
103
|
+
cursor: default;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
// pulling this in mainly for less shorthand
|
|
108
|
+
&.nav-justified {
|
|
109
|
+
@extend .nav-justified;
|
|
110
|
+
@extend .nav-tabs-justified;
|
|
130
111
|
}
|
|
131
|
-
}
|
|
132
|
-
// Active state, and it's :hover/:focus to override normal :hover/:focus
|
|
133
|
-
.nav-tabs > .active > a,
|
|
134
|
-
.nav-tabs > .active > a:hover,
|
|
135
|
-
.nav-tabs > .active > a:focus {
|
|
136
|
-
color: $gray;
|
|
137
|
-
background-color: $bodyBackground;
|
|
138
|
-
border: 1px solid #ddd;
|
|
139
|
-
border-bottom-color: transparent;
|
|
140
|
-
cursor: default;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
// PILLS
|
|
145
|
-
// -----
|
|
146
|
-
|
|
147
|
-
// Links rendered as pills
|
|
148
|
-
.nav-pills > li > a {
|
|
149
|
-
padding-top: 8px;
|
|
150
|
-
padding-bottom: 8px;
|
|
151
|
-
margin-top: 2px;
|
|
152
|
-
margin-bottom: 2px;
|
|
153
|
-
@include border-radius(5px);
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
// Active state
|
|
157
|
-
.nav-pills > .active > a,
|
|
158
|
-
.nav-pills > .active > a:hover,
|
|
159
|
-
.nav-pills > .active > a:focus {
|
|
160
|
-
color: $white;
|
|
161
|
-
background-color: $linkColor;
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
// STACKED NAV
|
|
167
|
-
// -----------
|
|
168
|
-
|
|
169
|
-
// Stacked tabs and pills
|
|
170
|
-
.nav-stacked > li {
|
|
171
|
-
float: none;
|
|
172
|
-
}
|
|
173
|
-
.nav-stacked > li > a {
|
|
174
|
-
margin-right: 0; // no need for the gap between nav items
|
|
175
112
|
}
|
|
176
113
|
|
|
177
|
-
// Tabs
|
|
178
|
-
.nav-tabs.nav-stacked {
|
|
179
|
-
border-bottom: 0;
|
|
180
|
-
}
|
|
181
|
-
.nav-tabs.nav-stacked > li > a {
|
|
182
|
-
border: 1px solid #ddd;
|
|
183
|
-
@include border-radius(0);
|
|
184
|
-
}
|
|
185
|
-
.nav-tabs.nav-stacked > li:first-child > a {
|
|
186
|
-
@include border-top-radius(4px);
|
|
187
|
-
}
|
|
188
|
-
.nav-tabs.nav-stacked > li:last-child > a {
|
|
189
|
-
@include border-bottom-radius(4px);
|
|
190
|
-
}
|
|
191
|
-
.nav-tabs.nav-stacked > li > a:hover,
|
|
192
|
-
.nav-tabs.nav-stacked > li > a:focus {
|
|
193
|
-
border-color: #ddd;
|
|
194
|
-
z-index: 2;
|
|
195
|
-
}
|
|
196
114
|
|
|
197
115
|
// Pills
|
|
198
|
-
.nav-pills.nav-stacked > li > a {
|
|
199
|
-
margin-bottom: 3px;
|
|
200
|
-
}
|
|
201
|
-
.nav-pills.nav-stacked > li:last-child > a {
|
|
202
|
-
margin-bottom: 1px; // decrease margin to match sizing of stacked tabs
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
// DROPDOWNS
|
|
208
|
-
// ---------
|
|
209
|
-
|
|
210
|
-
.nav-tabs .dropdown-menu {
|
|
211
|
-
@include border-radius(0 0 6px 6px); // remove the top rounded corners here since there is a hard edge above the menu
|
|
212
|
-
}
|
|
213
|
-
.nav-pills .dropdown-menu {
|
|
214
|
-
@include border-radius(6px); // make rounded corners match the pills
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
// Default dropdown links
|
|
218
116
|
// -------------------------
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
}
|
|
241
|
-
.nav-tabs .active .dropdown-toggle .caret {
|
|
242
|
-
border-top-color: $gray;
|
|
243
|
-
border-bottom-color: $gray;
|
|
117
|
+
.nav-pills {
|
|
118
|
+
> li {
|
|
119
|
+
float: left;
|
|
120
|
+
|
|
121
|
+
// Links rendered as pills
|
|
122
|
+
> a {
|
|
123
|
+
border-radius: $nav-pills-border-radius;
|
|
124
|
+
}
|
|
125
|
+
+ li {
|
|
126
|
+
margin-left: 2px;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
// Active state
|
|
130
|
+
&.active > a {
|
|
131
|
+
&,
|
|
132
|
+
&:hover,
|
|
133
|
+
&:focus {
|
|
134
|
+
color: $nav-pills-active-link-hover-color;
|
|
135
|
+
background-color: $nav-pills-active-link-hover-bg;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
244
139
|
}
|
|
245
140
|
|
|
246
|
-
// Active:hover/:focus dropdown links
|
|
247
|
-
// -------------------------
|
|
248
|
-
.nav > .dropdown.active > a:hover,
|
|
249
|
-
.nav > .dropdown.active > a:focus {
|
|
250
|
-
cursor: pointer;
|
|
251
|
-
}
|
|
252
141
|
|
|
253
|
-
//
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
}
|
|
263
|
-
.nav li.dropdown.open .caret,
|
|
264
|
-
.nav li.dropdown.open.active .caret,
|
|
265
|
-
.nav li.dropdown.open a:hover .caret,
|
|
266
|
-
.nav li.dropdown.open a:focus .caret {
|
|
267
|
-
border-top-color: $white;
|
|
268
|
-
border-bottom-color: $white;
|
|
269
|
-
@include opacity(100);
|
|
142
|
+
// Stacked pills
|
|
143
|
+
.nav-stacked {
|
|
144
|
+
> li {
|
|
145
|
+
float: none;
|
|
146
|
+
+ li {
|
|
147
|
+
margin-top: 2px;
|
|
148
|
+
margin-left: 0; // no need for this gap between nav items
|
|
149
|
+
}
|
|
150
|
+
}
|
|
270
151
|
}
|
|
271
152
|
|
|
272
|
-
// Dropdowns in stacked tabs
|
|
273
|
-
.tabs-stacked .open > a:hover,
|
|
274
|
-
.tabs-stacked .open > a:focus {
|
|
275
|
-
border-color: $grayLight;
|
|
276
|
-
}
|
|
277
153
|
|
|
154
|
+
// Nav variations
|
|
155
|
+
// --------------------------------------------------
|
|
278
156
|
|
|
157
|
+
// Justified nav links
|
|
158
|
+
// -------------------------
|
|
279
159
|
|
|
280
|
-
|
|
281
|
-
|
|
160
|
+
.nav-justified {
|
|
161
|
+
width: 100%;
|
|
282
162
|
|
|
163
|
+
> li {
|
|
164
|
+
float: none;
|
|
165
|
+
> a {
|
|
166
|
+
text-align: center;
|
|
167
|
+
margin-bottom: 5px;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
283
170
|
|
|
284
|
-
|
|
285
|
-
|
|
171
|
+
> .dropdown .dropdown-menu {
|
|
172
|
+
top: auto;
|
|
173
|
+
left: auto;
|
|
174
|
+
}
|
|
286
175
|
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
176
|
+
@media (min-width: $screen-sm-min) {
|
|
177
|
+
> li {
|
|
178
|
+
display: table-cell;
|
|
179
|
+
width: 1%;
|
|
180
|
+
> a {
|
|
181
|
+
margin-bottom: 0;
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
}
|
|
293
185
|
}
|
|
294
186
|
|
|
295
|
-
//
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
.
|
|
187
|
+
// Move borders to anchors instead of bottom of list
|
|
188
|
+
//
|
|
189
|
+
// Mixin for adding on top the shared `.nav-justified` styles for our tabs
|
|
190
|
+
.nav-tabs-justified {
|
|
299
191
|
border-bottom: 0;
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
// Show/hide tabbable areas
|
|
303
|
-
.tab-content > .tab-pane,
|
|
304
|
-
.pill-content > .pill-pane {
|
|
305
|
-
display: none;
|
|
306
|
-
}
|
|
307
|
-
.tab-content > .active,
|
|
308
|
-
.pill-content > .active {
|
|
309
|
-
display: block;
|
|
310
|
-
}
|
|
311
192
|
|
|
193
|
+
> li > a {
|
|
194
|
+
// Override margin from .nav-tabs
|
|
195
|
+
margin-right: 0;
|
|
196
|
+
border-radius: $border-radius-base;
|
|
197
|
+
}
|
|
312
198
|
|
|
313
|
-
|
|
314
|
-
|
|
199
|
+
> .active > a,
|
|
200
|
+
> .active > a:hover,
|
|
201
|
+
> .active > a:focus {
|
|
202
|
+
border: 1px solid $nav-tabs-justified-link-border-color;
|
|
203
|
+
}
|
|
315
204
|
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
&:focus {
|
|
327
|
-
border-bottom-color: transparent;
|
|
328
|
-
border-top-color: #ddd;
|
|
205
|
+
@media (min-width: $screen-sm-min) {
|
|
206
|
+
> li > a {
|
|
207
|
+
border-bottom: 1px solid $nav-tabs-justified-link-border-color;
|
|
208
|
+
border-radius: $border-radius-base $border-radius-base 0 0;
|
|
209
|
+
}
|
|
210
|
+
> .active > a,
|
|
211
|
+
> .active > a:hover,
|
|
212
|
+
> .active > a:focus {
|
|
213
|
+
border-bottom-color: $nav-tabs-justified-active-link-border-color;
|
|
214
|
+
}
|
|
329
215
|
}
|
|
330
216
|
}
|
|
331
|
-
.tabs-below > .nav-tabs > .active > a,
|
|
332
|
-
.tabs-below > .nav-tabs > .active > a:hover,
|
|
333
|
-
.tabs-below > .nav-tabs > .active > a:focus {
|
|
334
|
-
border-color: transparent #ddd #ddd #ddd;
|
|
335
|
-
}
|
|
336
217
|
|
|
337
|
-
// LEFT & RIGHT
|
|
338
|
-
// ------------
|
|
339
218
|
|
|
340
|
-
//
|
|
341
|
-
|
|
342
|
-
.tabs-right > .nav-tabs > li {
|
|
343
|
-
float: none;
|
|
344
|
-
}
|
|
345
|
-
.tabs-left > .nav-tabs > li > a,
|
|
346
|
-
.tabs-right > .nav-tabs > li > a {
|
|
347
|
-
min-width: 74px;
|
|
348
|
-
margin-right: 0;
|
|
349
|
-
margin-bottom: 3px;
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
// Tabs on the left
|
|
353
|
-
.tabs-left > .nav-tabs {
|
|
354
|
-
float: left;
|
|
355
|
-
margin-right: 19px;
|
|
356
|
-
border-right: 1px solid #ddd;
|
|
357
|
-
}
|
|
358
|
-
.tabs-left > .nav-tabs > li > a {
|
|
359
|
-
margin-right: -1px;
|
|
360
|
-
@include border-radius(4px 0 0 4px);
|
|
361
|
-
}
|
|
362
|
-
.tabs-left > .nav-tabs > li > a:hover,
|
|
363
|
-
.tabs-left > .nav-tabs > li > a:focus {
|
|
364
|
-
border-color: $grayLighter #ddd $grayLighter $grayLighter;
|
|
365
|
-
}
|
|
366
|
-
.tabs-left > .nav-tabs .active > a,
|
|
367
|
-
.tabs-left > .nav-tabs .active > a:hover,
|
|
368
|
-
.tabs-left > .nav-tabs .active > a:focus {
|
|
369
|
-
border-color: #ddd transparent #ddd #ddd;
|
|
370
|
-
*border-right-color: $white;
|
|
371
|
-
}
|
|
219
|
+
// Tabbable tabs
|
|
220
|
+
// -------------------------
|
|
372
221
|
|
|
373
|
-
//
|
|
374
|
-
.
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
@include border-radius(0 4px 4px 0);
|
|
382
|
-
}
|
|
383
|
-
.tabs-right > .nav-tabs > li > a:hover,
|
|
384
|
-
.tabs-right > .nav-tabs > li > a:focus {
|
|
385
|
-
border-color: $grayLighter $grayLighter $grayLighter #ddd;
|
|
386
|
-
}
|
|
387
|
-
.tabs-right > .nav-tabs .active > a,
|
|
388
|
-
.tabs-right > .nav-tabs .active > a:hover,
|
|
389
|
-
.tabs-right > .nav-tabs .active > a:focus {
|
|
390
|
-
border-color: #ddd #ddd #ddd transparent;
|
|
391
|
-
*border-left-color: $white;
|
|
222
|
+
// Hide tabbable panes to start, show them when `.active`
|
|
223
|
+
.tab-content {
|
|
224
|
+
> .tab-pane {
|
|
225
|
+
display: none;
|
|
226
|
+
}
|
|
227
|
+
> .active {
|
|
228
|
+
display: block;
|
|
229
|
+
}
|
|
392
230
|
}
|
|
393
231
|
|
|
394
232
|
|
|
233
|
+
// Dropdowns
|
|
234
|
+
// -------------------------
|
|
395
235
|
|
|
396
|
-
//
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
}
|
|
403
|
-
// Nuke hover/focus effects
|
|
404
|
-
.nav > .disabled > a:hover,
|
|
405
|
-
.nav > .disabled > a:focus {
|
|
406
|
-
text-decoration: none;
|
|
407
|
-
background-color: transparent;
|
|
408
|
-
cursor: default;
|
|
236
|
+
// Specific dropdowns
|
|
237
|
+
.nav-tabs .dropdown-menu {
|
|
238
|
+
// make dropdown border overlap tab border
|
|
239
|
+
margin-top: -1px;
|
|
240
|
+
// Remove the top rounded corners here since there is a hard edge above the menu
|
|
241
|
+
@include border-top-radius(0);
|
|
409
242
|
}
|