flashgrid 3.3.2 → 3.4.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9f3dbcb5906dd25723ddbcc369905a70fef2a205
4
- data.tar.gz: 026ec10b1783c7561ef20516dd618f2eac548d7d
3
+ metadata.gz: 15536728f95f7182309731722bda24f5edb3f203
4
+ data.tar.gz: 4293a2c33281f1f8763789f77fbeff1fb98c5267
5
5
  SHA512:
6
- metadata.gz: 74d3b300d50fa3c7148384b8875d57d41d8f1b5c13c9b0e2ea788e631ed6f658e4fd29460add5107e91e6fc864908dcf53109eca9b635a83662000af0c1213c3
7
- data.tar.gz: c9add02f9004ba66d5587b0384c854b40dd6f776cf3a95a60ee5c67cf10b16b806c0f945df279ffe8cdd06282eb0532d51a55caa03007a3c17b78a59bf42ecad
6
+ metadata.gz: a7eb62548a21777315a925e7a2cd0e70252161feb219aa7534f086f0815d758caa04d34aab986cbb108526757c5ea683406671818f97d3e6eae176bd2d5d9792
7
+ data.tar.gz: e26cfc195d29f5efe5ca585f3090aea937e9d4c637f1a876e20336ee75bb6b8d1e578a831605a48243c940fa2d8eba8f21b73f672aae167c3bb2e51d29dee63d
@@ -1,3 +1,3 @@
1
1
  module Flashgrid
2
- VERSION = "3.3.2"
2
+ VERSION = "3.4.0"
3
3
  end
@@ -19,7 +19,7 @@
19
19
  this.checkPosition()
20
20
  }
21
21
 
22
- Affix.VERSION = '3.3.0'
22
+ Affix.VERSION = '3.3.1'
23
23
 
24
24
  Affix.RESET = 'affix affix-top affix-bottom'
25
25
 
@@ -44,7 +44,7 @@
44
44
  var colliderTop = initializing ? scrollTop : position.top
45
45
  var colliderHeight = initializing ? targetHeight : height
46
46
 
47
- if (offsetTop != null && colliderTop <= offsetTop) return 'top'
47
+ if (offsetTop != null && scrollTop <= offsetTop) return 'top'
48
48
  if (offsetBottom != null && (colliderTop + colliderHeight >= scrollHeight - offsetBottom)) return 'bottom'
49
49
 
50
50
  return false
@@ -9,7 +9,7 @@
9
9
  $(el).on('click', dismiss, this.close)
10
10
  }
11
11
 
12
- Alert.VERSION = '3.3.0'
12
+ Alert.VERSION = '3.3.1'
13
13
 
14
14
  Alert.TRANSITION_DURATION = 150
15
15
 
@@ -3,40 +3,43 @@
3
3
 
4
4
  $.fn.animateCSS = function (effect, delay, callback) {
5
5
  return this.each(function () {
6
- var $this = $(this),
6
+
7
+ var $this = $(this),
8
+ animated = "animated",
9
+ hidden = "hidden",
7
10
  transitionEnd = "webkitAnimationEnd oanimationend msAnimationEnd animationend",
8
- animated = "animated",
9
- visibility = "visibility",
10
- visible = "visible",
11
- hidden = "hidden";
11
+ visibility = "visibility",
12
+ visible = "visible";
12
13
 
13
14
  function run() {
14
- $this.addClass( animated + " " + effect);
15
+ $this.addClass( animated + " " + effect)
15
16
 
16
17
  if ($this.css( visibility ) === hidden) {
17
- $this.css( visibility, visible);
18
- };
18
+ $this.css( visibility, visible)
19
+ }
19
20
 
20
21
  if ($this.is(":" + hidden)) {
21
- $this.show();
22
- };
22
+ $this.show()
23
+ }
23
24
 
24
25
  $this.bind( transitionEnd, function () {
25
- $this.removeClass(animated + " " + effect);
26
+ $this.removeClass(animated + " " + effect)
26
27
 
27
28
  if (typeof callback === "function") {
28
- callback.call(this);
29
- $this.unbind( transitionEnd );
30
- };
31
- });
32
- };
29
+ callback.call(this)
30
+ $this.unbind( transitionEnd )
31
+ }
32
+ })
33
+ }
33
34
 
34
35
  if (!delay || typeof delay === "function") {
35
36
  callback = delay;
36
- run();
37
+ run()
37
38
  } else {
38
- setTimeout( run, delay );
39
- };
40
- });
41
- };
39
+ setTimeout(run, delay)
40
+ }
41
+
42
+ })
43
+ }
44
+
42
45
  })(jQuery, window, document);
@@ -10,7 +10,7 @@
10
10
  this.isLoading = false
11
11
  }
12
12
 
13
- Button.VERSION = '3.3.0'
13
+ Button.VERSION = '3.3.1'
14
14
 
15
15
  Button.DEFAULTS = {
16
16
  loadingText: 'loading...'
@@ -21,7 +21,7 @@
21
21
  .on('mouseleave.bs.carousel', $.proxy(this.cycle, this))
22
22
  }
23
23
 
24
- Carousel.VERSION = '3.3.0'
24
+ Carousel.VERSION = '3.3.1'
25
25
 
26
26
  Carousel.TRANSITION_DURATION = 600
27
27
 
@@ -61,8 +61,11 @@
61
61
  }
62
62
 
63
63
  Carousel.prototype.getItemForDirection = function (direction, active) {
64
- var delta = direction == 'prev' ? -1 : 1
65
64
  var activeIndex = this.getItemIndex(active)
65
+ var willWrap = (direction == 'prev' && activeIndex === 0)
66
+ || (direction == 'next' && activeIndex == (this.$items.length - 1))
67
+ if (willWrap && !this.options.wrap) return active
68
+ var delta = direction == 'prev' ? -1 : 1
66
69
  var itemIndex = (activeIndex + delta) % this.$items.length
67
70
  return this.$items.eq(itemIndex)
68
71
  }
@@ -107,14 +110,8 @@
107
110
  var $next = next || this.getItemForDirection(type, $active)
108
111
  var isCycling = this.interval
109
112
  var direction = type == 'next' ? 'left' : 'right'
110
- var fallback = type == 'next' ? 'first' : 'last'
111
113
  var that = this
112
114
 
113
- if (!$next.length) {
114
- if (!this.options.wrap) return
115
- $next = this.$element.find('.item')[fallback]()
116
- }
117
-
118
115
  if ($next.hasClass('active')) return (this.sliding = false)
119
116
 
120
117
  var relatedTarget = $next[0]
@@ -19,7 +19,7 @@
19
19
  if (this.options.toggle) this.toggle()
20
20
  }
21
21
 
22
- Collapse.VERSION = '3.3.0'
22
+ Collapse.VERSION = '3.3.1'
23
23
 
24
24
  Collapse.TRANSITION_DURATION = 350
25
25
 
@@ -37,7 +37,7 @@
37
37
  if (this.transitioning || this.$element.hasClass('in')) return
38
38
 
39
39
  var activesData
40
- var actives = this.$parent && this.$parent.find('> .panel').children('.in, .collapsing')
40
+ var actives = this.$parent && this.$parent.children('.panel').children('.in, .collapsing')
41
41
 
42
42
  if (actives && actives.length) {
43
43
  activesData = actives.data('bs.collapse')
@@ -10,7 +10,7 @@
10
10
  $(element).on('click.bs.dropdown', this.toggle)
11
11
  }
12
12
 
13
- Dropdown.VERSION = '3.3.0'
13
+ Dropdown.VERSION = '3.3.1'
14
14
 
15
15
  Dropdown.prototype.toggle = function (e) {
16
16
  var $this = $(this)
@@ -46,7 +46,7 @@
46
46
  }
47
47
 
48
48
  Dropdown.prototype.keydown = function (e) {
49
- if (!/(38|40|27|32)/.test(e.which)) return
49
+ if (!/(38|40|27|32)/.test(e.which) || /input|textarea/i.test(e.target.tagName)) return
50
50
 
51
51
  var $this = $(this)
52
52
 
@@ -725,21 +725,38 @@ GMaps.prototype.removeMarkers = function (collection) {
725
725
 
726
726
  if (typeof collection == 'undefined') {
727
727
  for (var i = 0; i < this.markers.length; i++) {
728
- this.markers[i].setMap(null);
728
+ var marker = this.markers[i];
729
+ marker.setMap(null);
730
+
731
+ if(this.markerClusterer) {
732
+ this.markerClusterer.removeMarker(marker);
733
+ }
734
+
735
+ GMaps.fire('marker_removed', marker, this);
729
736
  }
730
737
 
731
738
  this.markers = new_markers;
732
739
  }
733
740
  else {
734
741
  for (var i = 0; i < collection.length; i++) {
735
- if (this.markers.indexOf(collection[i]) > -1) {
736
- this.markers[i].setMap(null);
742
+ var index = this.markers.indexOf(collection[i]);
743
+
744
+ if (index > -1) {
745
+ var marker = this.markers[index];
746
+ marker.setMap(null);
747
+
748
+ if(this.markerClusterer) {
749
+ this.markerClusterer.removeMarker(marker);
750
+ }
751
+
752
+ GMaps.fire('marker_removed', marker, this);
737
753
  }
738
754
  }
739
755
 
740
756
  for (var i = 0; i < this.markers.length; i++) {
741
- if (this.markers[i].getMap() != null) {
742
- new_markers.push(this.markers[i]);
757
+ var marker = this.markers[i];
758
+ if (marker.getMap() != null) {
759
+ new_markers.push(marker);
743
760
  }
744
761
  }
745
762
 
@@ -21,7 +21,10 @@
21
21
  }
22
22
  }
23
23
 
24
- Modal.VERSION = '3.3.0'
24
+ Modal.VERSION = '3.3.1'
25
+
26
+ Modal.TRANSITION_DURATION = 300
27
+ Modal.BACKDROP_TRANSITION_DURATION = 150
25
28
 
26
29
  Modal.DEFAULTS = {
27
30
  backdrop: true,
@@ -44,10 +47,11 @@
44
47
  this.isShown = true
45
48
 
46
49
  this.checkScrollbar()
50
+ this.setScrollbar()
47
51
  this.$body.addClass('modal-open')
48
52
 
49
- this.setScrollbar()
50
53
  this.escape()
54
+ this.resize()
51
55
 
52
56
  this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
53
57
 
@@ -62,6 +66,9 @@
62
66
  .show()
63
67
  .scrollTop(0)
64
68
 
69
+ if (that.options.backdrop) that.adjustBackdrop()
70
+ that.adjustDialog()
71
+
65
72
  if (transition) {
66
73
  that.$element[0].offsetWidth // force reflow
67
74
  }
@@ -79,7 +86,7 @@
79
86
  .one('bsTransitionEnd', function () {
80
87
  that.$element.trigger('focus').trigger(e)
81
88
  })
82
- .emulateTransitionEnd(300) :
89
+ .emulateTransitionEnd(Modal.TRANSITION_DURATION) :
83
90
  that.$element.trigger('focus').trigger(e)
84
91
  })
85
92
  }
@@ -95,10 +102,8 @@
95
102
 
96
103
  this.isShown = false
97
104
 
98
- this.$body.removeClass('modal-open')
99
-
100
- this.resetScrollbar()
101
105
  this.escape()
106
+ this.resize()
102
107
 
103
108
  $(document).off('focusin.bs.modal')
104
109
 
@@ -110,7 +115,7 @@
110
115
  $.support.transition && this.$element.hasClass('fade') ?
111
116
  this.$element
112
117
  .one('bsTransitionEnd', $.proxy(this.hideModal, this))
113
- .emulateTransitionEnd(300) :
118
+ .emulateTransitionEnd(Modal.TRANSITION_DURATION) :
114
119
  this.hideModal()
115
120
  }
116
121
 
@@ -126,11 +131,19 @@
126
131
 
127
132
  Modal.prototype.escape = function () {
128
133
  if (this.isShown && this.options.keyboard) {
129
- this.$element.on('keyup.dismiss.bs.modal', $.proxy(function (e) {
134
+ this.$element.on('keydown.dismiss.bs.modal', $.proxy(function (e) {
130
135
  e.which == 27 && this.hide()
131
136
  }, this))
132
137
  } else if (!this.isShown) {
133
- this.$element.off('keyup.dismiss.bs.modal')
138
+ this.$element.off('keydown.dismiss.bs.modal')
139
+ }
140
+ }
141
+
142
+ Modal.prototype.resize = function () {
143
+ if (this.isShown) {
144
+ $(window).on('resize.bs.modal', $.proxy(this.handleUpdate, this))
145
+ } else {
146
+ $(window).off('resize.bs.modal')
134
147
  }
135
148
  }
136
149
 
@@ -138,6 +151,9 @@
138
151
  var that = this
139
152
  this.$element.hide()
140
153
  this.backdrop(function () {
154
+ that.$body.removeClass('modal-open')
155
+ that.resetAdjustments()
156
+ that.resetScrollbar()
141
157
  that.$element.trigger('hidden.bs.modal')
142
158
  })
143
159
  }
@@ -155,14 +171,13 @@
155
171
  var doAnimate = $.support.transition && animate
156
172
 
157
173
  this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />')
158
- .appendTo(this.$body)
159
-
160
- this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) {
161
- if (e.target !== e.currentTarget) return
162
- this.options.backdrop == 'static'
163
- ? this.$element[0].focus.call(this.$element[0])
164
- : this.hide.call(this)
165
- }, this))
174
+ .prependTo(this.$element)
175
+ .on('click.dismiss.bs.modal', $.proxy(function (e) {
176
+ if (e.target !== e.currentTarget) return
177
+ this.options.backdrop == 'static'
178
+ ? this.$element[0].focus.call(this.$element[0])
179
+ : this.hide.call(this)
180
+ }, this))
166
181
 
167
182
  if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
168
183
 
@@ -173,7 +188,7 @@
173
188
  doAnimate ?
174
189
  this.$backdrop
175
190
  .one('bsTransitionEnd', callback)
176
- .emulateTransitionEnd(150) :
191
+ .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :
177
192
  callback()
178
193
 
179
194
  } else if (!this.isShown && this.$backdrop) {
@@ -186,7 +201,7 @@
186
201
  $.support.transition && this.$element.hasClass('fade') ?
187
202
  this.$backdrop
188
203
  .one('bsTransitionEnd', callbackRemove)
189
- .emulateTransitionEnd(150) :
204
+ .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) :
190
205
  callbackRemove()
191
206
 
192
207
  } else if (callback) {
@@ -194,14 +209,43 @@
194
209
  }
195
210
  }
196
211
 
212
+ // these following methods are used to handle overflowing modals
213
+
214
+ Modal.prototype.handleUpdate = function () {
215
+ if (this.options.backdrop) this.adjustBackdrop()
216
+ this.adjustDialog()
217
+ }
218
+
219
+ Modal.prototype.adjustBackdrop = function () {
220
+ this.$backdrop
221
+ .css('height', 0)
222
+ .css('height', this.$element[0].scrollHeight)
223
+ }
224
+
225
+ Modal.prototype.adjustDialog = function () {
226
+ var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight
227
+
228
+ this.$element.css({
229
+ paddingLeft: !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '',
230
+ paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : ''
231
+ })
232
+ }
233
+
234
+ Modal.prototype.resetAdjustments = function () {
235
+ this.$element.css({
236
+ paddingLeft: '',
237
+ paddingRight: ''
238
+ })
239
+ }
240
+
197
241
  Modal.prototype.checkScrollbar = function () {
198
- if (document.body.clientWidth >= window.innerWidth) return
199
- this.scrollbarWidth = this.scrollbarWidth || this.measureScrollbar()
242
+ this.bodyIsOverflowing = document.body.scrollHeight > document.documentElement.clientHeight
243
+ this.scrollbarWidth = this.measureScrollbar()
200
244
  }
201
245
 
202
246
  Modal.prototype.setScrollbar = function () {
203
247
  var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10)
204
- if (this.scrollbarWidth) this.$body.css('padding-right', bodyPad + this.scrollbarWidth)
248
+ if (this.bodyIsOverflowing) this.$body.css('padding-right', bodyPad + this.scrollbarWidth)
205
249
  }
206
250
 
207
251
  Modal.prototype.resetScrollbar = function () {
@@ -10,7 +10,7 @@
10
10
 
11
11
  if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')
12
12
 
13
- Popover.VERSION = '3.3.0'
13
+ Popover.VERSION = '3.3.1'
14
14
 
15
15
  Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {
16
16
  placement: 'right',
@@ -21,7 +21,7 @@
21
21
  this.process()
22
22
  }
23
23
 
24
- ScrollSpy.VERSION = '3.3.0'
24
+ ScrollSpy.VERSION = '3.3.1'
25
25
 
26
26
  ScrollSpy.DEFAULTS = {
27
27
  offset: 10
@@ -8,7 +8,7 @@
8
8
  this.element = $(element)
9
9
  }
10
10
 
11
- Tab.VERSION = '3.3.0'
11
+ Tab.VERSION = '3.3.1'
12
12
 
13
13
  Tab.TRANSITION_DURATION = 150
14
14
 
@@ -15,7 +15,7 @@
15
15
  this.init('tooltip', element, options)
16
16
  }
17
17
 
18
- Tooltip.VERSION = '3.3.0'
18
+ Tooltip.VERSION = '3.3.1'
19
19
 
20
20
  Tooltip.TRANSITION_DURATION = 150
21
21
 
@@ -68,6 +68,6 @@
68
68
  .alert-system .close:hover,
69
69
  .alert-system .close:focus { color: rgba(255,255,255,1); }
70
70
  .alert-block > p,
71
- .alert-block > ul { margin-bottom: 0; }
72
- .alert-block p + p { margin-top: 5px; }
73
- .alert-pull-none { margin: 0; }
71
+ .alert-block > ul { margin-bottom: 0; }
72
+ .alert-block p + p { margin-top: 5px; }
73
+ .alert-pull-none { margin: 0; }
@@ -25,7 +25,7 @@
25
25
  }
26
26
  .carousel-inner > .active,
27
27
  .carousel-inner > .next,
28
- .carousel-inner > .prev { display: block; }
28
+ .carousel-inner > .prev { display: block; }
29
29
  .carousel-inner > .active { left: 0; }
30
30
  .carousel-inner > .next,
31
31
  .carousel-inner > .prev {
@@ -33,11 +33,11 @@
33
33
  top: 0;
34
34
  width: 100%;
35
35
  }
36
- .carousel-inner > .next { left: 100%; }
37
- .carousel-inner > .prev { left: -100%; }
36
+ .carousel-inner > .next { left: 100%; }
37
+ .carousel-inner > .prev { left: -100%; }
38
38
  .carousel-inner > .next.left,
39
- .carousel-inner > .prev.right { left: 0; }
40
- .carousel-inner > .active.left { left: -100%; }
39
+ .carousel-inner > .prev.right { left: 0; }
40
+ .carousel-inner > .active.left { left: -100%; }
41
41
  .carousel-inner > .active.right { left: 100%; }
42
42
  .carousel-control {
43
43
  bottom: 0;
@@ -78,7 +78,7 @@
78
78
  z-index: 5;
79
79
  }
80
80
  .carousel-control .icon-prev,
81
- .carousel-control .icon-carousel-left { left: 10px; }
81
+ .carousel-control .icon-carousel-left { left: 10px; }
82
82
  .carousel-control .icon-next,
83
83
  .carousel-control .icon-carousel-right { right: 10px; }
84
84
  .carousel-control .icon-prev,
@@ -143,6 +143,6 @@
143
143
  height: 20px;
144
144
  width: 20px;
145
145
  }
146
- .carousel-caption { display: none !important; }
146
+ .carousel-caption { display: none !important; }
147
147
  .carousel-indicators { bottom: 20px; }
148
148
  }
@@ -4,8 +4,8 @@
4
4
 
5
5
  /* #Collapse
6
6
  ================================================== */
7
- .collapse { display: none; }
8
- .collapse.in { display: block; }
7
+ .collapse { display: none; }
8
+ .collapse.in { display: block; }
9
9
  .collapsing {
10
10
  position: relative;
11
11
  height: 0;
@@ -53,6 +53,7 @@ input[type="color"],
53
53
  color: rgba(43,50,53,1);
54
54
  display: block;
55
55
  font-size: 16px;
56
+ line-height: 16px;
56
57
  margin-bottom: 5px;
57
58
  padding: 13px 0 10px 0;
58
59
  text-indent: 10px;
@@ -103,12 +104,14 @@ input[type="checkbox"] { width: auto; }
103
104
  select {
104
105
  -webkit-appearance: none;
105
106
  -moz-appearance: none;
107
+ background: rgba(255,255,255,1);
106
108
  border: 1px solid rgba(225,232,237,1);
107
109
  border-radius: 0;
108
110
  -moz-box-sizing: border-box;
109
111
  box-sizing: border-box;
110
112
  color: rgba(43,50,53,1);
111
- font-size: 100%;
113
+ font-size: 16px;
114
+ line-height: 16px;
112
115
  margin-bottom: 5px;
113
116
  padding: 13px 0 10px 10px;
114
117
  text-indent: 0;
@@ -186,7 +189,7 @@ select.form-input-initial-width {
186
189
  .form-header h3,
187
190
  .form-header h4,
188
191
  .form-header h5,
189
- .form-header h6 { margin-bottom: 0; }
192
+ .form-header h6 { margin-bottom: 0; }
190
193
  .form-error-messages { margin-bottom: 40px; }
191
194
  .form-error-messages h4 {
192
195
  background: rgba(235,238,240,1);
@@ -205,8 +208,8 @@ select.form-input-initial-width {
205
208
  }
206
209
  .form-error-messages li:first-child { padding-top: 10px; }
207
210
  .form-error-messages li:last-child { padding-bottom: 10px; }
208
- .form-textarea-small { height: 80px; }
209
- .form-textarea-large { height: 200px; }
211
+ .form-textarea-small { height: 80px; }
212
+ .form-textarea-large { height: 200px; }
210
213
  .form-file-input {
211
214
  height: 0;
212
215
  margin: 0;
@@ -276,7 +279,7 @@ select.form-input-initial-width {
276
279
  .form-file-group-addon:last-child,
277
280
  .form-file-group-addon:last-child .form-file-group-button { border-left: 0; }
278
281
  .form-input-group-addon input[type="radio"],
279
- .form-input-group-addon input[type="checkbox"] { margin: 0; }
282
+ .form-input-group-addon input[type="checkbox"] { margin: 0; }
280
283
  .form-input-inline {
281
284
  display: inline-block;
282
285
  margin-right: 10px;
@@ -10,77 +10,77 @@
10
10
 
11
11
  /* #Desktop
12
12
  ================================================== */
13
- .container {
14
- margin: 0 auto;
15
- padding: 0;
16
- position: relative;
17
- width: 1200px;
18
- }
13
+ .container {
14
+ margin: 0 auto;
15
+ padding: 0;
16
+ position: relative;
17
+ width: 1200px;
18
+ }
19
19
  .container .column,
20
- .container .columns {
21
- display: inline;
22
- float: left;
23
- margin-right: 10px;
24
- margin-left: 10px;
25
- }
26
- .column.alpha, .columns.alpha {
27
- margin-right: 10px;
28
- margin-left: 0;
29
- }
30
- .column.omega, .columns.omega {
31
- margin-right: 0;
32
- margin-left: 10px;
33
- }
34
- .alpha.omega {
35
- margin-right: 0;
36
- margin-left: 0;
37
- }
38
- .row { margin-bottom: 20px; }
39
- .row-small { margin-bottom: 10px; }
40
- .row-medium { margin-bottom: 40px; }
41
- .row-large { margin-bottom: 60px; }
20
+ .container .columns {
21
+ display: inline;
22
+ float: left;
23
+ margin-right: 10px;
24
+ margin-left: 10px;
25
+ }
26
+ .column.alpha, .columns.alpha {
27
+ margin-right: 10px;
28
+ margin-left: 0;
29
+ }
30
+ .column.omega, .columns.omega {
31
+ margin-right: 0;
32
+ margin-left: 10px;
33
+ }
34
+ .alpha.omega {
35
+ margin-right: 0;
36
+ margin-left: 0;
37
+ }
38
+ .row { margin-bottom: 20px; }
39
+ .row-small { margin-bottom: 10px; }
40
+ .row-medium { margin-bottom: 40px; }
41
+ .row-large { margin-bottom: 60px; }
42
42
 
43
43
  .container .one.column,
44
- .container .one.columns { width: 55px; }
45
- .container .two.columns { width: 130px; }
46
- .container .three.columns { width: 205px; }
47
- .container .four.columns { width: 280px; }
48
- .container .five.columns { width: 355px; }
49
- .container .six.columns { width: 430px; }
50
- .container .seven.columns { width: 505px; }
51
- .container .eight.columns { width: 580px; }
52
- .container .nine.columns { width: 655px; }
53
- .container .ten.columns { width: 730px; }
54
- .container .eleven.columns { width: 805px; }
55
- .container .twelve.columns { width: 880px; }
56
- .container .thirteen.columns { width: 955px; }
57
- .container .fourteen.columns { width: 1030px; }
58
- .container .fifteen.columns { width: 1105px; }
59
- .container .sixteen.columns { width: 1180px; }
44
+ .container .one.columns { width: 55px; }
45
+ .container .two.columns { width: 130px; }
46
+ .container .three.columns { width: 205px; }
47
+ .container .four.columns { width: 280px; }
48
+ .container .five.columns { width: 355px; }
49
+ .container .six.columns { width: 430px; }
50
+ .container .seven.columns { width: 505px; }
51
+ .container .eight.columns { width: 580px; }
52
+ .container .nine.columns { width: 655px; }
53
+ .container .ten.columns { width: 730px; }
54
+ .container .eleven.columns { width: 805px; }
55
+ .container .twelve.columns { width: 880px; }
56
+ .container .thirteen.columns { width: 955px; }
57
+ .container .fourteen.columns { width: 1030px; }
58
+ .container .fifteen.columns { width: 1105px; }
59
+ .container .sixteen.columns { width: 1180px; }
60
60
 
61
- .container .one-third.column { width: 380px; }
62
- .container .two-thirds.column { width: 780px; }
61
+ .container .one-third.column { width: 380px; }
62
+ .container .two-thirds.column { width: 780px; }
63
63
 
64
- .container .offset-by-one { padding-left: 75px; }
65
- .container .offset-by-two { padding-left: 150px; }
66
- .container .offset-by-three { padding-left: 225px; }
67
- .container .offset-by-four { padding-left: 300px; }
68
- .container .offset-by-five { padding-left: 375px; }
69
- .container .offset-by-six { padding-left: 450px; }
70
- .container .offset-by-seven { padding-left: 525px; }
71
- .container .offset-by-eight { padding-left: 600px; }
72
- .container .offset-by-nine { padding-left: 675px; }
73
- .container .offset-by-ten { padding-left: 750px; }
74
- .container .offset-by-eleven { padding-left: 825px; }
75
- .container .offset-by-twelve { padding-left: 900px; }
76
- .container .offset-by-thirteen { padding-left: 975px; }
77
- .container .offset-by-fourteen { padding-left: 1050px; }
78
- .container .offset-by-fifteen { padding-left: 1125px; }
64
+ .container .offset-by-one { padding-left: 75px; }
65
+ .container .offset-by-two { padding-left: 150px; }
66
+ .container .offset-by-three { padding-left: 225px; }
67
+ .container .offset-by-four { padding-left: 300px; }
68
+ .container .offset-by-five { padding-left: 375px; }
69
+ .container .offset-by-six { padding-left: 450px; }
70
+ .container .offset-by-seven { padding-left: 525px; }
71
+ .container .offset-by-eight { padding-left: 600px; }
72
+ .container .offset-by-nine { padding-left: 675px; }
73
+ .container .offset-by-ten { padding-left: 750px; }
74
+ .container .offset-by-eleven { padding-left: 825px; }
75
+ .container .offset-by-twelve { padding-left: 900px; }
76
+ .container .offset-by-thirteen { padding-left: 975px; }
77
+ .container .offset-by-fourteen { padding-left: 1050px; }
78
+ .container .offset-by-fifteen { padding-left: 1125px; }
79
79
 
80
- .hidden { display: none !important; }
81
- .visible-phone { display: none !important; }
82
- .visible-tablet { display: none !important; }
83
- .hidden-desktop { display: none !important; }
80
+ .hidden { display: none !important; }
81
+ .visible-phone { display: none !important; }
82
+ .visible-tablet { display: none !important; }
83
+ .hidden-desktop { display: none !important; }
84
84
 
85
85
  /* #Tablet (Landscape)
86
86
  ================================================== */
@@ -94,7 +94,7 @@ input[type="submit"].modal-footer-btn {
94
94
  .modal-footer-btn:first-child,
95
95
  input[type="submit"].modal-footer-btn:first-child { border-bottom-left-radius: 5px; }
96
96
  .modal-footer-btn:last-child,
97
- input[type="submit"].modal-footer-btn:last-child { border-bottom-right-radius: 5px; }
97
+ input[type="submit"].modal-footer-btn:last-child { border-bottom-right-radius: 5px; }
98
98
  .modal-footer-btn[disabled],
99
99
  input[type="submit"].modal-footer-btn[disabled] {
100
100
  color: rgba(136,153,166,1);
@@ -175,9 +175,9 @@
175
175
  float: left;
176
176
  margin-right: 19px;
177
177
  }
178
- .tabs-left > .nav-tabs > li > a { border-radius: 3px 0 0 3px; }
178
+ .tabs-left > .nav-tabs > li > a { border-radius: 3px 0 0 3px; }
179
179
  .tabs-right > .nav-tabs {
180
180
  float: right;
181
181
  margin-left: 19px;
182
182
  }
183
- .tabs-right > .nav-tabs > li > a { border-radius: 0 3px 3px 0; }
183
+ .tabs-right > .nav-tabs > li > a { border-radius: 0 3px 3px 0; }
@@ -36,6 +36,6 @@
36
36
  text-align: center;
37
37
  }
38
38
  .pagination ul > .pagination-icon > a { padding: 9px 11px 7px 11px; }
39
- .pagination-centered { text-align: center; }
40
- .pagination-right { text-align: right; }
41
- .pagination-left { text-align: left; }
39
+ .pagination-centered { text-align: center; }
40
+ .pagination-right { text-align: right; }
41
+ .pagination-left { text-align: left; }
@@ -10,14 +10,14 @@
10
10
  border-radius: 3px;
11
11
  margin-bottom: 20px;
12
12
  }
13
- .panel-body { padding: 15px; }
13
+ .panel-body { padding: 15px; }
14
14
  .panel > .list-group { margin-bottom: 0; }
15
15
  .panel > .list-group .list-group-item {
16
16
  border-radius: 0;
17
17
  border-width: 1px 0;
18
18
  }
19
19
  .panel > .list-group .list-group-item:first-child { border-top: 0; }
20
- .panel > .list-group .list-group-item:last-child { border-bottom: 0; }
20
+ .panel > .list-group .list-group-item:last-child { border-bottom: 0; }
21
21
  .panel > .list-group:first-child .list-group-item:first-child {
22
22
  border-top-right-radius: 2px;
23
23
  border-top-left-radius: 2px;
@@ -26,9 +26,9 @@
26
26
  border-bottom-right-radius: 2px;
27
27
  border-bottom-left-radius: 2px;
28
28
  }
29
- .panel-header + .list-group .list-group-item:first-child { border-top-width: 0; }
29
+ .panel-header + .list-group .list-group-item:first-child { border-top-width: 0; }
30
30
  .panel > .table,
31
- .panel > .table-responsive > .table { margin-bottom: 0; }
31
+ .panel > .table-responsive > .table { margin-bottom: 0; }
32
32
  .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
33
33
  .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
34
34
  .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
@@ -44,7 +44,7 @@
44
44
  .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
45
45
  .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
46
46
  .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
47
- .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { border-top-right-radius: 2px; }
47
+ .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { border-top-right-radius: 2px; }
48
48
  .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
49
49
  .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
50
50
  .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
@@ -52,7 +52,7 @@
52
52
  .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
53
53
  .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
54
54
  .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
55
- .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { border-bottom-left-radius: 2px; }
55
+ .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { border-bottom-left-radius: 2px; }
56
56
  .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
57
57
  .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
58
58
  .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
@@ -60,13 +60,13 @@
60
60
  .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
61
61
  .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
62
62
  .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
63
- .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { border-bottom-right-radius: 2px; }
63
+ .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { border-bottom-right-radius: 2px; }
64
64
  .panel > .panel-body + .table,
65
- .panel > .panel-body + .table-responsive { border-top: 1px solid rgba(225,232,237,1); }
65
+ .panel > .panel-body + .table-responsive { border-top: 1px solid rgba(225,232,237,1); }
66
66
  .panel > .table > tbody:first-child th,
67
- .panel > .table > tbody:first-child td { border-top: 0; }
67
+ .panel > .table > tbody:first-child td { border-top: 0; }
68
68
  .panel > .table-bordered,
69
- .panel > .table-responsive > .table-bordered { border: 0; }
69
+ .panel > .table-responsive > .table-bordered { border: 0; }
70
70
  .panel > .table-bordered > thead > tr > th:first-child,
71
71
  .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
72
72
  .panel > .table-bordered > tbody > tr > th:first-child,
@@ -78,7 +78,7 @@
78
78
  .panel > .table-bordered > tbody > tr > td:first-child,
79
79
  .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
80
80
  .panel > .table-bordered > tfoot > tr > td:first-child,
81
- .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; }
81
+ .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; }
82
82
  .panel > .table-bordered > thead > tr > th:last-child,
83
83
  .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
84
84
  .panel > .table-bordered > tbody > tr > th:last-child,
@@ -90,7 +90,7 @@
90
90
  .panel > .table-bordered > tbody > tr > td:last-child,
91
91
  .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
92
92
  .panel > .table-bordered > tfoot > tr > td:last-child,
93
- .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; }
93
+ .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; }
94
94
  .panel > .table-bordered > thead > tr:first-child > th,
95
95
  .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
96
96
  .panel > .table-bordered > tbody > tr:first-child > th,
@@ -102,7 +102,7 @@
102
102
  .panel > .table-bordered > tbody > tr:first-child > td,
103
103
  .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
104
104
  .panel > .table-bordered > tfoot > tr:first-child > td,
105
- .panel > .table-responsive > .table-bordered > tfoot > tr:first-child > td { border-top: 0; }
105
+ .panel > .table-responsive > .table-bordered > tfoot > tr:first-child > td { border-top: 0; }
106
106
  .panel > .table-bordered > thead > tr:last-child > th,
107
107
  .panel > .table-responsive > .table-bordered > thead > tr:last-child > th,
108
108
  .panel > .table-bordered > tbody > tr:last-child > th,
@@ -114,7 +114,7 @@
114
114
  .panel > .table-bordered > tbody > tr:last-child > td,
115
115
  .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
116
116
  .panel > .table-bordered > tfoot > tr:last-child > td,
117
- .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td { border-bottom: 0; }
117
+ .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td { border-bottom: 0; }
118
118
  .panel > .table-responsive {
119
119
  border: 0;
120
120
  margin-bottom: 0;
@@ -126,7 +126,7 @@
126
126
  border-top-left-radius: 3px;
127
127
  padding: 10px 15px;
128
128
  }
129
- .panel-header > .btn { margin-top: -2px; }
129
+ .panel-header > .btn { margin-top: -2px; }
130
130
  .panel-header > .dropdown .dropdown-toggle { color: rgba(71,74,84,1); }
131
131
  .panel-title {
132
132
  color: rgba(71,74,84,1);
@@ -136,7 +136,7 @@
136
136
  margin-bottom: 0;
137
137
  margin-top: 0;
138
138
  }
139
- .panel-title > a { color: rgba(71,74,84,1); }
139
+ .panel-title > a { color: rgba(71,74,84,1); }
140
140
  .panel-title > a:hover { color: rgba(15,135,226,1); }
141
141
  .panel-footer {
142
142
  background: rgba(245,248,250,1);
@@ -151,8 +151,8 @@
151
151
  margin-bottom: 0;
152
152
  overflow: hidden;
153
153
  }
154
- .panel-group .panel + .panel { margin-top: 5px; }
155
- .panel-group .panel-header { border-bottom: 0; }
154
+ .panel-group .panel + .panel { margin-top: 5px; }
155
+ .panel-group .panel-header { border-bottom: 0; }
156
156
  .panel-group .panel-header + .panel-collapse .panel-body { border-top: 1px solid rgba(225,232,237,1); }
157
- .panel-group .panel-footer { border-top: 0; }
157
+ .panel-group .panel-footer { border-top: 0; }
158
158
  .panel-group .panel-footer + .panel-collapse .panel-body { border-bottom: 1px solid rgba(225,232,237,1); }
@@ -81,19 +81,19 @@
81
81
  .swoggle.swoggle-on.swoggle-blue,
82
82
  .swoggle.swoggle-on.swoggle-green,
83
83
  .swoggle.swoggle-on.swoggle-red { color: rgba(255,255,255,1); }
84
- .swoggle.swoggle-on.swoggle-black {
84
+ .swoggle.swoggle-on.swoggle-black {
85
85
  background: rgba(56,67,81,1);
86
86
  border-color: rgba(6,17,31,1);
87
87
  }
88
- .swoggle.swoggle-on.swoggle-blue {
88
+ .swoggle.swoggle-on.swoggle-blue {
89
89
  background: rgba(15,135,226,1);
90
90
  border-color: rgba(0,120,211,1);
91
91
  }
92
- .swoggle.swoggle-on.swoggle-green {
92
+ .swoggle.swoggle-on.swoggle-green {
93
93
  background: rgba(112,169,13,1);
94
94
  border-color: rgba(74,153,0,1);
95
95
  }
96
- .swoggle.swoggle-on.swoggle-red {
96
+ .swoggle.swoggle-on.swoggle-red {
97
97
  background: rgba(218,79,46,1);
98
98
  border-color: rgba(188,49,16,1);
99
99
  }
@@ -50,9 +50,9 @@ table {
50
50
  }
51
51
  .table th.tablespy-sort-asc,
52
52
  .table th.tablespy-sort-desc,
53
- .table th.tablespy-sort-none { cursor: pointer; }
54
- .table th.tablespy-sort-empty:before { content: ""; }
55
- .table th.tablespy-sort-empty { pointer-events: none; }
53
+ .table th.tablespy-sort-none { cursor: pointer; }
54
+ .table th.tablespy-sort-empty:before { content: ""; }
55
+ .table th.tablespy-sort-empty { pointer-events: none; }
56
56
  .table caption + thead tr:first-child th,
57
57
  .table caption + thead tr:first-child td,
58
58
  .table colgroup + thead tr:first-child th,
@@ -115,8 +115,8 @@ table {
115
115
  .table-responsive > .table > tfoot > tr > th,
116
116
  .table-responsive > .table > thead > tr > td,
117
117
  .table-responsive > .table > tbody > tr > td,
118
- .table-responsive > .table > tfoot > tr > td { white-space: nowrap; }
119
- .table-responsive > .table-bordered { border: 0; }
118
+ .table-responsive > .table > tfoot > tr > td { white-space: nowrap; }
119
+ .table-responsive > .table-bordered { border: 0; }
120
120
  .table-responsive > .table-bordered > thead > tr > th:first-child,
121
121
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
122
122
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
@@ -128,9 +128,9 @@ table {
128
128
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
129
129
  .table-responsive > .table-bordered > thead > tr > td:last-child,
130
130
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
131
- .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; }
131
+ .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; }
132
132
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
133
133
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
134
134
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
135
- .table-responsive > .table-bordered > tfoot > tr:last-child > td { border-bottom: 0; }
135
+ .table-responsive > .table-bordered > tfoot > tr:last-child > td { border-bottom: 0; }
136
136
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flashgrid
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.2
4
+ version: 3.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Gomez
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-10 00:00:00.000000000 Z
11
+ date: 2014-12-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -152,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
152
152
  version: '0'
153
153
  requirements: []
154
154
  rubyforge_project:
155
- rubygems_version: 2.4.2
155
+ rubygems_version: 2.4.5
156
156
  signing_key:
157
157
  specification_version: 4
158
158
  summary: Flashgrid Responsive Web Framework