table_beet 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
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,10 +0,0 @@
1
- // ===================================
2
- // Popovers
3
- // ===================================
4
-
5
-
6
-
7
-
8
- .popover {
9
-
10
- }
@@ -1,77 +0,0 @@
1
- // =============================================
2
- // CSS Reset by Gary Hepting
3
- // Last Updated:2013-1-3
4
- // =============================================
5
-
6
-
7
-
8
-
9
- // =======================================================
10
- // the better box model
11
- // =======================================================
12
- //
13
- //
14
- // E L E M E N T W I D T H
15
- // |----------------------------------------------------|
16
- // | B O R D E R |
17
- // | |--------------------------------------------| |
18
- // | B | P A D D I N G | B |
19
- // | | |------------------------------------| | |
20
- // | O | P | | P | O |
21
- // | | A | | A | |
22
- // | R | D | | D | R |
23
- // | | D | C O N T E N T | D | |
24
- // | D | I | | I | D |
25
- // | | N | | N | |
26
- // | E | G | | G | E |
27
- // | | |------------------------------------| | |
28
- // | R | P A D D I N G | R |
29
- // | |--------------------------------------------| |
30
- // | B O R D E R |
31
- // | ---------------------------------------------------|
32
- //
33
- // NOTE: Padding and border are calculated within an
34
- // element's specified width instead of its total
35
- // width being increased by these properties
36
- //
37
- //
38
- // =======================================================
39
-
40
- *, *:after, *:before {
41
- -ms-box-sizing:border-box; // IE 10+
42
- -o-box-sizing:border-box; // Opera
43
- -moz-box-sizing:border-box; // Firefox
44
- -webkit-box-sizing:border-box; // Webkit (Safari, Chrome, etc)
45
- box-sizing:border-box; // IE 8-9 & Other
46
- *behavior: url(js/libs/boxsizing.htc); // IE 6-7 -- Thank Schepp for the polyfill for legacy IE browsers: https://github.com/Schepp/box-sizing-polyfill
47
- }
48
-
49
-
50
-
51
-
52
- ///////////////////////
53
- // optimized reset //
54
- ///////////////////////
55
- html, body, div, span,
56
- h1, h2, h3, h4, h5, h6, p,
57
- ol, ul, li, dl, dt, dd,
58
- a, img, blockquote, cite,
59
- em, small, strong, b, u, i, time, address, center,
60
- form, fieldset, legend, label, input, textarea, select, button,
61
- table, caption, tbody, tfoot, thead, tr, th, td,
62
- header, footer, aside, menu, nav, section, article, details,
63
- pre, code, iframe, object, canvas, audio, video {
64
- margin: 0;
65
- padding: 0;
66
- border: 0;
67
- }
68
-
69
-
70
-
71
-
72
- ///////////////////////
73
- // HTML5 display fix //
74
- ///////////////////////
75
- header, footer, aside, menu, nav, section, article, details {
76
- display: block;
77
- }
@@ -1,293 +0,0 @@
1
- ///////////////////////
2
- // desktop //
3
- ///////////////////////
4
- // @media only screen and (min-width:1024px) {
5
-
6
- // }
7
-
8
-
9
-
10
- ///////////////////////
11
- // ipads //
12
- ///////////////////////
13
- // @media only screen and (min-width:768px) and (max-width:1024px) {
14
-
15
- // }
16
-
17
-
18
-
19
-
20
- ///////////////////////
21
- // small tablets //
22
- ///////////////////////
23
- @media only screen and (max-width:767px) {
24
- // responsive grid
25
- .half, .halves,
26
- .third, .thirds,
27
- .fourth, .fourths,
28
- .fifth, .fifths,
29
- .sixth, .sixths,
30
- .seventh, .sevenths,
31
- .eighth, .eighths,
32
- .ninth, .ninths,
33
- .tenth, .tenths,
34
- .eleventh, .elevenths,
35
- .twelfth, .twelfths {
36
- &:not(.small-tablet):not(.mobile) {
37
- width:100% !important;
38
- float:none;
39
- clear:both;
40
- // reset push
41
- &.right-one,
42
- &.right-two,
43
- &.right-three,
44
- &.right-four,
45
- &.right-five,
46
- &.right-six,
47
- &.right-seven,
48
- &.right-eight,
49
- &.right-nine,
50
- &.right-ten,
51
- &.right-eleven { left:0; }
52
- // reset pull
53
- &.left-one,
54
- &.left-two,
55
- &.left-three,
56
- &.left-four,
57
- &.left-five,
58
- &.left-six,
59
- &.left-seven,
60
- &.left-eight,
61
- &.left-nine,
62
- &.left-ten,
63
- &.left-eleven { right:0; }
64
- // reset offset
65
- &.skip-one,
66
- &.skip-two,
67
- &.skip-three,
68
- &.skip-four,
69
- &.skip-five,
70
- &.skip-six,
71
- &.skip-seven,
72
- &.skip-eight,
73
- &.skip-nine,
74
- &.skip-ten,
75
- &.skip-eleven { margin-left:0; }
76
- }
77
- }
78
- nav:not(.pagination), nav.inline {
79
- width:100%;
80
- ul, ul.row {
81
- li {
82
- display:block;
83
- width:100% !important;
84
- &.menu {
85
- > a {
86
- &:after {
87
- display:none !important;
88
- }
89
- &:before {
90
- content:'\f0c9';
91
- display: inline-block;
92
- width: 1.1em;
93
- margin-left:0.25em;
94
- font-family: FontAwesome;
95
- font-weight: normal;
96
- font-style: normal;
97
- font-size:1.1em;
98
- text-decoration: inherit;
99
- -webkit-font-smoothing: antialiased;
100
- line-height: normal;
101
- vertical-align: baseline;
102
- background-image: none;
103
- background-position: 0% 0%;
104
- background-repeat: repeat;
105
- margin-top: 0;
106
- }
107
- }
108
- }
109
- ul {
110
- position:static;
111
- @include filter-shadow(rgba(0,0,0,0), 0, 0, 0);
112
- li {
113
- &:first-child {
114
- a, a:visited {
115
- @include rounded(0 !important);
116
- }
117
- }
118
- &:last-child {
119
- a, a:visited {
120
- @include rounded(0 !important);
121
- }
122
- }
123
- }
124
- }
125
- }
126
- &:last-child {
127
- li {
128
- &:last-child {
129
- ul {
130
- li {
131
- &:last-child {
132
- a, a:visited {
133
- @include rounded(0 0 $radius $radius !important);
134
- }
135
- }
136
- }
137
- }
138
- }
139
- }
140
- }
141
- }
142
- }
143
- nav:not(.pagination), nav.inline {
144
- ul, ul.row {
145
- li {
146
- &:first-child {
147
- > a, > , > a:visited {
148
- @include rounded($radius $radius 0 0 !important);
149
- }
150
- }
151
- &:last-child {
152
- > a, > , > a:visited {
153
- @include rounded(0 0 $radius $radius !important);
154
- }
155
- &.on {
156
- > a, > , > a:visited {
157
- border-bottom-right-radius:0 !important;
158
- border-bottom-left-radius:0 !important;
159
- }
160
- }
161
- }
162
- }
163
- li {
164
- ul {
165
- li {
166
- a, a:visited {
167
- @include rounded(0 !important);
168
- }
169
- }
170
- }
171
- }
172
- }
173
- }
174
- .tabs:not(.small-tablet):not(.mobile):not(.vertical) {
175
- > ul {
176
- li {
177
- float:none;
178
- width:100%;
179
- margin:0;
180
- a {
181
- @include rounded(0);
182
- border-bottom:none;
183
- &:before, &:after {
184
- display:none !important;
185
- }
186
- }
187
- &:first-child a {
188
- @include rounded($radius $radius 0 0);
189
- }
190
- }
191
- }
192
- }
193
- .no-padding-small-tablet {
194
- padding:0;
195
- }
196
- .no-margin-small-tablet {
197
- margin:0;
198
- }
199
- }
200
-
201
-
202
-
203
-
204
- ///////////////////////
205
- // handhelds //
206
- ///////////////////////
207
- @media only screen and (max-width:480px) {
208
- // responsive grid
209
- .half, .halves,
210
- .third, .thirds,
211
- .fourth, .fourths,
212
- .fifth, .fifths,
213
- .sixth, .sixths,
214
- .seventh, .sevenths,
215
- .eighth, .eighths,
216
- .ninth, .ninths,
217
- .tenth, .tenths,
218
- .eleventh, .elevenths,
219
- .twelfth, .twelfths {
220
- &:not(.mobile) {
221
- width:100% !important;
222
- float:none;
223
- clear:both;
224
- // reset push
225
- &.right-one,
226
- &.right-two,
227
- &.right-three,
228
- &.right-four,
229
- &.right-five,
230
- &.right-six,
231
- &.right-seven,
232
- &.right-eight,
233
- &.right-nine,
234
- &.right-ten,
235
- &.right-eleven { left:0; }
236
- // reset pull
237
- &.left-one,
238
- &.left-two,
239
- &.left-three,
240
- &.left-four,
241
- &.left-five,
242
- &.left-six,
243
- &.left-seven,
244
- &.left-eight,
245
- &.left-nine,
246
- &.left-ten,
247
- &.left-eleven { right:0; }
248
- // reset offset
249
- &.skip-one,
250
- &.skip-two,
251
- &.skip-three,
252
- &.skip-four,
253
- &.skip-five,
254
- &.skip-six,
255
- &.skip-seven,
256
- &.skip-eight,
257
- &.skip-nine,
258
- &.skip-ten,
259
- &.skip-eleven { margin-left:0; }
260
- }
261
- }
262
- .tabs:not(.mobile) {
263
- > ul {
264
- li {
265
- float:none;
266
- width:100%;
267
- a {
268
- @include rounded(0);
269
- border-bottom:none;
270
- }
271
- &:first-child a {
272
- @include rounded($radius $radius 0 0);
273
- }
274
- }
275
- }
276
- }
277
- .no-padding-mobile {
278
- padding:0;
279
- }
280
- .no-margin-mobile {
281
- margin:0;
282
- }
283
- }
284
-
285
-
286
-
287
-
288
- ///////////////////////
289
- // small handhelds //
290
- ///////////////////////
291
- // @media only screen and (max-width:320px) {
292
-
293
- // }
@@ -1,92 +0,0 @@
1
- // =============================================
2
- // Social icons by Gary Hepting
3
- // Last Updated:2013-1-18
4
- // =============================================
5
-
6
-
7
-
8
-
9
- .social-icon {
10
- display: inline-block;
11
- background-size: 100%;
12
- width:1em;
13
- height:1em;
14
- text-indent: -999em;
15
- text-align: left;
16
- @include rounded(2px);
17
- margin-bottom: 3px;
18
- vertical-align: bottom;
19
- @include drop-shadow(rgba(0,0,0,0.2), 5px, 0, 0); // color, alpha, blur, x, y
20
- &.small {
21
- width: 20px;
22
- height: 20px;
23
- @include rounded(3px);
24
- }
25
- &.medium {
26
- width: 30px;
27
- height: 30px;
28
- @include rounded(5px);
29
- }
30
- &.large {
31
- width: 48px;
32
- height: 48px;
33
- @include rounded(6px);
34
- }
35
- &.round {
36
- @include rounded(50% 50%);
37
- }
38
- &.aboutme { @include data-image("social-icons/aboutme.svg"); }
39
- &.adn { @include data-image("social-icons/adn.svg"); }
40
- &.android { @include data-image("social-icons/android.svg"); }
41
- &.apple { @include data-image("social-icons/apple.svg"); }
42
- &.behance { @include data-image("social-icons/behance.svg"); }
43
- &.bitbucket { @include data-image("social-icons/bitbucket.svg"); }
44
- &.coderwall { @include data-image("social-icons/coderwall.svg"); }
45
- &.creativecloud { @include data-image("social-icons/creativecloud.svg"); }
46
- &.dribbble { @include data-image("social-icons/dribbble.svg"); }
47
- &.dropbox { @include data-image("social-icons/dropbox.svg"); }
48
- &.evernote { @include data-image("social-icons/evernote.svg"); }
49
- &.facebook { @include data-image("social-icons/facebook.svg"); }
50
- &.flickr { @include data-image("social-icons/flickr.svg"); }
51
- &.foursquare { @include data-image("social-icons/foursquare.svg"); }
52
- &.git { @include data-image("social-icons/git.svg"); }
53
- &.github { @include data-image("social-icons/github.svg"); }
54
- &.googleplay { @include data-image("social-icons/googleplay.svg"); }
55
- &.googleplus { @include data-image("social-icons/googleplus.svg"); }
56
- &.html5 { @include data-image("social-icons/html5.svg"); }
57
- &.icloud { @include data-image("social-icons/icloud.svg"); }
58
- &.instagram { @include data-image("social-icons/instagram.svg"); }
59
- &.lastfm { @include data-image("social-icons/lastfm.svg"); }
60
- &.linkedin { @include data-image("social-icons/linkedin.svg"); }
61
- &.mail { @include data-image("social-icons/mail.svg"); }
62
- &.mixi { @include data-image("social-icons/mixi.svg"); }
63
- &.msn { @include data-image("social-icons/msn.svg"); }
64
- &.pinterest { @include data-image("social-icons/pinterest.svg"); }
65
- &.pocket { @include data-image("social-icons/pocketapp.svg"); }
66
- &.quora { @include data-image("social-icons/quora.svg"); }
67
- &.orkut { @include data-image("social-icons/orkut.svg"); }
68
- &.mercurial { @include data-image("social-icons/mercurial.svg"); }
69
- &.rdio { @include data-image("social-icons/rdio.svg"); }
70
- &.renren { @include data-image("social-icons/renren.svg"); }
71
- &.rss { @include data-image("social-icons/rss.svg"); }
72
- &.skitch { @include data-image("social-icons/skitch.svg"); }
73
- &.skype { @include data-image("social-icons/skype.svg"); }
74
- &.soundcloud { @include data-image("social-icons/soundcloud.svg"); }
75
- &.spotify { @include data-image("social-icons/spotify.svg"); }
76
- &.stackoverflow { @include data-image("social-icons/stackoverflow.svg"); }
77
- &.stumbleupon { @include data-image("social-icons/stumbleupon.svg"); }
78
- &.svn { @include data-image("social-icons/svn.svg"); }
79
- &.tent { @include data-image("social-icons/tent.svg"); }
80
- &.tripadvisor { @include data-image("social-icons/tripadvisor.svg"); }
81
- &.tumblr { @include data-image("social-icons/tumblr.svg"); }
82
- &.twitter { @include data-image("social-icons/twitter.svg"); }
83
- &.vimeo { @include data-image("social-icons/vimeo.svg"); }
84
- &.weibo { @include data-image("social-icons/weibo.svg"); }
85
- &.windows { @include data-image("social-icons/windows.svg"); }
86
- &.wordpress { @include data-image("social-icons/wordpress.svg"); }
87
- &.xing { @include data-image("social-icons/xing.svg"); }
88
- &.yelp { @include data-image("social-icons/yelp.svg"); }
89
- &.youtube { @include data-image("social-icons/youtube.svg"); }
90
- &.youversion { @include data-image("social-icons/youversion.svg"); }
91
- &.zerply { @include data-image("social-icons/zerply.svg"); }
92
- }