flashgrid-ext 2.3.0 → 3.0.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: 48ae2c233d0dacccc45dabd1b60d01c3c7464a74
4
- data.tar.gz: d325508a8a57ed51924a41f2f91c311dcfb360a1
3
+ metadata.gz: 3ebc19c8aaef5c8975ae70b739f043cda3298c3c
4
+ data.tar.gz: 8e0516c4d22dafee14bdc5ba4822b2fdc5e7d8d0
5
5
  SHA512:
6
- metadata.gz: 4de3c3dc7c88cf21b19306f979e78aca31878d86f882498aeb795270ccbe37f0051fbd79bb7351e92dca56d6b0851ac99fc530c66ec85fc027301612b43ae16f
7
- data.tar.gz: 80ca03e9046cfef7359be5970355a0d864fc7e62cd00c13882a6155782617fd35a95c4fe12e169d632613a0385d7d4a3187acb8aed21fe9d0acd7f51596cdb19
6
+ metadata.gz: 1cbe67175ef79f08cdb6966af5f20e2a5b885f3798eb8d684473f36067c86d7d6d6168097c0a147707afbb86ee216e620b2072e4dbeb5361c9e0bf821719be91
7
+ data.tar.gz: 2997ce07db99c6458c357e09a069fc8ac79902f5f1a128e3046155ead742bb9e6f885b3de625e69213cb294cc2a45f4f81148b5541193d68f006355809eb3421
@@ -1,5 +1,5 @@
1
1
  module Flashgrid
2
2
  module Ext
3
- VERSION = "2.3.0"
3
+ VERSION = "3.0.0"
4
4
  end
5
5
  end
@@ -49,7 +49,7 @@
49
49
  scaleStartValue: null,
50
50
 
51
51
  // String - Colour of the scale line
52
- scaleLineColor: "rgba(0,0,0,.1)",
52
+ scaleLineColor: "rgba(225,232,237,1)",
53
53
 
54
54
  // Number - Pixel width of the scale line
55
55
  scaleLineWidth: 1,
@@ -76,7 +76,7 @@
76
76
  scaleFontStyle: "normal",
77
77
 
78
78
  // String - Scale label font colour
79
- scaleFontColor: "rgba(158,171,179,1)",
79
+ scaleFontColor: "rgba(136,153,166,1)",
80
80
 
81
81
  // Boolean - whether or not the chart should be responsive and resize when the browser does.
82
82
  responsive: true,
@@ -91,7 +91,7 @@
91
91
  tooltipEvents: ["mousemove", "touchstart", "touchmove", "mouseout"],
92
92
 
93
93
  // String - Tooltip background colour
94
- tooltipFillColor: "rgba(71,74,84,1)",
94
+ tooltipFillColor: "rgba(56,67,81,1)",
95
95
 
96
96
  // String - Tooltip label font declaration for the scale label
97
97
  tooltipFontFamily: "'Gotham', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif",
@@ -1910,7 +1910,7 @@
1910
1910
  scaleShowGridLines : true,
1911
1911
 
1912
1912
  //String - Colour of the grid lines
1913
- scaleGridLineColor : "rgba(0,0,0,.05)",
1913
+ scaleGridLineColor : "rgba(225,232,237,1)",
1914
1914
 
1915
1915
  //Number - Width of the grid lines
1916
1916
  scaleGridLineWidth : 1,
@@ -2387,7 +2387,7 @@
2387
2387
  scaleShowGridLines : true,
2388
2388
 
2389
2389
  //String - Colour of the grid lines
2390
- scaleGridLineColor : "rgba(0,0,0,.05)",
2390
+ scaleGridLineColor : "rgba(225,232,237,1)",
2391
2391
 
2392
2392
  //Number - Width of the grid lines
2393
2393
  scaleGridLineWidth : 1,
@@ -2992,7 +2992,7 @@
2992
2992
  scaleBeginAtZero : true,
2993
2993
 
2994
2994
  //String - Colour of the angle line
2995
- angleLineColor : "rgba(0,0,0,.1)",
2995
+ angleLineColor : "rgba(225,232,237,1)",
2996
2996
 
2997
2997
  //Number - Pixel width of the angle line
2998
2998
  angleLineWidth : 1,
@@ -3007,7 +3007,7 @@
3007
3007
  pointLabelFontSize : 11,
3008
3008
 
3009
3009
  //String - Point label font colour
3010
- pointLabelFontColor : "rgba(158,171,179,1)",
3010
+ pointLabelFontColor : "rgba(136,153,166,1)",
3011
3011
 
3012
3012
  //Boolean - Whether to show a dot for each point
3013
3013
  pointDot : true,
@@ -4,7 +4,7 @@
4
4
  ************************************/
5
5
 
6
6
  var moment,
7
- VERSION = '2.8.2',
7
+ VERSION = '2.8.3',
8
8
  // the global-scope this is NOT the global object in Node.js
9
9
  globalScope = typeof global !== 'undefined' ? global : this,
10
10
  oldGlobalMoment,
@@ -1487,6 +1487,9 @@
1487
1487
  for (i = 0; i < config._f.length; i++) {
1488
1488
  currentScore = 0;
1489
1489
  tempConfig = copyConfig({}, config);
1490
+ if (config._useUTC != null) {
1491
+ tempConfig._useUTC = config._useUTC;
1492
+ }
1490
1493
  tempConfig._pf = defaultParsingFlags();
1491
1494
  tempConfig._f = config._f[i];
1492
1495
  makeDateFromStringAndFormat(tempConfig);
@@ -1551,6 +1554,14 @@
1551
1554
  }
1552
1555
  }
1553
1556
 
1557
+ function map(arr, fn) {
1558
+ var res = [], i;
1559
+ for (i = 0; i < arr.length; ++i) {
1560
+ res.push(fn(arr[i], i));
1561
+ }
1562
+ return res;
1563
+ }
1564
+
1554
1565
  function makeDateFromInput(config) {
1555
1566
  var input = config._i, matched;
1556
1567
  if (input === undefined) {
@@ -1562,7 +1573,9 @@
1562
1573
  } else if (typeof input === 'string') {
1563
1574
  makeDateFromString(config);
1564
1575
  } else if (isArray(input)) {
1565
- config._a = input.slice(0);
1576
+ config._a = map(input.slice(0), function (obj) {
1577
+ return parseInt(obj, 10);
1578
+ });
1566
1579
  dateFromConfig(config);
1567
1580
  } else if (typeof(input) === 'object') {
1568
1581
  dateFromObject(config);
@@ -2117,7 +2130,7 @@
2117
2130
  this._isUTC = false;
2118
2131
 
2119
2132
  if (keepLocalTime) {
2120
- this.add(this._d.getTimezoneOffset(), 'm');
2133
+ this.add(this._dateTzOffset(), 'm');
2121
2134
  }
2122
2135
  }
2123
2136
  return this;
@@ -2135,7 +2148,7 @@
2135
2148
  diff : function (input, units, asFloat) {
2136
2149
  var that = makeAs(input, this),
2137
2150
  zoneDiff = (this.zone() - that.zone()) * 6e4,
2138
- diff, output;
2151
+ diff, output, daysAdjust;
2139
2152
 
2140
2153
  units = normalizeUnits(units);
2141
2154
 
@@ -2146,11 +2159,12 @@
2146
2159
  output = ((this.year() - that.year()) * 12) + (this.month() - that.month());
2147
2160
  // adjust by taking difference in days, average number of days
2148
2161
  // and dst in the given months.
2149
- output += ((this - moment(this).startOf('month')) -
2150
- (that - moment(that).startOf('month'))) / diff;
2162
+ daysAdjust = (this - moment(this).startOf('month')) -
2163
+ (that - moment(that).startOf('month'));
2151
2164
  // same as above but with zones, to negate all dst
2152
- output -= ((this.zone() - moment(this).startOf('month').zone()) -
2153
- (that.zone() - moment(that).startOf('month').zone())) * 6e4 / diff;
2165
+ daysAdjust -= ((this.zone() - moment(this).startOf('month').zone()) -
2166
+ (that.zone() - moment(that).startOf('month').zone())) * 6e4;
2167
+ output += daysAdjust / diff;
2154
2168
  if (units === 'year') {
2155
2169
  output = output / 12;
2156
2170
  }
@@ -2259,18 +2273,33 @@
2259
2273
  },
2260
2274
 
2261
2275
  isAfter: function (input, units) {
2262
- units = typeof units !== 'undefined' ? units : 'millisecond';
2263
- return +this.clone().startOf(units) > +moment(input).startOf(units);
2276
+ units = normalizeUnits(typeof units !== 'undefined' ? units : 'millisecond');
2277
+ if (units === 'millisecond') {
2278
+ input = moment.isMoment(input) ? input : moment(input);
2279
+ return +this > +input;
2280
+ } else {
2281
+ return +this.clone().startOf(units) > +moment(input).startOf(units);
2282
+ }
2264
2283
  },
2265
2284
 
2266
2285
  isBefore: function (input, units) {
2267
- units = typeof units !== 'undefined' ? units : 'millisecond';
2268
- return +this.clone().startOf(units) < +moment(input).startOf(units);
2286
+ units = normalizeUnits(typeof units !== 'undefined' ? units : 'millisecond');
2287
+ if (units === 'millisecond') {
2288
+ input = moment.isMoment(input) ? input : moment(input);
2289
+ return +this < +input;
2290
+ } else {
2291
+ return +this.clone().startOf(units) < +moment(input).startOf(units);
2292
+ }
2269
2293
  },
2270
2294
 
2271
2295
  isSame: function (input, units) {
2272
- units = units || 'ms';
2273
- return +this.clone().startOf(units) === +makeAs(input, this).startOf(units);
2296
+ units = normalizeUnits(units || 'millisecond');
2297
+ if (units === 'millisecond') {
2298
+ input = moment.isMoment(input) ? input : moment(input);
2299
+ return +this === +input;
2300
+ } else {
2301
+ return +this.clone().startOf(units) === +makeAs(input, this).startOf(units);
2302
+ }
2274
2303
  },
2275
2304
 
2276
2305
  min: deprecate(
@@ -2310,7 +2339,7 @@
2310
2339
  input = input * 60;
2311
2340
  }
2312
2341
  if (!this._isUTC && keepLocalTime) {
2313
- localAdjust = this._d.getTimezoneOffset();
2342
+ localAdjust = this._dateTzOffset();
2314
2343
  }
2315
2344
  this._offset = input;
2316
2345
  this._isUTC = true;
@@ -2328,7 +2357,7 @@
2328
2357
  }
2329
2358
  }
2330
2359
  } else {
2331
- return this._isUTC ? offset : this._d.getTimezoneOffset();
2360
+ return this._isUTC ? offset : this._dateTzOffset();
2332
2361
  }
2333
2362
  return this;
2334
2363
  },
@@ -2432,10 +2461,15 @@
2432
2461
  // instance. Otherwise, it will return the locale configuration
2433
2462
  // variables for this instance.
2434
2463
  locale : function (key) {
2464
+ var newLocaleData;
2465
+
2435
2466
  if (key === undefined) {
2436
2467
  return this._locale._abbr;
2437
2468
  } else {
2438
- this._locale = moment.localeData(key);
2469
+ newLocaleData = moment.localeData(key);
2470
+ if (newLocaleData != null) {
2471
+ this._locale = newLocaleData;
2472
+ }
2439
2473
  return this;
2440
2474
  }
2441
2475
  },
@@ -2446,14 +2480,19 @@
2446
2480
  if (key === undefined) {
2447
2481
  return this.localeData();
2448
2482
  } else {
2449
- this._locale = moment.localeData(key);
2450
- return this;
2483
+ return this.locale(key);
2451
2484
  }
2452
2485
  }
2453
2486
  ),
2454
2487
 
2455
2488
  localeData : function () {
2456
2489
  return this._locale;
2490
+ },
2491
+
2492
+ _dateTzOffset : function () {
2493
+ // On Firefox.24 Date#getTimezoneOffset returns a floating point.
2494
+ // https://github.com/moment/moment/pull/1871
2495
+ return Math.round(this._d.getTimezoneOffset() / 15) * 15;
2457
2496
  }
2458
2497
  });
2459
2498
 
@@ -2651,19 +2690,21 @@
2651
2690
  var days, months;
2652
2691
  units = normalizeUnits(units);
2653
2692
 
2654
- days = this._days + this._milliseconds / 864e5;
2655
2693
  if (units === 'month' || units === 'year') {
2694
+ days = this._days + this._milliseconds / 864e5;
2656
2695
  months = this._months + daysToYears(days) * 12;
2657
2696
  return units === 'month' ? months : months / 12;
2658
2697
  } else {
2659
- days += yearsToDays(this._months / 12);
2698
+ // handle milliseconds separately because of floating point math errors (issue #1867)
2699
+ days = this._days + yearsToDays(this._months / 12);
2660
2700
  switch (units) {
2661
- case 'week': return days / 7;
2662
- case 'day': return days;
2663
- case 'hour': return days * 24;
2664
- case 'minute': return days * 24 * 60;
2665
- case 'second': return days * 24 * 60 * 60;
2666
- case 'millisecond': return days * 24 * 60 * 60 * 1000;
2701
+ case 'week': return days / 7 + this._milliseconds / 6048e5;
2702
+ case 'day': return days + this._milliseconds / 864e5;
2703
+ case 'hour': return days * 24 + this._milliseconds / 36e5;
2704
+ case 'minute': return days * 24 * 60 + this._milliseconds / 6e4;
2705
+ case 'second': return days * 24 * 60 * 60 + this._milliseconds / 1000;
2706
+ // Math.floor prevents floating point math errors here
2707
+ case 'millisecond': return Math.floor(days * 24 * 60 * 60 * 1000) + this._milliseconds;
2667
2708
  default: throw new Error('Unknown unit ' + units);
2668
2709
  }
2669
2710
  }
@@ -60,7 +60,7 @@
60
60
  }
61
61
  .aside-header {
62
62
  background: rgba(255,255,255,1);
63
- border-bottom: 1px solid rgba(217,222,225,1);
63
+ border-bottom: 1px solid rgba(225,232,237,1);
64
64
  padding: 21px 0px 18px 0px;
65
65
  margin: 0;
66
66
  position: absolute;
@@ -89,7 +89,7 @@
89
89
  .aside-body p:last-child { margin-bottom: 0; }
90
90
  .aside-footer {
91
91
  background: rgba(255,255,255,1);
92
- border-top: 1px solid rgba(227,232,235,1);
92
+ border-top: 1px solid rgba(225,232,237,1);
93
93
  bottom: 0;
94
94
  margin-bottom: 0;
95
95
  padding: 0;
@@ -106,7 +106,7 @@ input[type="submit"].aside-footer-btn {
106
106
  border-radius: 0;
107
107
  -moz-box-sizing: border-box;
108
108
  box-sizing: border-box;
109
- color: rgba(0,153,255,1);
109
+ color: rgba(15,135,226,1);
110
110
  cursor: pointer;
111
111
  float: left;
112
112
  font-size: 13px;
@@ -124,12 +124,12 @@ input[type="submit"].aside-footer-btn {
124
124
  }
125
125
  .aside-footer-btn[disabled],
126
126
  input[type="submit"].aside-footer-btn[disabled] {
127
- color: rgba(158,171,179,1);
127
+ color: rgba(136,153,166,1);
128
128
  cursor: not-allowed;
129
129
  }
130
130
  .aside-footer-dual > .aside-footer-btn,
131
131
  .aside-footer-dual > input[type="submit"].aside-footer-btn {
132
- border-right: 1px solid rgba(217,222,225,1);
132
+ border-right: 1px solid rgba(225,232,237,1);
133
133
  width: 50%;
134
134
  }
135
135
  .aside-footer-dual > .aside-footer-btn:last-child,
@@ -138,10 +138,10 @@ input[type="submit"].aside-footer-btn[disabled] {
138
138
  /* #Media Queries
139
139
  ================================================== */
140
140
  @media only screen and (max-width: 767px) {
141
- .aside { width: 300px; }
141
+ .aside { width: 300px; }
142
142
  .aside-body { width: 264px; }
143
143
  }
144
144
  @media only screen and (min-width: 480px) and (max-width: 767px) {
145
- .aside { width: 460px; }
145
+ .aside { width: 460px; }
146
146
  .aside-body { width: 424px; }
147
147
  }
@@ -29,7 +29,7 @@
29
29
  /* #Calendar Header
30
30
  ================================================== */
31
31
  .calendar-header {
32
- background: rgba(58,144,216,1);
32
+ background: rgba(15,135,226,1);
33
33
  border-top-right-radius: 3px;
34
34
  border-top-left-radius: 3px;
35
35
  }
@@ -78,11 +78,11 @@
78
78
  /* #Calendar Cell Style
79
79
  ================================================== */
80
80
  .calendar-widget-header,
81
- .calendar-widget-content { border: 1px solid rgba(217,222,225,1); }
82
- .calendar-state-highlight { background: rgba(58,144,216,0.10); }
81
+ .calendar-widget-content { border: 1px solid rgba(225,232,237,1); }
82
+ .calendar-state-highlight { background: rgba(15,135,226,0.10); }
83
83
  .calendar-state-highlight .calendar-day-number { font-weight: 500; }
84
84
  .calendar-cell-overlay {
85
- background: rgba(58,144,216,1);
85
+ background: rgba(15,135,226,1);
86
86
  opacity: 0.3;
87
87
  filter: alpha(opacity=30);
88
88
  }
@@ -140,8 +140,8 @@
140
140
  .calendar-event-container > .ui-draggable-dragging,
141
141
  .calendar-event-container > .ui-resizable-resizing { z-index: 9; }
142
142
  .calendar-event {
143
- background: rgba(236,238,241,1);
144
- border: 1px solid rgba(217,222,225,1);
143
+ background: rgba(245,248,250,1);
144
+ border: 1px solid rgba(225,232,237,1);
145
145
  border-radius: 2px;
146
146
  color: rgba(71,74,84,1);
147
147
  cursor: pointer;
@@ -217,7 +217,7 @@ table.calendar-border-separate { border-collapse: separat
217
217
  /* #Calendar Month View, Basic Week View, Basic Day View
218
218
  ================================================== */
219
219
  .calendar-grid th {
220
- background: rgba(236,238,241,1);
220
+ background: rgba(245,248,250,1);
221
221
  color: rgba(71,74,84,1);
222
222
  font-size: 11px;
223
223
  font-weight: bold;
@@ -246,7 +246,7 @@ table.calendar-border-separate { border-collapse: separat
246
246
  padding: 2px; /* distance between events and day edges */
247
247
  }
248
248
  .calendar-grid .calendar-event-time {
249
- color: rgba(58,144,216,1);
249
+ color: rgba(15,135,226,1);
250
250
  margin-right: 5px;
251
251
  }
252
252
  .calendar-rtl .calendar-grid .calendar-day-number { float: left; }
@@ -256,7 +256,7 @@ table.calendar-border-separate { border-collapse: separat
256
256
  ================================================== */
257
257
  .calendar-agenda table { border-collapse: separate; }
258
258
  .calendar-agenda-days th {
259
- background: rgba(236,238,241,1);
259
+ background: rgba(245,248,250,1);
260
260
  color: rgba(71,74,84,1);
261
261
  font-size: 11px;
262
262
  font-weight: bold;
@@ -285,7 +285,7 @@ table.calendar-border-separate { border-collapse: separat
285
285
  height: 34px;
286
286
  }
287
287
  .calendar-agenda-divider-inner {
288
- background: rgba(236,238,241,1);
288
+ background: rgba(245,248,250,1);
289
289
  height: 2px;
290
290
  overflow: hidden;
291
291
  }
@@ -315,7 +315,7 @@ table.calendar-border-separate { border-collapse: separat
315
315
  border-bottom-width: 1px;
316
316
  }
317
317
  .calendar-event-vert .calendar-event-time {
318
- color: rgba(58,144,216,1);
318
+ color: rgba(15,135,226,1);
319
319
  font-size: 11px;
320
320
  white-space: nowrap;
321
321
  }
@@ -330,7 +330,7 @@ table.calendar-border-separate { border-collapse: separat
330
330
  left: 0;
331
331
  width: 100%;
332
332
  height: 100%;
333
- background: rgba(236,238,241,1);
333
+ background: rgba(245,248,250,1);
334
334
  opacity: .25;
335
335
  filter: alpha(opacity=25);
336
336
  }
@@ -19,11 +19,11 @@
19
19
 
20
20
  /* #Editor
21
21
  ================================================== */
22
- .editor-canvas { border: 1px solid rgba(217,222,225,1); }
22
+ .editor-canvas { border: 1px solid rgba(225,232,237,1); }
23
23
  .editor-canvas .dropdown-menu { min-width: 90px; }
24
24
  .editor-canvas .dropdown-menu li a.checked i { visibility: visible; }
25
25
  .editor-canvas .dropdown-menu li a i {
26
- color: rgba(122,179,23,1);
26
+ color: rgba(112,169,13,1);
27
27
  visibility: hidden;
28
28
  }
29
29
  .editor-canvas .editor-editable {
@@ -31,7 +31,7 @@
31
31
  outline: 0;
32
32
  padding: 10px;
33
33
  }
34
- .editor-canvas .editor-editable a { color: rgba(58,144,216,1); }
34
+ .editor-canvas .editor-editable a { color: rgba(15,135,226,1); }
35
35
 
36
36
  /* #Editor Dialog
37
37
  ================================================== */
@@ -40,9 +40,9 @@
40
40
  /* #Editor Dropzone
41
41
  ================================================== */
42
42
  .editor-dropzone {
43
- color: rgba(158,171,179,1);
43
+ color: rgba(136,153,166,1);
44
44
  background: rgba(255,255,255,1);
45
- border: 2px dashed rgba(158,171,179,1);
45
+ border: 2px dashed rgba(136,153,166,1);
46
46
  display: none;
47
47
  min-height: 100px;
48
48
  opacity: 0.95;
@@ -51,8 +51,8 @@
51
51
  z-index: 1;
52
52
  }
53
53
  .editor-dropzone.hover {
54
- border-color: rgba(58,144,216,1);
55
- color: rgba(58,144,216,1);
54
+ border-color: rgba(15,135,226,1);
55
+ color: rgba(15,135,226,1);
56
56
  }
57
57
  .editor-dropzone .editor-dropzone-message {
58
58
  display: table-cell;
@@ -66,7 +66,7 @@
66
66
  /* #Editor Handle
67
67
  ================================================== */
68
68
  .editor-canvas .editor-handle .editor-control-selection {
69
- border: 1px solid rgba(217,222,225,1);
69
+ border: 1px solid rgba(225,232,237,1);
70
70
  display: none;
71
71
  position: absolute;
72
72
  }
@@ -146,7 +146,7 @@
146
146
  text-align: left;
147
147
  }
148
148
  .editor-help-dialog .editor-shortcut td:first-child {
149
- color: rgba(58,144,216,1);
149
+ color: rgba(15,135,226,1);
150
150
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
151
151
  font-size: 11px;
152
152
  line-height: 18px;
@@ -162,7 +162,7 @@
162
162
  .editor-popover .popover .popover-content { padding: 5px; }
163
163
  .editor-popover .popover .popover-content .btn-group + .btn-group { margin-left: 5px; }
164
164
  .editor-popover .popover .popover-content a {
165
- color: rgba(58,144,216,1);
165
+ color: rgba(15,135,226,1);
166
166
  display: inline-block;
167
167
  max-width: 200px;
168
168
  overflow: hidden;
@@ -215,7 +215,7 @@
215
215
  text-align: center;
216
216
  }
217
217
  .editor-color-reset:hover {
218
- background: rgba(58,144,216,1);
218
+ background: rgba(15,135,226,1);
219
219
  color: rgba(255,255,255,1)
220
220
  }
221
221
  .editor-color .dropdown-toggle {
@@ -230,9 +230,9 @@
230
230
 
231
231
  /* #Editor Statusbar
232
232
  ================================================== */
233
- .editor-canvas .editor-statusbar { background: rgba(236,238,241,1); }
233
+ .editor-canvas .editor-statusbar { background: rgba(245,248,250,1); }
234
234
  .editor-canvas .editor-statusbar .editor-resizebar {
235
- border-top: 1px solid rgba(217,222,225,1);
235
+ border-top: 1px solid rgba(225,232,237,1);
236
236
  cursor: s-resize;
237
237
  height: 10px;
238
238
  width: 100%;
@@ -264,8 +264,8 @@
264
264
  /* #Editor Toolbar
265
265
  ================================================== */
266
266
  .editor-toolbar {
267
- background: rgba(236,238,241,1);
268
- border-bottom: 1px solid rgba(217,222,225,1);
267
+ background: rgba(245,248,250,1);
268
+ border-bottom: 1px solid rgba(225,232,237,1);
269
269
  margin: 0;
270
270
  padding: 1px 0;
271
271
  }
@@ -332,7 +332,7 @@
332
332
  .editor-style a:hover h4,
333
333
  .editor-style a:hover h5,
334
334
  .editor-style a:hover h6 {
335
- color: rgba(58,144,216,1);
335
+ color: rgba(15,135,226,1);
336
336
  -webkit-transition: all 0.3s ease-in-out;
337
337
  transition: all 0.3s ease-in-out;
338
338
  text-decoration: none;
@@ -4,5 +4,5 @@
4
4
 
5
5
  /* #Typeahead
6
6
  ================================================== */
7
- .typeahead { z-index: 1051; }
8
- .typeahead b { color: rgba(122,179,23,1); }
7
+ .typeahead { z-index: 1051; }
8
+ .typeahead b { color: rgba(112,169,13,1); }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flashgrid-ext
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
4
+ version: 3.0.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-09-02 00:00:00.000000000 Z
11
+ date: 2014-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler