dataclips 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +34 -0
- data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
- data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.svg +288 -0
- data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
- data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
- data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
- data/app/assets/images/dataclips/slickgrid/sort-asc.png +0 -0
- data/app/assets/images/dataclips/slickgrid/sort-desc.png +0 -0
- data/app/assets/javascripts/dataclips/application.js +26 -0
- data/app/assets/javascripts/dataclips/backbone.js +1608 -0
- data/app/assets/javascripts/dataclips/dataclips.js.coffee +168 -0
- data/app/assets/javascripts/dataclips/formatters.js.coffee +14 -0
- data/app/assets/javascripts/dataclips/namespace.js.coffee +1 -0
- data/app/assets/javascripts/dataclips/record.js.coffee +39 -0
- data/app/assets/javascripts/dataclips/slickgrid.js +5 -0
- data/app/assets/javascripts/dataclips/slickgrid/jquery.event.drag-2.2.js +402 -0
- data/app/assets/javascripts/dataclips/slickgrid/plugins/slick.rowselectionmodel.js +187 -0
- data/app/assets/javascripts/dataclips/slickgrid/slick.core.js +458 -0
- data/app/assets/javascripts/dataclips/slickgrid/slick.dataview.js +1063 -0
- data/app/assets/javascripts/dataclips/slickgrid/slick.grid.js +3309 -0
- data/app/assets/javascripts/dataclips/underscore.js +1416 -0
- data/app/assets/stylesheets/bootstrap/_alerts.scss +68 -0
- data/app/assets/stylesheets/bootstrap/_badges.scss +63 -0
- data/app/assets/stylesheets/bootstrap/_breadcrumbs.scss +26 -0
- data/app/assets/stylesheets/bootstrap/_button-groups.scss +243 -0
- data/app/assets/stylesheets/bootstrap/_buttons.scss +160 -0
- data/app/assets/stylesheets/bootstrap/_carousel.scss +267 -0
- data/app/assets/stylesheets/bootstrap/_close.scss +35 -0
- data/app/assets/stylesheets/bootstrap/_code.scss +69 -0
- data/app/assets/stylesheets/bootstrap/_component-animations.scss +38 -0
- data/app/assets/stylesheets/bootstrap/_dropdowns.scss +213 -0
- data/app/assets/stylesheets/bootstrap/_forms.scss +548 -0
- data/app/assets/stylesheets/bootstrap/_glyphicons.scss +234 -0
- data/app/assets/stylesheets/bootstrap/_grid.scss +84 -0
- data/app/assets/stylesheets/bootstrap/_input-groups.scss +166 -0
- data/app/assets/stylesheets/bootstrap/_jumbotron.scss +49 -0
- data/app/assets/stylesheets/bootstrap/_labels.scss +66 -0
- data/app/assets/stylesheets/bootstrap/_list-group.scss +124 -0
- data/app/assets/stylesheets/bootstrap/_media.scss +47 -0
- data/app/assets/stylesheets/bootstrap/_mixins.scss +39 -0
- data/app/assets/stylesheets/bootstrap/_modals.scss +148 -0
- data/app/assets/stylesheets/bootstrap/_navbar.scss +662 -0
- data/app/assets/stylesheets/bootstrap/_navs.scss +244 -0
- data/app/assets/stylesheets/bootstrap/_normalize.scss +427 -0
- data/app/assets/stylesheets/bootstrap/_pager.scss +54 -0
- data/app/assets/stylesheets/bootstrap/_pagination.scss +88 -0
- data/app/assets/stylesheets/bootstrap/_panels.scss +261 -0
- data/app/assets/stylesheets/bootstrap/_popovers.scss +135 -0
- data/app/assets/stylesheets/bootstrap/_print.scss +107 -0
- data/app/assets/stylesheets/bootstrap/_progress-bars.scss +87 -0
- data/app/assets/stylesheets/bootstrap/_responsive-embed.scss +35 -0
- data/app/assets/stylesheets/bootstrap/_responsive-utilities.scss +174 -0
- data/app/assets/stylesheets/bootstrap/_scaffolding.scss +150 -0
- data/app/assets/stylesheets/bootstrap/_tables.scss +234 -0
- data/app/assets/stylesheets/bootstrap/_theme.scss +272 -0
- data/app/assets/stylesheets/bootstrap/_thumbnails.scss +38 -0
- data/app/assets/stylesheets/bootstrap/_tooltip.scss +103 -0
- data/app/assets/stylesheets/bootstrap/_type.scss +298 -0
- data/app/assets/stylesheets/bootstrap/_utilities.scss +56 -0
- data/app/assets/stylesheets/bootstrap/_variables.scss +864 -0
- data/app/assets/stylesheets/bootstrap/_wells.scss +29 -0
- data/app/assets/stylesheets/bootstrap/mixins/_alerts.scss +14 -0
- data/app/assets/stylesheets/bootstrap/mixins/_background-variant.scss +11 -0
- data/app/assets/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
- data/app/assets/stylesheets/bootstrap/mixins/_buttons.scss +52 -0
- data/app/assets/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
- data/app/assets/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
- data/app/assets/stylesheets/bootstrap/mixins/_forms.scss +88 -0
- data/app/assets/stylesheets/bootstrap/mixins/_gradients.scss +58 -0
- data/app/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +81 -0
- data/app/assets/stylesheets/bootstrap/mixins/_grid.scss +122 -0
- data/app/assets/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
- data/app/assets/stylesheets/bootstrap/mixins/_image.scss +33 -0
- data/app/assets/stylesheets/bootstrap/mixins/_labels.scss +12 -0
- data/app/assets/stylesheets/bootstrap/mixins/_list-group.scss +31 -0
- data/app/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
- data/app/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/app/assets/stylesheets/bootstrap/mixins/_opacity.scss +8 -0
- data/app/assets/stylesheets/bootstrap/mixins/_pagination.scss +23 -0
- data/app/assets/stylesheets/bootstrap/mixins/_panels.scss +24 -0
- data/app/assets/stylesheets/bootstrap/mixins/_progress-bar.scss +10 -0
- data/app/assets/stylesheets/bootstrap/mixins/_reset-filter.scss +8 -0
- data/app/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
- data/app/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/app/assets/stylesheets/bootstrap/mixins/_size.scss +10 -0
- data/app/assets/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
- data/app/assets/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
- data/app/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +11 -0
- data/app/assets/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
- data/app/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +222 -0
- data/app/assets/stylesheets/dataclips/_bootstrap.scss +53 -0
- data/app/assets/stylesheets/dataclips/application.css +18 -0
- data/app/assets/stylesheets/dataclips/slickgrid/slickgrid.sass +341 -0
- data/app/controllers/dataclips/application_controller.rb +31 -0
- data/app/controllers/dataclips/clips_controller.rb +46 -0
- data/app/controllers/dataclips/insights_controller.rb +45 -0
- data/app/helpers/dataclips/application_helper.rb +4 -0
- data/app/models/dataclips/clip.rb +79 -0
- data/app/models/dataclips/insight.rb +18 -0
- data/app/models/dataclips/sql_query.rb +36 -0
- data/app/views/dataclips/application/_boolean.html.erb +1 -0
- data/app/views/dataclips/application/_date.html.erb +22 -0
- data/app/views/dataclips/application/_datetime.html.erb +25 -0
- data/app/views/dataclips/application/_float.html.erb +7 -0
- data/app/views/dataclips/application/_integer.html.erb +7 -0
- data/app/views/dataclips/application/_text.html.erb +10 -0
- data/app/views/dataclips/application/_time.html.erb +23 -0
- data/app/views/dataclips/clips/edit.html.erb +14 -0
- data/app/views/dataclips/clips/show.html.erb +109 -0
- data/app/views/dataclips/insights/show.html.erb +99 -0
- data/app/views/layouts/dataclips/application.html.erb +14 -0
- data/config/initializers/assets.rb +1 -0
- data/config/routes.rb +9 -0
- data/db/migrate/20150101143530_create_dataclips_insights.rb +12 -0
- data/lib/dataclips.rb +47 -0
- data/lib/dataclips/engine.rb +29 -0
- data/lib/dataclips/version.rb +3 -0
- data/lib/tasks/dataclips_tasks.rake +4 -0
- data/test/dataclips_test.rb +7 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -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/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 +23 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +78 -0
- data/test/dummy/config/environments/test.rb +39 -0
- data/test/dummy/config/initializers/assets.rb +8 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -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 +4 -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 +23 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/test_helper.rb +17 -0
- metadata +348 -0
@@ -0,0 +1,267 @@
|
|
1
|
+
//
|
2
|
+
// Carousel
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Wrapper for the slide container and indicators
|
7
|
+
.carousel {
|
8
|
+
position: relative;
|
9
|
+
}
|
10
|
+
|
11
|
+
.carousel-inner {
|
12
|
+
position: relative;
|
13
|
+
overflow: hidden;
|
14
|
+
width: 100%;
|
15
|
+
|
16
|
+
> .item {
|
17
|
+
display: none;
|
18
|
+
position: relative;
|
19
|
+
@include transition(.6s ease-in-out left);
|
20
|
+
|
21
|
+
// Account for jankitude on images
|
22
|
+
> img,
|
23
|
+
> a > img {
|
24
|
+
@include img-responsive;
|
25
|
+
line-height: 1;
|
26
|
+
}
|
27
|
+
|
28
|
+
// WebKit CSS3 transforms for supported devices
|
29
|
+
@media all and (transform-3d), (-webkit-transform-3d) {
|
30
|
+
transition: transform .6s ease-in-out;
|
31
|
+
backface-visibility: hidden;
|
32
|
+
perspective: 1000;
|
33
|
+
|
34
|
+
&.next,
|
35
|
+
&.active.right {
|
36
|
+
transform: translate3d(100%, 0, 0);
|
37
|
+
left: 0;
|
38
|
+
}
|
39
|
+
&.prev,
|
40
|
+
&.active.left {
|
41
|
+
transform: translate3d(-100%, 0, 0);
|
42
|
+
left: 0;
|
43
|
+
}
|
44
|
+
&.next.left,
|
45
|
+
&.prev.right,
|
46
|
+
&.active {
|
47
|
+
transform: translate3d(0, 0, 0);
|
48
|
+
left: 0;
|
49
|
+
}
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
> .active,
|
54
|
+
> .next,
|
55
|
+
> .prev {
|
56
|
+
display: block;
|
57
|
+
}
|
58
|
+
|
59
|
+
> .active {
|
60
|
+
left: 0;
|
61
|
+
}
|
62
|
+
|
63
|
+
> .next,
|
64
|
+
> .prev {
|
65
|
+
position: absolute;
|
66
|
+
top: 0;
|
67
|
+
width: 100%;
|
68
|
+
}
|
69
|
+
|
70
|
+
> .next {
|
71
|
+
left: 100%;
|
72
|
+
}
|
73
|
+
> .prev {
|
74
|
+
left: -100%;
|
75
|
+
}
|
76
|
+
> .next.left,
|
77
|
+
> .prev.right {
|
78
|
+
left: 0;
|
79
|
+
}
|
80
|
+
|
81
|
+
> .active.left {
|
82
|
+
left: -100%;
|
83
|
+
}
|
84
|
+
> .active.right {
|
85
|
+
left: 100%;
|
86
|
+
}
|
87
|
+
|
88
|
+
}
|
89
|
+
|
90
|
+
// Left/right controls for nav
|
91
|
+
// ---------------------------
|
92
|
+
|
93
|
+
.carousel-control {
|
94
|
+
position: absolute;
|
95
|
+
top: 0;
|
96
|
+
left: 0;
|
97
|
+
bottom: 0;
|
98
|
+
width: $carousel-control-width;
|
99
|
+
@include opacity($carousel-control-opacity);
|
100
|
+
font-size: $carousel-control-font-size;
|
101
|
+
color: $carousel-control-color;
|
102
|
+
text-align: center;
|
103
|
+
text-shadow: $carousel-text-shadow;
|
104
|
+
// We can't have this transition here because WebKit cancels the carousel
|
105
|
+
// animation if you trip this while in the middle of another animation.
|
106
|
+
|
107
|
+
// Set gradients for backgrounds
|
108
|
+
&.left {
|
109
|
+
@include gradient-horizontal($start-color: rgba(0,0,0,.5), $end-color: rgba(0,0,0,.0001));
|
110
|
+
}
|
111
|
+
&.right {
|
112
|
+
left: auto;
|
113
|
+
right: 0;
|
114
|
+
@include gradient-horizontal($start-color: rgba(0,0,0,.0001), $end-color: rgba(0,0,0,.5));
|
115
|
+
}
|
116
|
+
|
117
|
+
// Hover/focus state
|
118
|
+
&:hover,
|
119
|
+
&:focus {
|
120
|
+
outline: 0;
|
121
|
+
color: $carousel-control-color;
|
122
|
+
text-decoration: none;
|
123
|
+
@include opacity(.9);
|
124
|
+
}
|
125
|
+
|
126
|
+
// Toggles
|
127
|
+
.icon-prev,
|
128
|
+
.icon-next,
|
129
|
+
.glyphicon-chevron-left,
|
130
|
+
.glyphicon-chevron-right {
|
131
|
+
position: absolute;
|
132
|
+
top: 50%;
|
133
|
+
z-index: 5;
|
134
|
+
display: inline-block;
|
135
|
+
}
|
136
|
+
.icon-prev,
|
137
|
+
.glyphicon-chevron-left {
|
138
|
+
left: 50%;
|
139
|
+
margin-left: -10px;
|
140
|
+
}
|
141
|
+
.icon-next,
|
142
|
+
.glyphicon-chevron-right {
|
143
|
+
right: 50%;
|
144
|
+
margin-right: -10px;
|
145
|
+
}
|
146
|
+
.icon-prev,
|
147
|
+
.icon-next {
|
148
|
+
width: 20px;
|
149
|
+
height: 20px;
|
150
|
+
margin-top: -10px;
|
151
|
+
font-family: serif;
|
152
|
+
}
|
153
|
+
|
154
|
+
|
155
|
+
.icon-prev {
|
156
|
+
&:before {
|
157
|
+
content: '\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)
|
158
|
+
}
|
159
|
+
}
|
160
|
+
.icon-next {
|
161
|
+
&:before {
|
162
|
+
content: '\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)
|
163
|
+
}
|
164
|
+
}
|
165
|
+
}
|
166
|
+
|
167
|
+
// Optional indicator pips
|
168
|
+
//
|
169
|
+
// Add an unordered list with the following class and add a list item for each
|
170
|
+
// slide your carousel holds.
|
171
|
+
|
172
|
+
.carousel-indicators {
|
173
|
+
position: absolute;
|
174
|
+
bottom: 10px;
|
175
|
+
left: 50%;
|
176
|
+
z-index: 15;
|
177
|
+
width: 60%;
|
178
|
+
margin-left: -30%;
|
179
|
+
padding-left: 0;
|
180
|
+
list-style: none;
|
181
|
+
text-align: center;
|
182
|
+
|
183
|
+
li {
|
184
|
+
display: inline-block;
|
185
|
+
width: 10px;
|
186
|
+
height: 10px;
|
187
|
+
margin: 1px;
|
188
|
+
text-indent: -999px;
|
189
|
+
border: 1px solid $carousel-indicator-border-color;
|
190
|
+
border-radius: 10px;
|
191
|
+
cursor: pointer;
|
192
|
+
|
193
|
+
// IE8-9 hack for event handling
|
194
|
+
//
|
195
|
+
// Internet Explorer 8-9 does not support clicks on elements without a set
|
196
|
+
// `background-color`. We cannot use `filter` since that's not viewed as a
|
197
|
+
// background color by the browser. Thus, a hack is needed.
|
198
|
+
//
|
199
|
+
// For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we
|
200
|
+
// set alpha transparency for the best results possible.
|
201
|
+
background-color: #000 \9; // IE8
|
202
|
+
background-color: rgba(0,0,0,0); // IE9
|
203
|
+
}
|
204
|
+
.active {
|
205
|
+
margin: 0;
|
206
|
+
width: 12px;
|
207
|
+
height: 12px;
|
208
|
+
background-color: $carousel-indicator-active-bg;
|
209
|
+
}
|
210
|
+
}
|
211
|
+
|
212
|
+
// Optional captions
|
213
|
+
// -----------------------------
|
214
|
+
// Hidden by default for smaller viewports
|
215
|
+
.carousel-caption {
|
216
|
+
position: absolute;
|
217
|
+
left: 15%;
|
218
|
+
right: 15%;
|
219
|
+
bottom: 20px;
|
220
|
+
z-index: 10;
|
221
|
+
padding-top: 20px;
|
222
|
+
padding-bottom: 20px;
|
223
|
+
color: $carousel-caption-color;
|
224
|
+
text-align: center;
|
225
|
+
text-shadow: $carousel-text-shadow;
|
226
|
+
& .btn {
|
227
|
+
text-shadow: none; // No shadow for button elements in carousel-caption
|
228
|
+
}
|
229
|
+
}
|
230
|
+
|
231
|
+
|
232
|
+
// Scale up controls for tablets and up
|
233
|
+
@media screen and (min-width: $screen-sm-min) {
|
234
|
+
|
235
|
+
// Scale up the controls a smidge
|
236
|
+
.carousel-control {
|
237
|
+
.glyphicon-chevron-left,
|
238
|
+
.glyphicon-chevron-right,
|
239
|
+
.icon-prev,
|
240
|
+
.icon-next {
|
241
|
+
width: 30px;
|
242
|
+
height: 30px;
|
243
|
+
margin-top: -15px;
|
244
|
+
font-size: 30px;
|
245
|
+
}
|
246
|
+
.glyphicon-chevron-left,
|
247
|
+
.icon-prev {
|
248
|
+
margin-left: -15px;
|
249
|
+
}
|
250
|
+
.glyphicon-chevron-right,
|
251
|
+
.icon-next {
|
252
|
+
margin-right: -15px;
|
253
|
+
}
|
254
|
+
}
|
255
|
+
|
256
|
+
// Show and left align the captions
|
257
|
+
.carousel-caption {
|
258
|
+
left: 20%;
|
259
|
+
right: 20%;
|
260
|
+
padding-bottom: 30px;
|
261
|
+
}
|
262
|
+
|
263
|
+
// Move up the indicators
|
264
|
+
.carousel-indicators {
|
265
|
+
bottom: 20px;
|
266
|
+
}
|
267
|
+
}
|
@@ -0,0 +1,35 @@
|
|
1
|
+
//
|
2
|
+
// Close icons
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
.close {
|
7
|
+
float: right;
|
8
|
+
font-size: ($font-size-base * 1.5);
|
9
|
+
font-weight: $close-font-weight;
|
10
|
+
line-height: 1;
|
11
|
+
color: $close-color;
|
12
|
+
text-shadow: $close-text-shadow;
|
13
|
+
@include opacity(.2);
|
14
|
+
|
15
|
+
&:hover,
|
16
|
+
&:focus {
|
17
|
+
color: $close-color;
|
18
|
+
text-decoration: none;
|
19
|
+
cursor: pointer;
|
20
|
+
@include opacity(.5);
|
21
|
+
}
|
22
|
+
|
23
|
+
// [converter] extracted button& to button.close
|
24
|
+
}
|
25
|
+
|
26
|
+
// Additional properties for button version
|
27
|
+
// iOS requires the button element instead of an anchor tag.
|
28
|
+
// If you want the anchor version, it requires `href="#"`.
|
29
|
+
button.close {
|
30
|
+
padding: 0;
|
31
|
+
cursor: pointer;
|
32
|
+
background: transparent;
|
33
|
+
border: 0;
|
34
|
+
-webkit-appearance: none;
|
35
|
+
}
|
@@ -0,0 +1,69 @@
|
|
1
|
+
//
|
2
|
+
// Code (inline and block)
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Inline and block code styles
|
7
|
+
code,
|
8
|
+
kbd,
|
9
|
+
pre,
|
10
|
+
samp {
|
11
|
+
font-family: $font-family-monospace;
|
12
|
+
}
|
13
|
+
|
14
|
+
// Inline code
|
15
|
+
code {
|
16
|
+
padding: 2px 4px;
|
17
|
+
font-size: 90%;
|
18
|
+
color: $code-color;
|
19
|
+
background-color: $code-bg;
|
20
|
+
border-radius: $border-radius-base;
|
21
|
+
}
|
22
|
+
|
23
|
+
// User input typically entered via keyboard
|
24
|
+
kbd {
|
25
|
+
padding: 2px 4px;
|
26
|
+
font-size: 90%;
|
27
|
+
color: $kbd-color;
|
28
|
+
background-color: $kbd-bg;
|
29
|
+
border-radius: $border-radius-small;
|
30
|
+
box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
|
31
|
+
|
32
|
+
kbd {
|
33
|
+
padding: 0;
|
34
|
+
font-size: 100%;
|
35
|
+
font-weight: bold;
|
36
|
+
box-shadow: none;
|
37
|
+
}
|
38
|
+
}
|
39
|
+
|
40
|
+
// Blocks of code
|
41
|
+
pre {
|
42
|
+
display: block;
|
43
|
+
padding: (($line-height-computed - 1) / 2);
|
44
|
+
margin: 0 0 ($line-height-computed / 2);
|
45
|
+
font-size: ($font-size-base - 1); // 14px to 13px
|
46
|
+
line-height: $line-height-base;
|
47
|
+
word-break: break-all;
|
48
|
+
word-wrap: break-word;
|
49
|
+
color: $pre-color;
|
50
|
+
background-color: $pre-bg;
|
51
|
+
border: 1px solid $pre-border-color;
|
52
|
+
border-radius: $border-radius-base;
|
53
|
+
|
54
|
+
// Account for some code outputs that place code tags in pre tags
|
55
|
+
code {
|
56
|
+
padding: 0;
|
57
|
+
font-size: inherit;
|
58
|
+
color: inherit;
|
59
|
+
white-space: pre-wrap;
|
60
|
+
background-color: transparent;
|
61
|
+
border-radius: 0;
|
62
|
+
}
|
63
|
+
}
|
64
|
+
|
65
|
+
// Enable scrollable blocks of code
|
66
|
+
.pre-scrollable {
|
67
|
+
max-height: $pre-scrollable-max-height;
|
68
|
+
overflow-y: scroll;
|
69
|
+
}
|
@@ -0,0 +1,38 @@
|
|
1
|
+
//
|
2
|
+
// Component animations
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
// Heads up!
|
6
|
+
//
|
7
|
+
// We don't use the `.opacity()` mixin here since it causes a bug with text
|
8
|
+
// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.
|
9
|
+
|
10
|
+
.fade {
|
11
|
+
opacity: 0;
|
12
|
+
@include transition(opacity .15s linear);
|
13
|
+
&.in {
|
14
|
+
opacity: 1;
|
15
|
+
}
|
16
|
+
}
|
17
|
+
|
18
|
+
.collapse {
|
19
|
+
display: none;
|
20
|
+
visibility: hidden;
|
21
|
+
|
22
|
+
&.in { display: block; visibility: visible; }
|
23
|
+
// [converter] extracted tr&.in to tr.collapse.in
|
24
|
+
// [converter] extracted tbody&.in to tbody.collapse.in
|
25
|
+
}
|
26
|
+
|
27
|
+
tr.collapse.in { display: table-row; }
|
28
|
+
|
29
|
+
tbody.collapse.in { display: table-row-group; }
|
30
|
+
|
31
|
+
.collapsing {
|
32
|
+
position: relative;
|
33
|
+
height: 0;
|
34
|
+
overflow: hidden;
|
35
|
+
@include transition-property(height, visibility);
|
36
|
+
@include transition-duration(.35s);
|
37
|
+
@include transition-timing-function(ease);
|
38
|
+
}
|
@@ -0,0 +1,213 @@
|
|
1
|
+
//
|
2
|
+
// Dropdown menus
|
3
|
+
// --------------------------------------------------
|
4
|
+
|
5
|
+
|
6
|
+
// Dropdown arrow/caret
|
7
|
+
.caret {
|
8
|
+
display: inline-block;
|
9
|
+
width: 0;
|
10
|
+
height: 0;
|
11
|
+
margin-left: 2px;
|
12
|
+
vertical-align: middle;
|
13
|
+
border-top: $caret-width-base solid;
|
14
|
+
border-right: $caret-width-base solid transparent;
|
15
|
+
border-left: $caret-width-base solid transparent;
|
16
|
+
}
|
17
|
+
|
18
|
+
// The dropdown wrapper (div)
|
19
|
+
.dropdown {
|
20
|
+
position: relative;
|
21
|
+
}
|
22
|
+
|
23
|
+
// Prevent the focus on the dropdown toggle when closing dropdowns
|
24
|
+
.dropdown-toggle:focus {
|
25
|
+
outline: 0;
|
26
|
+
}
|
27
|
+
|
28
|
+
// The dropdown menu (ul)
|
29
|
+
.dropdown-menu {
|
30
|
+
position: absolute;
|
31
|
+
top: 100%;
|
32
|
+
left: 0;
|
33
|
+
z-index: $zindex-dropdown;
|
34
|
+
display: none; // none by default, but block on "open" of the menu
|
35
|
+
float: left;
|
36
|
+
min-width: 160px;
|
37
|
+
padding: 5px 0;
|
38
|
+
margin: 2px 0 0; // override default ul
|
39
|
+
list-style: none;
|
40
|
+
font-size: $font-size-base;
|
41
|
+
text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)
|
42
|
+
background-color: $dropdown-bg;
|
43
|
+
border: 1px solid $dropdown-fallback-border; // IE8 fallback
|
44
|
+
border: 1px solid $dropdown-border;
|
45
|
+
border-radius: $border-radius-base;
|
46
|
+
@include box-shadow(0 6px 12px rgba(0,0,0,.175));
|
47
|
+
background-clip: padding-box;
|
48
|
+
|
49
|
+
// Aligns the dropdown menu to right
|
50
|
+
//
|
51
|
+
// Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`
|
52
|
+
&.pull-right {
|
53
|
+
right: 0;
|
54
|
+
left: auto;
|
55
|
+
}
|
56
|
+
|
57
|
+
// Dividers (basically an hr) within the dropdown
|
58
|
+
.divider {
|
59
|
+
@include nav-divider($dropdown-divider-bg);
|
60
|
+
}
|
61
|
+
|
62
|
+
// Links within the dropdown menu
|
63
|
+
> li > a {
|
64
|
+
display: block;
|
65
|
+
padding: 3px 20px;
|
66
|
+
clear: both;
|
67
|
+
font-weight: normal;
|
68
|
+
line-height: $line-height-base;
|
69
|
+
color: $dropdown-link-color;
|
70
|
+
white-space: nowrap; // prevent links from randomly breaking onto new lines
|
71
|
+
}
|
72
|
+
}
|
73
|
+
|
74
|
+
// Hover/Focus state
|
75
|
+
.dropdown-menu > li > a {
|
76
|
+
&:hover,
|
77
|
+
&:focus {
|
78
|
+
text-decoration: none;
|
79
|
+
color: $dropdown-link-hover-color;
|
80
|
+
background-color: $dropdown-link-hover-bg;
|
81
|
+
}
|
82
|
+
}
|
83
|
+
|
84
|
+
// Active state
|
85
|
+
.dropdown-menu > .active > a {
|
86
|
+
&,
|
87
|
+
&:hover,
|
88
|
+
&:focus {
|
89
|
+
color: $dropdown-link-active-color;
|
90
|
+
text-decoration: none;
|
91
|
+
outline: 0;
|
92
|
+
background-color: $dropdown-link-active-bg;
|
93
|
+
}
|
94
|
+
}
|
95
|
+
|
96
|
+
// Disabled state
|
97
|
+
//
|
98
|
+
// Gray out text and ensure the hover/focus state remains gray
|
99
|
+
|
100
|
+
.dropdown-menu > .disabled > a {
|
101
|
+
&,
|
102
|
+
&:hover,
|
103
|
+
&:focus {
|
104
|
+
color: $dropdown-link-disabled-color;
|
105
|
+
}
|
106
|
+
|
107
|
+
// Nuke hover/focus effects
|
108
|
+
&:hover,
|
109
|
+
&:focus {
|
110
|
+
text-decoration: none;
|
111
|
+
background-color: transparent;
|
112
|
+
background-image: none; // Remove CSS gradient
|
113
|
+
@include reset-filter;
|
114
|
+
cursor: $cursor-disabled;
|
115
|
+
}
|
116
|
+
}
|
117
|
+
|
118
|
+
// Open state for the dropdown
|
119
|
+
.open {
|
120
|
+
// Show the menu
|
121
|
+
> .dropdown-menu {
|
122
|
+
display: block;
|
123
|
+
}
|
124
|
+
|
125
|
+
// Remove the outline when :focus is triggered
|
126
|
+
> a {
|
127
|
+
outline: 0;
|
128
|
+
}
|
129
|
+
}
|
130
|
+
|
131
|
+
// Menu positioning
|
132
|
+
//
|
133
|
+
// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown
|
134
|
+
// menu with the parent.
|
135
|
+
.dropdown-menu-right {
|
136
|
+
left: auto; // Reset the default from `.dropdown-menu`
|
137
|
+
right: 0;
|
138
|
+
}
|
139
|
+
// With v3, we enabled auto-flipping if you have a dropdown within a right
|
140
|
+
// aligned nav component. To enable the undoing of that, we provide an override
|
141
|
+
// to restore the default dropdown menu alignment.
|
142
|
+
//
|
143
|
+
// This is only for left-aligning a dropdown menu within a `.navbar-right` or
|
144
|
+
// `.pull-right` nav component.
|
145
|
+
.dropdown-menu-left {
|
146
|
+
left: 0;
|
147
|
+
right: auto;
|
148
|
+
}
|
149
|
+
|
150
|
+
// Dropdown section headers
|
151
|
+
.dropdown-header {
|
152
|
+
display: block;
|
153
|
+
padding: 3px 20px;
|
154
|
+
font-size: $font-size-small;
|
155
|
+
line-height: $line-height-base;
|
156
|
+
color: $dropdown-header-color;
|
157
|
+
white-space: nowrap; // as with > li > a
|
158
|
+
}
|
159
|
+
|
160
|
+
// Backdrop to catch body clicks on mobile, etc.
|
161
|
+
.dropdown-backdrop {
|
162
|
+
position: fixed;
|
163
|
+
left: 0;
|
164
|
+
right: 0;
|
165
|
+
bottom: 0;
|
166
|
+
top: 0;
|
167
|
+
z-index: ($zindex-dropdown - 10);
|
168
|
+
}
|
169
|
+
|
170
|
+
// Right aligned dropdowns
|
171
|
+
.pull-right > .dropdown-menu {
|
172
|
+
right: 0;
|
173
|
+
left: auto;
|
174
|
+
}
|
175
|
+
|
176
|
+
// Allow for dropdowns to go bottom up (aka, dropup-menu)
|
177
|
+
//
|
178
|
+
// Just add .dropup after the standard .dropdown class and you're set, bro.
|
179
|
+
// TODO: abstract this so that the navbar fixed styles are not placed here?
|
180
|
+
|
181
|
+
.dropup,
|
182
|
+
.navbar-fixed-bottom .dropdown {
|
183
|
+
// Reverse the caret
|
184
|
+
.caret {
|
185
|
+
border-top: 0;
|
186
|
+
border-bottom: $caret-width-base solid;
|
187
|
+
content: "";
|
188
|
+
}
|
189
|
+
// Different positioning for bottom up menu
|
190
|
+
.dropdown-menu {
|
191
|
+
top: auto;
|
192
|
+
bottom: 100%;
|
193
|
+
margin-bottom: 1px;
|
194
|
+
}
|
195
|
+
}
|
196
|
+
|
197
|
+
|
198
|
+
// Component alignment
|
199
|
+
//
|
200
|
+
// Reiterate per navbar.less and the modified component alignment there.
|
201
|
+
|
202
|
+
@media (min-width: $grid-float-breakpoint) {
|
203
|
+
.navbar-right {
|
204
|
+
.dropdown-menu {
|
205
|
+
right: 0; left: auto;
|
206
|
+
}
|
207
|
+
// Necessary for overrides of the default right aligned menu.
|
208
|
+
// Will remove come v4 in all likelihood.
|
209
|
+
.dropdown-menu-left {
|
210
|
+
left: 0; right: auto;
|
211
|
+
}
|
212
|
+
}
|
213
|
+
}
|