frontend-generators 0.1.1 → 0.1.2
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/README.md +20 -0
- data/assets/bootstrap/vendor/assets/javascripts/bootstrap.js +66 -52
- data/assets/bootstrap/vendor/assets/stylesheets/bootstrap.css +13 -10
- data/assets/grayscale/app/assets/javascripts/grayscale/manifest.js +1 -2
- data/assets/new_age/app/assets/images/new_age/app-store-badge.svg +129 -0
- data/assets/new_age/app/assets/images/new_age/bg-cta.jpg +0 -0
- data/assets/new_age/app/assets/images/new_age/bg-pattern.png +0 -0
- data/assets/new_age/app/assets/images/new_age/demo-screen-1.jpg +0 -0
- data/assets/new_age/app/assets/images/new_age/google-play-badge.svg +106 -0
- data/assets/new_age/app/assets/images/new_age/iphone_6_plus_white_port.png +0 -0
- data/assets/new_age/app/assets/javascripts/new_age/manifest.js +5 -0
- data/assets/new_age/app/assets/javascripts/new_age/new_age.js +31 -0
- data/assets/new_age/app/assets/stylesheets/new_age/manifest.css +6 -0
- data/assets/new_age/app/assets/stylesheets/new_age/new_age.css.scss +493 -0
- data/assets/new_age/app/controllers/new_age_controller.rb +6 -0
- data/assets/new_age/app/views/layouts/new_age.html.erb +18 -0
- data/assets/new_age/app/views/new_age/_contact.html.erb +16 -0
- data/assets/new_age/app/views/new_age/_cta.html.erb +9 -0
- data/assets/new_age/app/views/new_age/_download.html.erb +14 -0
- data/assets/new_age/app/views/new_age/_features.html.erb +65 -0
- data/assets/new_age/app/views/new_age/_footer.html.erb +16 -0
- data/assets/new_age/app/views/new_age/_header.html.erb +29 -0
- data/assets/new_age/app/views/new_age/_navigation.html.erb +28 -0
- data/assets/new_age/app/views/new_age/index.html.erb +7 -0
- data/lib/frontend_generators/version.rb +1 -1
- data/lib/tasks/add_assets.rake +1 -1
- metadata +22 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 16d0d922a22f8ba18ecd5d2d822f3dc18fb8c57e
|
4
|
+
data.tar.gz: 5528c3ef32701b455548a54d4ab60b0396f4dfa5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 965b217ef53e148ac576e45559544d5a02fbdf9da8602f3b86e653f22f83f6474af33677a19463dd9112a32638760c86a9912619ba1ee708985db12a7efc0368
|
7
|
+
data.tar.gz: 2aab56c5033c304d2ebdca54f0776790a7ee6e6d7de4bf97b28da52dbe16b5bb9665908800a085d7638141934a0000d1b0c30f072e9cfa9e249a9e92754bc738
|
data/README.md
CHANGED
@@ -164,6 +164,26 @@ Add this line to `config/initializers/assets.rb`:
|
|
164
164
|
Rails.application.config.assets.precompile += %w( grayscale/manifest.js grayscale/manifest.css )
|
165
165
|
```
|
166
166
|
|
167
|
+
## [Start New Age](https://startbootstrap.com/template-overviews/new-age/)
|
168
|
+
|
169
|
+
To move the Start Bootstrap New Age theme into your Rails application, run this rake task:
|
170
|
+
|
171
|
+
```ruby
|
172
|
+
bundle exec rake add_assets:new_age
|
173
|
+
```
|
174
|
+
|
175
|
+
Add the route to `routes.rb`:
|
176
|
+
|
177
|
+
```ruby
|
178
|
+
get 'new_ages/index'
|
179
|
+
```
|
180
|
+
|
181
|
+
Add this line to `config/initializers/assets.rb`:
|
182
|
+
|
183
|
+
```ruby
|
184
|
+
Rails.application.config.assets.precompile += %w( new_age/manifest.js new_age/manifest.css )
|
185
|
+
```
|
186
|
+
|
167
187
|
## Contributing
|
168
188
|
|
169
189
|
Bug reports and pull requests are welcome on GitHub at https://github.com/MrPowers/frontend-generators.
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap v3.3.
|
3
|
-
* Copyright 2011-
|
2
|
+
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3
|
+
* Copyright 2011-2016 Twitter, Inc.
|
4
4
|
* Licensed under the MIT license
|
5
5
|
*/
|
6
6
|
|
@@ -11,16 +11,16 @@ if (typeof jQuery === 'undefined') {
|
|
11
11
|
+function ($) {
|
12
12
|
'use strict';
|
13
13
|
var version = $.fn.jquery.split(' ')[0].split('.')
|
14
|
-
if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1)) {
|
15
|
-
throw new Error('Bootstrap\'s JavaScript requires jQuery version 1.9.1 or higher')
|
14
|
+
if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1) || (version[0] > 3)) {
|
15
|
+
throw new Error('Bootstrap\'s JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4')
|
16
16
|
}
|
17
17
|
}(jQuery);
|
18
18
|
|
19
19
|
/* ========================================================================
|
20
|
-
* Bootstrap: transition.js v3.3.
|
20
|
+
* Bootstrap: transition.js v3.3.7
|
21
21
|
* http://getbootstrap.com/javascript/#transitions
|
22
22
|
* ========================================================================
|
23
|
-
* Copyright 2011-
|
23
|
+
* Copyright 2011-2016 Twitter, Inc.
|
24
24
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
25
25
|
* ======================================================================== */
|
26
26
|
|
@@ -77,10 +77,10 @@ if (typeof jQuery === 'undefined') {
|
|
77
77
|
}(jQuery);
|
78
78
|
|
79
79
|
/* ========================================================================
|
80
|
-
* Bootstrap: alert.js v3.3.
|
80
|
+
* Bootstrap: alert.js v3.3.7
|
81
81
|
* http://getbootstrap.com/javascript/#alerts
|
82
82
|
* ========================================================================
|
83
|
-
* Copyright 2011-
|
83
|
+
* Copyright 2011-2016 Twitter, Inc.
|
84
84
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
85
85
|
* ======================================================================== */
|
86
86
|
|
@@ -96,7 +96,7 @@ if (typeof jQuery === 'undefined') {
|
|
96
96
|
$(el).on('click', dismiss, this.close)
|
97
97
|
}
|
98
98
|
|
99
|
-
Alert.VERSION = '3.3.
|
99
|
+
Alert.VERSION = '3.3.7'
|
100
100
|
|
101
101
|
Alert.TRANSITION_DURATION = 150
|
102
102
|
|
@@ -109,7 +109,7 @@ if (typeof jQuery === 'undefined') {
|
|
109
109
|
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
|
110
110
|
}
|
111
111
|
|
112
|
-
var $parent = $(selector)
|
112
|
+
var $parent = $(selector === '#' ? [] : selector)
|
113
113
|
|
114
114
|
if (e) e.preventDefault()
|
115
115
|
|
@@ -172,10 +172,10 @@ if (typeof jQuery === 'undefined') {
|
|
172
172
|
}(jQuery);
|
173
173
|
|
174
174
|
/* ========================================================================
|
175
|
-
* Bootstrap: button.js v3.3.
|
175
|
+
* Bootstrap: button.js v3.3.7
|
176
176
|
* http://getbootstrap.com/javascript/#buttons
|
177
177
|
* ========================================================================
|
178
|
-
* Copyright 2011-
|
178
|
+
* Copyright 2011-2016 Twitter, Inc.
|
179
179
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
180
180
|
* ======================================================================== */
|
181
181
|
|
@@ -192,7 +192,7 @@ if (typeof jQuery === 'undefined') {
|
|
192
192
|
this.isLoading = false
|
193
193
|
}
|
194
194
|
|
195
|
-
Button.VERSION = '3.3.
|
195
|
+
Button.VERSION = '3.3.7'
|
196
196
|
|
197
197
|
Button.DEFAULTS = {
|
198
198
|
loadingText: 'loading...'
|
@@ -214,10 +214,10 @@ if (typeof jQuery === 'undefined') {
|
|
214
214
|
|
215
215
|
if (state == 'loadingText') {
|
216
216
|
this.isLoading = true
|
217
|
-
$el.addClass(d).attr(d, d)
|
217
|
+
$el.addClass(d).attr(d, d).prop(d, true)
|
218
218
|
} else if (this.isLoading) {
|
219
219
|
this.isLoading = false
|
220
|
-
$el.removeClass(d).removeAttr(d)
|
220
|
+
$el.removeClass(d).removeAttr(d).prop(d, false)
|
221
221
|
}
|
222
222
|
}, this), 0)
|
223
223
|
}
|
@@ -281,10 +281,15 @@ if (typeof jQuery === 'undefined') {
|
|
281
281
|
|
282
282
|
$(document)
|
283
283
|
.on('click.bs.button.data-api', '[data-toggle^="button"]', function (e) {
|
284
|
-
var $btn = $(e.target)
|
285
|
-
if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn')
|
284
|
+
var $btn = $(e.target).closest('.btn')
|
286
285
|
Plugin.call($btn, 'toggle')
|
287
|
-
if (!($(e.target).is('input[type="radio"]
|
286
|
+
if (!($(e.target).is('input[type="radio"], input[type="checkbox"]'))) {
|
287
|
+
// Prevent double click on radios, and the double selections (so cancellation) on checkboxes
|
288
|
+
e.preventDefault()
|
289
|
+
// The target component still receive the focus
|
290
|
+
if ($btn.is('input,button')) $btn.trigger('focus')
|
291
|
+
else $btn.find('input:visible,button:visible').first().trigger('focus')
|
292
|
+
}
|
288
293
|
})
|
289
294
|
.on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^="button"]', function (e) {
|
290
295
|
$(e.target).closest('.btn').toggleClass('focus', /^focus(in)?$/.test(e.type))
|
@@ -293,10 +298,10 @@ if (typeof jQuery === 'undefined') {
|
|
293
298
|
}(jQuery);
|
294
299
|
|
295
300
|
/* ========================================================================
|
296
|
-
* Bootstrap: carousel.js v3.3.
|
301
|
+
* Bootstrap: carousel.js v3.3.7
|
297
302
|
* http://getbootstrap.com/javascript/#carousel
|
298
303
|
* ========================================================================
|
299
|
-
* Copyright 2011-
|
304
|
+
* Copyright 2011-2016 Twitter, Inc.
|
300
305
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
301
306
|
* ======================================================================== */
|
302
307
|
|
@@ -324,7 +329,7 @@ if (typeof jQuery === 'undefined') {
|
|
324
329
|
.on('mouseleave.bs.carousel', $.proxy(this.cycle, this))
|
325
330
|
}
|
326
331
|
|
327
|
-
Carousel.VERSION = '3.3.
|
332
|
+
Carousel.VERSION = '3.3.7'
|
328
333
|
|
329
334
|
Carousel.TRANSITION_DURATION = 600
|
330
335
|
|
@@ -531,13 +536,14 @@ if (typeof jQuery === 'undefined') {
|
|
531
536
|
}(jQuery);
|
532
537
|
|
533
538
|
/* ========================================================================
|
534
|
-
* Bootstrap: collapse.js v3.3.
|
539
|
+
* Bootstrap: collapse.js v3.3.7
|
535
540
|
* http://getbootstrap.com/javascript/#collapse
|
536
541
|
* ========================================================================
|
537
|
-
* Copyright 2011-
|
542
|
+
* Copyright 2011-2016 Twitter, Inc.
|
538
543
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
539
544
|
* ======================================================================== */
|
540
545
|
|
546
|
+
/* jshint latedef: false */
|
541
547
|
|
542
548
|
+function ($) {
|
543
549
|
'use strict';
|
@@ -561,7 +567,7 @@ if (typeof jQuery === 'undefined') {
|
|
561
567
|
if (this.options.toggle) this.toggle()
|
562
568
|
}
|
563
569
|
|
564
|
-
Collapse.VERSION = '3.3.
|
570
|
+
Collapse.VERSION = '3.3.7'
|
565
571
|
|
566
572
|
Collapse.TRANSITION_DURATION = 350
|
567
573
|
|
@@ -743,10 +749,10 @@ if (typeof jQuery === 'undefined') {
|
|
743
749
|
}(jQuery);
|
744
750
|
|
745
751
|
/* ========================================================================
|
746
|
-
* Bootstrap: dropdown.js v3.3.
|
752
|
+
* Bootstrap: dropdown.js v3.3.7
|
747
753
|
* http://getbootstrap.com/javascript/#dropdowns
|
748
754
|
* ========================================================================
|
749
|
-
* Copyright 2011-
|
755
|
+
* Copyright 2011-2016 Twitter, Inc.
|
750
756
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
751
757
|
* ======================================================================== */
|
752
758
|
|
@@ -763,7 +769,7 @@ if (typeof jQuery === 'undefined') {
|
|
763
769
|
$(element).on('click.bs.dropdown', this.toggle)
|
764
770
|
}
|
765
771
|
|
766
|
-
Dropdown.VERSION = '3.3.
|
772
|
+
Dropdown.VERSION = '3.3.7'
|
767
773
|
|
768
774
|
function getParent($this) {
|
769
775
|
var selector = $this.attr('data-target')
|
@@ -795,7 +801,7 @@ if (typeof jQuery === 'undefined') {
|
|
795
801
|
if (e.isDefaultPrevented()) return
|
796
802
|
|
797
803
|
$this.attr('aria-expanded', 'false')
|
798
|
-
$parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget)
|
804
|
+
$parent.removeClass('open').trigger($.Event('hidden.bs.dropdown', relatedTarget))
|
799
805
|
})
|
800
806
|
}
|
801
807
|
|
@@ -829,7 +835,7 @@ if (typeof jQuery === 'undefined') {
|
|
829
835
|
|
830
836
|
$parent
|
831
837
|
.toggleClass('open')
|
832
|
-
.trigger('shown.bs.dropdown', relatedTarget)
|
838
|
+
.trigger($.Event('shown.bs.dropdown', relatedTarget))
|
833
839
|
}
|
834
840
|
|
835
841
|
return false
|
@@ -909,10 +915,10 @@ if (typeof jQuery === 'undefined') {
|
|
909
915
|
}(jQuery);
|
910
916
|
|
911
917
|
/* ========================================================================
|
912
|
-
* Bootstrap: modal.js v3.3.
|
918
|
+
* Bootstrap: modal.js v3.3.7
|
913
919
|
* http://getbootstrap.com/javascript/#modals
|
914
920
|
* ========================================================================
|
915
|
-
* Copyright 2011-
|
921
|
+
* Copyright 2011-2016 Twitter, Inc.
|
916
922
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
917
923
|
* ======================================================================== */
|
918
924
|
|
@@ -943,7 +949,7 @@ if (typeof jQuery === 'undefined') {
|
|
943
949
|
}
|
944
950
|
}
|
945
951
|
|
946
|
-
Modal.VERSION = '3.3.
|
952
|
+
Modal.VERSION = '3.3.7'
|
947
953
|
|
948
954
|
Modal.TRANSITION_DURATION = 300
|
949
955
|
Modal.BACKDROP_TRANSITION_DURATION = 150
|
@@ -1050,7 +1056,9 @@ if (typeof jQuery === 'undefined') {
|
|
1050
1056
|
$(document)
|
1051
1057
|
.off('focusin.bs.modal') // guard against infinite focus loop
|
1052
1058
|
.on('focusin.bs.modal', $.proxy(function (e) {
|
1053
|
-
if (
|
1059
|
+
if (document !== e.target &&
|
1060
|
+
this.$element[0] !== e.target &&
|
1061
|
+
!this.$element.has(e.target).length) {
|
1054
1062
|
this.$element.trigger('focus')
|
1055
1063
|
}
|
1056
1064
|
}, this))
|
@@ -1247,11 +1255,11 @@ if (typeof jQuery === 'undefined') {
|
|
1247
1255
|
}(jQuery);
|
1248
1256
|
|
1249
1257
|
/* ========================================================================
|
1250
|
-
* Bootstrap: tooltip.js v3.3.
|
1258
|
+
* Bootstrap: tooltip.js v3.3.7
|
1251
1259
|
* http://getbootstrap.com/javascript/#tooltip
|
1252
1260
|
* Inspired by the original jQuery.tipsy by Jason Frame
|
1253
1261
|
* ========================================================================
|
1254
|
-
* Copyright 2011-
|
1262
|
+
* Copyright 2011-2016 Twitter, Inc.
|
1255
1263
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
1256
1264
|
* ======================================================================== */
|
1257
1265
|
|
@@ -1274,7 +1282,7 @@ if (typeof jQuery === 'undefined') {
|
|
1274
1282
|
this.init('tooltip', element, options)
|
1275
1283
|
}
|
1276
1284
|
|
1277
|
-
Tooltip.VERSION = '3.3.
|
1285
|
+
Tooltip.VERSION = '3.3.7'
|
1278
1286
|
|
1279
1287
|
Tooltip.TRANSITION_DURATION = 150
|
1280
1288
|
|
@@ -1565,9 +1573,11 @@ if (typeof jQuery === 'undefined') {
|
|
1565
1573
|
|
1566
1574
|
function complete() {
|
1567
1575
|
if (that.hoverState != 'in') $tip.detach()
|
1568
|
-
that.$element
|
1569
|
-
|
1570
|
-
|
1576
|
+
if (that.$element) { // TODO: Check whether guarding this code with this `if` is really necessary.
|
1577
|
+
that.$element
|
1578
|
+
.removeAttr('aria-describedby')
|
1579
|
+
.trigger('hidden.bs.' + that.type)
|
1580
|
+
}
|
1571
1581
|
callback && callback()
|
1572
1582
|
}
|
1573
1583
|
|
@@ -1610,7 +1620,10 @@ if (typeof jQuery === 'undefined') {
|
|
1610
1620
|
// width and height are missing in IE8, so compute them manually; see https://github.com/twbs/bootstrap/issues/14093
|
1611
1621
|
elRect = $.extend({}, elRect, { width: elRect.right - elRect.left, height: elRect.bottom - elRect.top })
|
1612
1622
|
}
|
1613
|
-
var
|
1623
|
+
var isSvg = window.SVGElement && el instanceof window.SVGElement
|
1624
|
+
// Avoid using $.offset() on SVGs since it gives incorrect results in jQuery 3.
|
1625
|
+
// See https://github.com/twbs/bootstrap/issues/20280
|
1626
|
+
var elOffset = isBody ? { top: 0, left: 0 } : (isSvg ? null : $element.offset())
|
1614
1627
|
var scroll = { scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop() }
|
1615
1628
|
var outerDims = isBody ? { width: $(window).width(), height: $(window).height() } : null
|
1616
1629
|
|
@@ -1726,6 +1739,7 @@ if (typeof jQuery === 'undefined') {
|
|
1726
1739
|
that.$tip = null
|
1727
1740
|
that.$arrow = null
|
1728
1741
|
that.$viewport = null
|
1742
|
+
that.$element = null
|
1729
1743
|
})
|
1730
1744
|
}
|
1731
1745
|
|
@@ -1762,10 +1776,10 @@ if (typeof jQuery === 'undefined') {
|
|
1762
1776
|
}(jQuery);
|
1763
1777
|
|
1764
1778
|
/* ========================================================================
|
1765
|
-
* Bootstrap: popover.js v3.3.
|
1779
|
+
* Bootstrap: popover.js v3.3.7
|
1766
1780
|
* http://getbootstrap.com/javascript/#popovers
|
1767
1781
|
* ========================================================================
|
1768
|
-
* Copyright 2011-
|
1782
|
+
* Copyright 2011-2016 Twitter, Inc.
|
1769
1783
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
1770
1784
|
* ======================================================================== */
|
1771
1785
|
|
@@ -1782,7 +1796,7 @@ if (typeof jQuery === 'undefined') {
|
|
1782
1796
|
|
1783
1797
|
if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')
|
1784
1798
|
|
1785
|
-
Popover.VERSION = '3.3.
|
1799
|
+
Popover.VERSION = '3.3.7'
|
1786
1800
|
|
1787
1801
|
Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {
|
1788
1802
|
placement: 'right',
|
@@ -1871,10 +1885,10 @@ if (typeof jQuery === 'undefined') {
|
|
1871
1885
|
}(jQuery);
|
1872
1886
|
|
1873
1887
|
/* ========================================================================
|
1874
|
-
* Bootstrap: scrollspy.js v3.3.
|
1888
|
+
* Bootstrap: scrollspy.js v3.3.7
|
1875
1889
|
* http://getbootstrap.com/javascript/#scrollspy
|
1876
1890
|
* ========================================================================
|
1877
|
-
* Copyright 2011-
|
1891
|
+
* Copyright 2011-2016 Twitter, Inc.
|
1878
1892
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
1879
1893
|
* ======================================================================== */
|
1880
1894
|
|
@@ -1900,7 +1914,7 @@ if (typeof jQuery === 'undefined') {
|
|
1900
1914
|
this.process()
|
1901
1915
|
}
|
1902
1916
|
|
1903
|
-
ScrollSpy.VERSION = '3.3.
|
1917
|
+
ScrollSpy.VERSION = '3.3.7'
|
1904
1918
|
|
1905
1919
|
ScrollSpy.DEFAULTS = {
|
1906
1920
|
offset: 10
|
@@ -2044,10 +2058,10 @@ if (typeof jQuery === 'undefined') {
|
|
2044
2058
|
}(jQuery);
|
2045
2059
|
|
2046
2060
|
/* ========================================================================
|
2047
|
-
* Bootstrap: tab.js v3.3.
|
2061
|
+
* Bootstrap: tab.js v3.3.7
|
2048
2062
|
* http://getbootstrap.com/javascript/#tabs
|
2049
2063
|
* ========================================================================
|
2050
|
-
* Copyright 2011-
|
2064
|
+
* Copyright 2011-2016 Twitter, Inc.
|
2051
2065
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
2052
2066
|
* ======================================================================== */
|
2053
2067
|
|
@@ -2064,7 +2078,7 @@ if (typeof jQuery === 'undefined') {
|
|
2064
2078
|
// jscs:enable requireDollarBeforejQueryAssignment
|
2065
2079
|
}
|
2066
2080
|
|
2067
|
-
Tab.VERSION = '3.3.
|
2081
|
+
Tab.VERSION = '3.3.7'
|
2068
2082
|
|
2069
2083
|
Tab.TRANSITION_DURATION = 150
|
2070
2084
|
|
@@ -2200,10 +2214,10 @@ if (typeof jQuery === 'undefined') {
|
|
2200
2214
|
}(jQuery);
|
2201
2215
|
|
2202
2216
|
/* ========================================================================
|
2203
|
-
* Bootstrap: affix.js v3.3.
|
2217
|
+
* Bootstrap: affix.js v3.3.7
|
2204
2218
|
* http://getbootstrap.com/javascript/#affix
|
2205
2219
|
* ========================================================================
|
2206
|
-
* Copyright 2011-
|
2220
|
+
* Copyright 2011-2016 Twitter, Inc.
|
2207
2221
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
2208
2222
|
* ======================================================================== */
|
2209
2223
|
|
@@ -2229,7 +2243,7 @@ if (typeof jQuery === 'undefined') {
|
|
2229
2243
|
this.checkPosition()
|
2230
2244
|
}
|
2231
2245
|
|
2232
|
-
Affix.VERSION = '3.3.
|
2246
|
+
Affix.VERSION = '3.3.7'
|
2233
2247
|
|
2234
2248
|
Affix.RESET = 'affix affix-top affix-bottom'
|
2235
2249
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap v3.3.
|
3
|
-
* Copyright 2011-
|
2
|
+
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3
|
+
* Copyright 2011-2016 Twitter, Inc.
|
4
4
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5
5
|
*/
|
6
6
|
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
|
@@ -263,8 +263,8 @@ th {
|
|
263
263
|
@font-face {
|
264
264
|
font-family: 'Glyphicons Halflings';
|
265
265
|
|
266
|
-
src: url('
|
267
|
-
src: url('
|
266
|
+
src: url('../fonts/glyphicons-halflings-regular.eot');
|
267
|
+
src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
|
268
268
|
}
|
269
269
|
.glyphicon {
|
270
270
|
position: relative;
|
@@ -1106,7 +1106,6 @@ a:focus {
|
|
1106
1106
|
text-decoration: underline;
|
1107
1107
|
}
|
1108
1108
|
a:focus {
|
1109
|
-
outline: thin dotted;
|
1110
1109
|
outline: 5px auto -webkit-focus-ring-color;
|
1111
1110
|
outline-offset: -2px;
|
1112
1111
|
}
|
@@ -2537,7 +2536,6 @@ select[size] {
|
|
2537
2536
|
input[type="file"]:focus,
|
2538
2537
|
input[type="radio"]:focus,
|
2539
2538
|
input[type="checkbox"]:focus {
|
2540
|
-
outline: thin dotted;
|
2541
2539
|
outline: 5px auto -webkit-focus-ring-color;
|
2542
2540
|
outline-offset: -2px;
|
2543
2541
|
}
|
@@ -3029,7 +3027,6 @@ select[multiple].input-lg {
|
|
3029
3027
|
.btn.focus,
|
3030
3028
|
.btn:active.focus,
|
3031
3029
|
.btn.active.focus {
|
3032
|
-
outline: thin dotted;
|
3033
3030
|
outline: 5px auto -webkit-focus-ring-color;
|
3034
3031
|
outline-offset: -2px;
|
3035
3032
|
}
|
@@ -3767,6 +3764,7 @@ tbody.collapse.in {
|
|
3767
3764
|
border-radius: 0;
|
3768
3765
|
}
|
3769
3766
|
.btn-group-vertical > .btn:first-child:not(:last-child) {
|
3767
|
+
border-top-left-radius: 4px;
|
3770
3768
|
border-top-right-radius: 4px;
|
3771
3769
|
border-bottom-right-radius: 0;
|
3772
3770
|
border-bottom-left-radius: 0;
|
@@ -3774,6 +3772,7 @@ tbody.collapse.in {
|
|
3774
3772
|
.btn-group-vertical > .btn:last-child:not(:first-child) {
|
3775
3773
|
border-top-left-radius: 0;
|
3776
3774
|
border-top-right-radius: 0;
|
3775
|
+
border-bottom-right-radius: 4px;
|
3777
3776
|
border-bottom-left-radius: 4px;
|
3778
3777
|
}
|
3779
3778
|
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
|
@@ -3831,6 +3830,9 @@ tbody.collapse.in {
|
|
3831
3830
|
width: 100%;
|
3832
3831
|
margin-bottom: 0;
|
3833
3832
|
}
|
3833
|
+
.input-group .form-control:focus {
|
3834
|
+
z-index: 3;
|
3835
|
+
}
|
3834
3836
|
.input-group-lg > .form-control,
|
3835
3837
|
.input-group-lg > .input-group-addon,
|
3836
3838
|
.input-group-lg > .input-group-btn > .btn {
|
@@ -6322,6 +6324,7 @@ button.close {
|
|
6322
6324
|
color: #fff;
|
6323
6325
|
text-align: center;
|
6324
6326
|
text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
|
6327
|
+
background-color: rgba(0, 0, 0, 0);
|
6325
6328
|
filter: alpha(opacity=50);
|
6326
6329
|
opacity: .5;
|
6327
6330
|
}
|
@@ -6435,16 +6438,16 @@ button.close {
|
|
6435
6438
|
.carousel-control .icon-next {
|
6436
6439
|
width: 30px;
|
6437
6440
|
height: 30px;
|
6438
|
-
margin-top: -
|
6441
|
+
margin-top: -10px;
|
6439
6442
|
font-size: 30px;
|
6440
6443
|
}
|
6441
6444
|
.carousel-control .glyphicon-chevron-left,
|
6442
6445
|
.carousel-control .icon-prev {
|
6443
|
-
margin-left: -
|
6446
|
+
margin-left: -10px;
|
6444
6447
|
}
|
6445
6448
|
.carousel-control .glyphicon-chevron-right,
|
6446
6449
|
.carousel-control .icon-next {
|
6447
|
-
margin-right: -
|
6450
|
+
margin-right: -10px;
|
6448
6451
|
}
|
6449
6452
|
.carousel-caption {
|
6450
6453
|
right: 20%;
|