table_beet 0.0.1 → 0.0.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.
Files changed (33) hide show
  1. data/README.md +1 -1
  2. data/lib/table_beet/formatters/html_template/data/js/jquery.quicksearch.js +181 -0
  3. data/lib/table_beet/formatters/html_template/index.erb +45 -7
  4. data/lib/table_beet/version.rb +1 -1
  5. metadata +5 -32
  6. data/lib/table_beet/formatters/html_template/data/js/coffee/groundwork.coffee +0 -207
  7. data/lib/table_beet/formatters/html_template/data/scss/_buttons.scss +0 -178
  8. data/lib/table_beet/formatters/html_template/data/scss/_callouts.scss +0 -51
  9. data/lib/table_beet/formatters/html_template/data/scss/_font-awesome.scss +0 -534
  10. data/lib/table_beet/formatters/html_template/data/scss/_forms.scss +0 -164
  11. data/lib/table_beet/formatters/html_template/data/scss/_global.scss +0 -31
  12. data/lib/table_beet/formatters/html_template/data/scss/_grid.scss +0 -384
  13. data/lib/table_beet/formatters/html_template/data/scss/_layout.scss +0 -78
  14. data/lib/table_beet/formatters/html_template/data/scss/_messages.scss +0 -59
  15. data/lib/table_beet/formatters/html_template/data/scss/_mixins.scss +0 -197
  16. data/lib/table_beet/formatters/html_template/data/scss/_mobile-reset.scss +0 -11
  17. data/lib/table_beet/formatters/html_template/data/scss/_modals.scss +0 -101
  18. data/lib/table_beet/formatters/html_template/data/scss/_navigation.scss +0 -284
  19. data/lib/table_beet/formatters/html_template/data/scss/_orbit.scss +0 -239
  20. data/lib/table_beet/formatters/html_template/data/scss/_popovers.scss +0 -10
  21. data/lib/table_beet/formatters/html_template/data/scss/_reset.scss +0 -77
  22. data/lib/table_beet/formatters/html_template/data/scss/_responsive.scss +0 -293
  23. data/lib/table_beet/formatters/html_template/data/scss/_social-icons.scss +0 -92
  24. data/lib/table_beet/formatters/html_template/data/scss/_tables.scss +0 -80
  25. data/lib/table_beet/formatters/html_template/data/scss/_tabs.scss +0 -137
  26. data/lib/table_beet/formatters/html_template/data/scss/_tooltips.scss +0 -161
  27. data/lib/table_beet/formatters/html_template/data/scss/_typography.scss +0 -263
  28. data/lib/table_beet/formatters/html_template/data/scss/_ui-elements.scss +0 -10
  29. data/lib/table_beet/formatters/html_template/data/scss/_variables.scss +0 -134
  30. data/lib/table_beet/formatters/html_template/data/scss/_webfonts.scss +0 -19
  31. data/lib/table_beet/formatters/html_template/data/scss/groundwork-ie.scss +0 -64
  32. data/lib/table_beet/formatters/html_template/data/scss/groundwork.scss +0 -37
  33. data/lib/table_beet/formatters/html_template/data/scss/no-svg.scss +0 -69
@@ -1,284 +0,0 @@
1
- // ===================================
2
- // Navigation
3
- // ===================================
4
-
5
-
6
-
7
-
8
- nav {
9
- ul {
10
- display:block;
11
- list-style:none;
12
- margin:0;
13
- padding:0;
14
- li {
15
- display:block;
16
- position:relative;
17
- a, a:visited {
18
- display:block;
19
- width:100%;
20
- word-wrap:break-word;
21
- padding:0.25em 1em;
22
- background:$button-color;
23
- border:1px solid $border-color;
24
- color:$button-text;
25
- font-weight:bold;
26
- font-size:1em;
27
- text-decoration:none;
28
- text-align:center;
29
- cursor:pointer;
30
- line-height:1.5;
31
- @include transition(background-color 0.25s ease-out);
32
- &:hover, &:focus {
33
- background:$button-active;
34
- border:1px solid $border-color;
35
- text-decoration:none;
36
- }
37
- &.active {
38
- &:hover, &:focus {
39
- background:$button-active;
40
- }
41
- }
42
- }
43
- &.menu {
44
- > a {
45
- &:after {
46
- content:'\f0d7'; // \f0c9
47
- display: inline-block;
48
- width: 1.1em;
49
- margin-left:0.25em;
50
- font-family: FontAwesome;
51
- font-weight: normal;
52
- font-style: normal;
53
- font-size:1.1em;
54
- text-decoration: inherit;
55
- -webkit-font-smoothing: antialiased;
56
- line-height: normal;
57
- vertical-align: baseline;
58
- background-image: none;
59
- background-position: 0% 0%;
60
- background-repeat: repeat;
61
- margin-top: 0;
62
- }
63
- }
64
- }
65
- &.on {
66
- a {
67
- border-bottom-right-radius:0 !important;
68
- border-bottom-left-radius:0 !important;
69
- }
70
- ul {
71
- display:block !important;
72
- }
73
- }
74
- &:first-child {
75
- a, a:visited {
76
- @include rounded($radius $radius 0 0);
77
- }
78
- }
79
- &:last-child {
80
- a, a:visited {
81
- @include rounded(0 0 $radius $radius);
82
- }
83
- }
84
- }
85
- ul {
86
- display:none;
87
- position:absolute;
88
- left:100%;
89
- top:-1px;
90
- width:auto;
91
- z-index:99;
92
- li {
93
- a, a:visited {
94
- @include rounded(0 !important);
95
- background:lighten($button-color, 5%);
96
- &:hover, &:active {
97
- background:lighten($button-active, 5%);
98
- }
99
- }
100
- &:first-child {
101
- a, a:visited {
102
- @include rounded(0 $radius 0 0 !important);
103
- }
104
- }
105
- &:last-child {
106
- a, a:visited {
107
- @include rounded(0 0 $radius $radius !important);
108
- }
109
- }
110
- }
111
- }
112
- // horizontal grid navigation
113
- &.row {
114
- li {
115
- a, a:visited {
116
- @include rounded(0);
117
- }
118
- &:first-child {
119
- a, a:visited {
120
- @include rounded($radius 0 0 $radius);
121
- }
122
- }
123
- &:last-child {
124
- a, a:visited {
125
- @include rounded(0 $radius $radius 0);
126
- }
127
- }
128
- }
129
- ul {
130
- display:none;
131
- position:absolute;
132
- left:auto;
133
- top:auto;
134
- min-width:100%;
135
- z-index:99;
136
- li {
137
- a, a:visited {
138
- @include rounded(0 !important);
139
- }
140
- &:last-child {
141
- a, a:visited {
142
- @include rounded(0 0 $radius $radius !important);
143
- }
144
- }
145
- }
146
- }
147
- }
148
- }
149
- // horizontal inline navigation
150
- &.inline {
151
- width:auto;
152
- ul {
153
- font-size:0;
154
- @include rounded($radius);
155
- li {
156
- font-size:$font-size;
157
- display:inline-block;
158
- white-space-collapse:discard;
159
- float:none;
160
- a, a:visited {
161
-
162
- }
163
- &:first-child {
164
- a, a:visited {
165
- @include rounded($radius 0 0 $radius);
166
- }
167
- }
168
- &:last-child {
169
- a, a:visited {
170
- @include rounded(0 $radius $radius 0);
171
- }
172
- }
173
- ul {
174
- display:none;
175
- position:absolute;
176
- left:auto;
177
- top:auto;
178
- min-width:100%;
179
- z-index:99;
180
- li {
181
- display:block;
182
- a, a:visited {
183
- @include rounded(0 !important);
184
- }
185
- &:last-child {
186
- a, a:visited {
187
- @include rounded(0 0 $radius $radius !important);
188
- }
189
- }
190
- }
191
- }
192
- }
193
- }
194
- }
195
- // pagination
196
- &.pagination {
197
- ul {
198
- margin:10px auto;
199
- display:block;
200
- list-style-type:none;
201
- text-align:center;
202
- li {
203
- display:inline-block;
204
- @include rounded(4px);
205
- padding:0 3px 0 2px;
206
- min-width:29px;
207
- text-align:center;
208
- a {
209
- display:block;
210
- font-size:1em;
211
- line-height:1.5;
212
- font-weight:bold;
213
- color:$button-text;
214
- text-decoration:none;
215
- padding:0 3px;
216
- @include rounded(4px);
217
- &:hover, &:focus {
218
- background:$button-active;
219
- color:$button-text;
220
- }
221
- }
222
- &.active {
223
- a {
224
- background:lighten(gray, 15%);
225
- border-color:gray;
226
- color:lighten(gray, 35%);
227
- text-decoration:none;
228
- &:hover, &:focus {
229
- background:lighten(gray, 15%);
230
- border-color:gray;
231
- color:lighten(gray, 35%);
232
- }
233
- }
234
- }
235
- &.prev, &.next {
236
- a {
237
- padding:0 4px;
238
- background:$button-color;
239
- color:#fff;
240
- &:hover, &:focus {
241
- background:$button-active;
242
- }
243
- }
244
- }
245
- &.disabled {
246
- a {
247
- background:lighten(gray, 15%);
248
- border-color:gray;
249
- color:lighten(gray, 35%);
250
- text-decoration:none;
251
- &:hover, &:focus {
252
- background:lighten(gray, 15%);
253
- border-color:gray;
254
- color:lighten(gray, 35%);
255
- }
256
- }
257
- }
258
- &:first-child {
259
- a, a:visited {
260
- @include rounded($radius);
261
- }
262
- }
263
- &:last-child {
264
- a, a:visited {
265
- @include rounded($radius);
266
- }
267
- }
268
- }
269
- }
270
- }
271
- }
272
- .no-js {
273
- nav {
274
- ul {
275
- li.menu {
276
- &:hover, &:focus {
277
- ul {
278
- display:block !important;
279
- }
280
- }
281
- }
282
- }
283
- }
284
- }
@@ -1,239 +0,0 @@
1
- .slider {
2
- display:none;
3
- &.orbit {
4
- display:block;
5
- }
6
- }
7
-
8
- .orbit-wrapper {
9
- width: 1px;
10
- height: 1px;
11
- position: relative;
12
- }
13
-
14
- .orbit {
15
- width: 1px;
16
- height: 1px;
17
- position: relative;
18
- overflow: hidden;
19
- margin-bottom: 17px;
20
- &.with-bullets {
21
- margin-bottom: 40px;
22
- }
23
- .orbit-slide {
24
- max-width: 100%;
25
- position: absolute;
26
- top: 0;
27
- left: 0;
28
- }
29
- a.orbit-slide {
30
- border: none;
31
- line-height: 0;
32
- display: none;
33
- }
34
- div.orbit-slide {
35
- width: 100%;
36
- height: 100%;
37
- filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
38
- opacity: 0;
39
- }
40
- }
41
-
42
- .orbit-wrapper {
43
- .timer {
44
- width: 40px;
45
- height: 40px;
46
- overflow: hidden;
47
- position: absolute;
48
- top: 10px;
49
- right: 10px;
50
- opacity: .6;
51
- cursor: pointer;
52
- z-index: 31;
53
- }
54
- span {
55
- &.rotator {
56
- display: block;
57
- width: 40px;
58
- height: 40px;
59
- position: absolute;
60
- top: 0;
61
- left: -20px;
62
- background: url('../images/orbit/rotator-black.png') no-repeat;
63
- z-index: 3;
64
- &.move {
65
- left: 0;
66
- }
67
- }
68
- &.mask {
69
- display: block;
70
- width: 20px;
71
- height: 40px;
72
- position: absolute;
73
- top: 0;
74
- right: 0;
75
- z-index: 2;
76
- overflow: hidden;
77
- &.move {
78
- width: 40px;
79
- left: 0;
80
- background: url('../images/orbit/timer-black.png') repeat 0 0;
81
- }
82
- }
83
- &.pause {
84
- display: block;
85
- width: 40px;
86
- height: 40px;
87
- position: absolute;
88
- top: 0;
89
- left: 0;
90
- background: url('../images/orbit/pause-black.png') no-repeat;
91
- z-index: 4;
92
- opacity: 0;
93
- &.active {
94
- background: url('../images/orbit/pause-black.png') no-repeat 0 -40px;
95
- }
96
- }
97
- }
98
- .timer {
99
- &:hover span.pause, &:focus span.pause {
100
- opacity: 1;
101
- }
102
- }
103
- span.pause.active {
104
- opacity: 1;
105
- }
106
- }
107
-
108
- .orbit-caption {
109
- display: none;
110
- font-family: inherit;
111
- }
112
-
113
- .orbit-wrapper {
114
- .orbit-caption {
115
- background: black;
116
- background: rgba(0, 0, 0, 0.6);
117
- z-index: 30;
118
- color: white;
119
- text-align: center;
120
- padding: 7px 0;
121
- font-size: 13px;
122
- position: absolute;
123
- right: 0;
124
- bottom: 0;
125
- width: 100%;
126
- }
127
- .slider-nav {
128
- display: block;
129
- span {
130
- width: 39px;
131
- height: 50px;
132
- text-indent: -9999px;
133
- position: absolute;
134
- z-index: 30;
135
- top: 50%;
136
- margin-top: -25px;
137
- cursor: pointer;
138
- &.right {
139
- background: url('../images/orbit/right-arrow.png');
140
- background-size: 100%;
141
- right: 0;
142
- }
143
- &.left {
144
- background: url('../images/orbit/left-arrow.png');
145
- background-size: 100%;
146
- left: 0;
147
- }
148
- }
149
- }
150
- }
151
-
152
- .lt-ie9 .orbit-wrapper .slider-nav span {
153
- &.right {
154
- background: url('../images/orbit/right-arrow-small.png');
155
- }
156
- &.left {
157
- background: url('../images/orbit/left-arrow-small.png');
158
- }
159
- }
160
-
161
- ul.orbit-bullets {
162
- position: absolute;
163
- z-index: 30;
164
- list-style: none;
165
- bottom: -40px;
166
- left: 50%;
167
- margin-left: -50px;
168
- padding: 0;
169
- li {
170
- float: left;
171
- margin-left: 5px;
172
- cursor: pointer;
173
- color: #999999;
174
- text-indent: -9999px;
175
- background: url('../images/orbit/bullets.jpg') no-repeat 4px 0;
176
- width: 13px;
177
- height: 12px;
178
- overflow: hidden;
179
- &.active {
180
- color: #222222;
181
- background-position: -8px 0;
182
- }
183
- &.has-thumb {
184
- background: none;
185
- width: 100px;
186
- height: 75px;
187
- }
188
- &.active.has-thumb {
189
- background-position: 0 0;
190
- border-top: 2px solid black;
191
- }
192
- }
193
- }
194
-
195
- .orbit-slide-counter {
196
- position: absolute;
197
- bottom: 0;
198
- z-index: 99;
199
- background: rgba(0, 0, 0, 0.7);
200
- color: white;
201
- padding: 5px;
202
- }
203
-
204
- .orbit {
205
- img.fluid-placeholder {
206
- visibility: hidden;
207
- position: static;
208
- display: block;
209
- width: 100%;
210
- }
211
- width: 100% !important;
212
- }
213
-
214
- .orbit-wrapper {
215
- width: 100% !important;
216
- }
217
-
218
- .lt-ie9 {
219
- .timer {
220
- display: none !important;
221
- }
222
- .orbit-caption {
223
- background: black;
224
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000,endColorstr=#99000000);
225
- zoom: 1;
226
- }
227
- }
228
-
229
- // @media only screen and (max-width: 767px) {
230
- // .orbit.orbit-stack-on-small {
231
- // img.fluid-placeholder {
232
- // visibility: visible;
233
- // }
234
- // .orbit-slide {
235
- // position: static;
236
- // margin-bottom: 10px;
237
- // }
238
- // }
239
- // }