flashgrid 1.0.20 → 1.0.21

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.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/lib/flashgrid/version.rb +1 -1
  3. data/vendor/assets/javascripts/affix.js +2 -4
  4. data/vendor/assets/javascripts/collapse.js +6 -4
  5. data/vendor/assets/javascripts/dropdown.js +7 -7
  6. data/vendor/assets/javascripts/map.js +39 -25
  7. data/vendor/assets/javascripts/modal.js +35 -12
  8. data/vendor/assets/javascripts/popover.js +1 -1
  9. data/vendor/assets/javascripts/tooltip.js +64 -40
  10. data/vendor/assets/javascripts/transition.js +4 -4
  11. data/vendor/assets/stylesheets/ad.css.scss +1 -1
  12. data/vendor/assets/stylesheets/affix.css.scss +5 -1
  13. data/vendor/assets/stylesheets/alert.css.scss +5 -5
  14. data/vendor/assets/stylesheets/breadcrumb.css.scss +1 -1
  15. data/vendor/assets/stylesheets/button.css.scss +58 -11
  16. data/vendor/assets/stylesheets/code.css.scss +3 -3
  17. data/vendor/assets/stylesheets/datepicker.css.scss +5 -5
  18. data/vendor/assets/stylesheets/dropdown.css.scss +2 -2
  19. data/vendor/assets/stylesheets/form.css.scss +6 -6
  20. data/vendor/assets/stylesheets/header.css.scss +2 -2
  21. data/vendor/assets/stylesheets/image.css.scss +1 -1
  22. data/vendor/assets/stylesheets/label_and_badge.css.scss +4 -4
  23. data/vendor/assets/stylesheets/map.css.scss +1 -1
  24. data/vendor/assets/stylesheets/modal.css.scss +3 -3
  25. data/vendor/assets/stylesheets/pagination.css.scss +3 -3
  26. data/vendor/assets/stylesheets/panel.css.scss +3 -3
  27. data/vendor/assets/stylesheets/placeholder.css.scss +1 -1
  28. data/vendor/assets/stylesheets/popover.css.scss +5 -4
  29. data/vendor/assets/stylesheets/progress.css.scss +2 -2
  30. data/vendor/assets/stylesheets/tab.css.scss +12 -12
  31. data/vendor/assets/stylesheets/table.css.scss +5 -5
  32. data/vendor/assets/stylesheets/tooltip.css.scss +2 -1
  33. data/vendor/assets/stylesheets/trunk.css.scss +4 -4
  34. data/vendor/assets/stylesheets/typography.css.scss +5 -1
  35. metadata +2 -2
@@ -5,7 +5,7 @@
5
5
  /* #Panel
6
6
  ================================================== */
7
7
  .panel {
8
- background-color: rgba(255,255,255,1);
8
+ background: rgba(255,255,255,1);
9
9
  border: 1px solid rgba(217,222,225,1);
10
10
  border-radius: 3px;
11
11
  margin-bottom: 20px;
@@ -120,7 +120,7 @@
120
120
  margin-bottom: 0;
121
121
  }
122
122
  .panel-header {
123
- background-color: rgba(236,238,241,1);
123
+ background: rgba(236,238,241,1);
124
124
  border-bottom: 1px solid rgba(217,222,225,1);
125
125
  border-top-right-radius: 3px;
126
126
  border-top-left-radius: 3px;
@@ -139,7 +139,7 @@
139
139
  .panel-title > a { color: rgba(71,74,84,1); }
140
140
  .panel-title > a:hover { color: rgba(58,144,216,1); }
141
141
  .panel-footer {
142
- background-color: rgba(236,238,241,1);
142
+ background: rgba(236,238,241,1);
143
143
  border-top: 1px solid rgba(217,222,225,1);
144
144
  border-bottom-right-radius: 3px;
145
145
  border-bottom-left-radius: 3px;
@@ -14,7 +14,7 @@
14
14
  padding: 20px 31px;
15
15
  }
16
16
  .placeholder-divider {
17
- background-color: rgba(236,238,241,1);
17
+ background: rgba(236,238,241,1);
18
18
  border-radius: 500px;
19
19
  height: 8px;
20
20
  margin: 20px auto;
@@ -6,7 +6,7 @@
6
6
  ================================================== */
7
7
  .popover {
8
8
  background-clip: padding-box;
9
- background-color: rgba(255,255,255,1);
9
+ background: rgba(255,255,255,1);
10
10
  border: 1px solid rgba(217,222,225,1);
11
11
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
12
12
  display: none;
@@ -14,7 +14,8 @@
14
14
  font-style: normal;
15
15
  letter-spacing: 0;
16
16
  left: 0;
17
- width: 276px;
17
+ max-width: 276px;
18
+ min-width: 236px;
18
19
  position: absolute;
19
20
  text-align: left;
20
21
  text-decoration: none;
@@ -28,7 +29,7 @@
28
29
  .popover.bottom { margin-top: 10px; }
29
30
  .popover.left { margin-left: -10px; }
30
31
  .popover-title {
31
- background-color: rgba(236,238,241,1);
32
+ background: rgba(236,238,241,1);
32
33
  border-bottom: 1px solid rgba(217,222,225,1);
33
34
  color: rgba(71,74,84,1);
34
35
  font-size: 14px;
@@ -40,7 +41,7 @@
40
41
  }
41
42
  .popover-title:empty { display: none; }
42
43
  .popover-content {
43
- background-color: rgba(255,255,255,1);
44
+ background: rgba(255,255,255,1);
44
45
  color: rgba(43,50,53,1);
45
46
  font-family: 'Gotham', 'Helvetica', Helvetica, Arial, sans-serif;
46
47
  font-size: 14px;
@@ -5,13 +5,13 @@
5
5
  /* #Progress
6
6
  ================================================== */
7
7
  .progress {
8
- background-color: rgba(236,238,241,1);
8
+ background: rgba(236,238,241,1);
9
9
  border-radius: 500px;
10
10
  height: 25px;
11
11
  overflow: hidden;
12
12
  }
13
13
  .progress .bar {
14
- background-color: rgba(79,148,210,1);
14
+ background: rgba(79,148,210,1);
15
15
  box-sizing: border-box;
16
16
  color: rgba(255,255,255,1);
17
17
  float: left;
@@ -25,7 +25,7 @@
25
25
  text-decoration: none;
26
26
  }
27
27
  .nav-header {
28
- background-color: rgba(58,144,216,1);
28
+ background: rgba(58,144,216,1);
29
29
  border-top-left-radius: 3px;
30
30
  border-top-right-radius: 3px;
31
31
  color: rgba(255,255,255,1);
@@ -51,15 +51,15 @@
51
51
  padding: 11px 15px 11px 15px;
52
52
  font-weight: bold;
53
53
  }
54
- .nav-list > li > a:hover { background-color: rgba(236,238,241,1); }
54
+ .nav-list > li > a:hover { background: rgba(236,238,241,1); }
55
55
  .nav-list > .active > a,
56
56
  .nav-list > .active > a:hover,
57
57
  .nav-list > .active > a:focus {
58
- background-color: rgba(246,247,249,1);
58
+ background: rgba(246,247,249,1);
59
59
  color: rgba(71,74,84,1);
60
60
  }
61
61
  .nav-list .divider {
62
- background-color: rgba(236,238,241,1);
62
+ background: rgba(236,238,241,1);
63
63
  height: 1px;
64
64
  margin: 10px 0 10px 0;
65
65
  overflow: hidden;
@@ -88,26 +88,26 @@
88
88
  color: rgba(58,144,216,1);
89
89
  border-bottom-color: rgba(236,238,241,1);
90
90
  }
91
- .nav-tabs .open a.dropdown-toggle { background-color: transparent; }
91
+ .nav-tabs .open a.dropdown-toggle { background: transparent; }
92
92
  .nav-pills > li > a {
93
- background-color: rgba(246,247,249,1);
93
+ background: rgba(246,247,249,1);
94
94
  border-radius: 2px;
95
95
  color: rgba(158,171,179,1);
96
96
  margin-right: 3px;
97
97
  padding: 9px 10px 9px 10px;
98
98
  }
99
- .nav-pills > li > a:hover { background-color: rgba(236,238,241,1); }
99
+ .nav-pills > li > a:hover { background: rgba(236,238,241,1); }
100
100
  .nav-pills > .active > a,
101
101
  .nav-pills > .active > a:hover,
102
102
  .nav-pills > .active > a:focus {
103
- background-color: rgba(58,144,216,1);
103
+ background: rgba(58,144,216,1);
104
104
  color: rgba(255,255,255,1);
105
105
  }
106
106
  .nav-stacked > li { float: none; }
107
107
  .nav-stacked > li > a { margin-right: 0; }
108
108
  .nav-tabs.nav-stacked { border-bottom: 0; }
109
109
  .nav-tabs.nav-stacked > li > a {
110
- background-color: rgba(246,247,249,1);
110
+ background: rgba(246,247,249,1);
111
111
  color: rgba(158,171,179,1);
112
112
  padding: 10px 10px 8px 10px;
113
113
  }
@@ -121,14 +121,14 @@
121
121
  }
122
122
  .nav-tabs.nav-stacked > li > a:hover,
123
123
  .nav-tabs.nav-stacked > li > a:focus {
124
- background-color: rgba(236,238,241,1);
124
+ background: rgba(236,238,241,1);
125
125
  color: rgba(71,74,84,1);
126
126
  z-index: 2;
127
127
  }
128
128
  .nav-tabs.nav-stacked > .active > a,
129
129
  .nav-tabs.nav-stacked > .active > a:hover,
130
130
  .nav-tabs.nav-stacked > .active > a:focus {
131
- background-color: rgba(58,144,216,1);
131
+ background: rgba(58,144,216,1);
132
132
  color: rgba(255,255,255,1);
133
133
  border-bottom: 0;
134
134
  padding: 10px 10px 10px 10px;
@@ -142,7 +142,7 @@
142
142
  .nav-pills .open .dropdown-toggle,
143
143
  .nav > li.dropdown.open.active > a:hover,
144
144
  .nav > li.dropdown.open.active > a:focus {
145
- background-color: rgba(236,238,241,1);
145
+ background: rgba(236,238,241,1);
146
146
  color: rgba(71,74,84,1);
147
147
  }
148
148
  .tabbable { *zoom: 1; }
@@ -6,7 +6,7 @@
6
6
  /* #Table
7
7
  ================================================== */
8
8
  table {
9
- background-color: transparent;
9
+ background: transparent;
10
10
  border-collapse: collapse;
11
11
  border-spacing: 0;
12
12
  max-width: 100%;
@@ -22,7 +22,7 @@ table {
22
22
  vertical-align: top;
23
23
  }
24
24
  .table th {
25
- background-color: rgba(236,238,241,1);
25
+ background: rgba(236,238,241,1);
26
26
  color: rgba(71,74,84,1);
27
27
  font-size: 14px;
28
28
  font-weight: bold;
@@ -37,7 +37,7 @@ table {
37
37
  .table thead:first-child tr:first-child th,
38
38
  .table thead:first-child tr:first-child td { border-top: 0; }
39
39
  .table tbody + tbody { border-top: 2px solid rgba(217,222,225,1); }
40
- .table .table { background-color: rgba(255,255,255,1); }
40
+ .table .table { background: rgba(255,255,255,1); }
41
41
  .table-condensed th,
42
42
  .table-condensed td {
43
43
  font-size: 14px;
@@ -64,9 +64,9 @@ table {
64
64
  .table-bordered tbody:first-child tr:first-child th,
65
65
  .table-bordered tbody:first-child tr:first-child td { border-top: 0; }
66
66
  .table-striped tbody > tr:nth-child(odd) > td,
67
- .table-striped tbody > tr:nth-child(odd) > th { background-color: rgba(246,247,249,1); }
67
+ .table-striped tbody > tr:nth-child(odd) > th { background: rgba(246,247,249,1); }
68
68
  .table-hover tbody tr:hover > td,
69
- .table-hover tbody tr:hover > th { background-color: rgba(240,241,244,1); }
69
+ .table-hover tbody tr:hover > th { background: rgba(240,241,244,1); }
70
70
  .table-unbordered,
71
71
  .table-unbordered thead,
72
72
  .table-unbordered tbody,
@@ -43,9 +43,10 @@
43
43
  padding: 0 5px;
44
44
  }
45
45
  .tooltip-inner {
46
- background-color: rgba(71,74,84,1);
46
+ background: rgba(71,74,84,1);
47
47
  border-radius: 3px;
48
48
  color: rgba(255,255,255,1);
49
+ display: block;
49
50
  letter-spacing: 0;
50
51
  max-width: 200px;
51
52
  padding: 5px 10px;
@@ -6,13 +6,13 @@
6
6
  /* #Trunk
7
7
  ================================================== */
8
8
  .trunk {
9
- background-color: rgba(58,144,216,1);
9
+ background: rgba(58,144,216,1);
10
10
  margin: -40px 0 40px 0;
11
11
  width: 100%;
12
12
  }
13
13
  .trunk-buffer { padding: 30px 0; }
14
14
  .trunk-search input {
15
- background-color: transparent;
15
+ background: transparent;
16
16
  border-color: rgba(255,255,255,0.25);
17
17
  color: rgba(255,255,255,1);
18
18
  font-weight: 200;
@@ -31,7 +31,7 @@
31
31
  padding: 12px 15px 10px 0;
32
32
  }
33
33
  .trunk-nav a:hover {
34
- background-color: rgba(0,0,0,0.075);
34
+ background: rgba(0,0,0,0.075);
35
35
  color: rgba(255,255,255,1);
36
36
  padding-left: 15px;
37
37
  }
@@ -55,7 +55,7 @@
55
55
  text-align: center;
56
56
  }
57
57
  .trunk-account li a:hover {
58
- background-color: rgba(0,0,0,0.075);
58
+ background: rgba(0,0,0,0.075);
59
59
  color: rgba(255,255,255,1);
60
60
  }
61
61
 
@@ -9,6 +9,7 @@
9
9
  #Decorations
10
10
  #Transforms
11
11
  #Weights
12
+ #Modifiers
12
13
  #Displays */
13
14
 
14
15
  /* #Font-Face
@@ -110,7 +111,6 @@ p.small {
110
111
  font-size: 14px;
111
112
  line-height: 22px;
112
113
  }
113
- p.whitespaced { white-space: pre-wrap; }
114
114
  p img { margin: 0; }
115
115
  small {
116
116
  font-size: 11px;
@@ -178,6 +178,10 @@ blockquote small { color: rgba(158,171,179,1); }
178
178
  .text-medium { font-weight: 500; }
179
179
  .text-bold { font-weight: bold; }
180
180
 
181
+ /* #Modifiers
182
+ ================================================== */
183
+ .text-whitespaced { white-space: pre-wrap; }
184
+
181
185
  /* #Displays
182
186
  ================================================== */
183
187
  .display-block { display: block; }
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: 1.0.20
4
+ version: 1.0.21
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-03-21 00:00:00.000000000 Z
11
+ date: 2014-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler