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.
- data/README.md +1 -1
- data/lib/table_beet/formatters/html_template/data/js/jquery.quicksearch.js +181 -0
- data/lib/table_beet/formatters/html_template/index.erb +45 -7
- data/lib/table_beet/version.rb +1 -1
- metadata +5 -32
- data/lib/table_beet/formatters/html_template/data/js/coffee/groundwork.coffee +0 -207
- data/lib/table_beet/formatters/html_template/data/scss/_buttons.scss +0 -178
- data/lib/table_beet/formatters/html_template/data/scss/_callouts.scss +0 -51
- data/lib/table_beet/formatters/html_template/data/scss/_font-awesome.scss +0 -534
- data/lib/table_beet/formatters/html_template/data/scss/_forms.scss +0 -164
- data/lib/table_beet/formatters/html_template/data/scss/_global.scss +0 -31
- data/lib/table_beet/formatters/html_template/data/scss/_grid.scss +0 -384
- data/lib/table_beet/formatters/html_template/data/scss/_layout.scss +0 -78
- data/lib/table_beet/formatters/html_template/data/scss/_messages.scss +0 -59
- data/lib/table_beet/formatters/html_template/data/scss/_mixins.scss +0 -197
- data/lib/table_beet/formatters/html_template/data/scss/_mobile-reset.scss +0 -11
- data/lib/table_beet/formatters/html_template/data/scss/_modals.scss +0 -101
- data/lib/table_beet/formatters/html_template/data/scss/_navigation.scss +0 -284
- data/lib/table_beet/formatters/html_template/data/scss/_orbit.scss +0 -239
- data/lib/table_beet/formatters/html_template/data/scss/_popovers.scss +0 -10
- data/lib/table_beet/formatters/html_template/data/scss/_reset.scss +0 -77
- data/lib/table_beet/formatters/html_template/data/scss/_responsive.scss +0 -293
- data/lib/table_beet/formatters/html_template/data/scss/_social-icons.scss +0 -92
- data/lib/table_beet/formatters/html_template/data/scss/_tables.scss +0 -80
- data/lib/table_beet/formatters/html_template/data/scss/_tabs.scss +0 -137
- data/lib/table_beet/formatters/html_template/data/scss/_tooltips.scss +0 -161
- data/lib/table_beet/formatters/html_template/data/scss/_typography.scss +0 -263
- data/lib/table_beet/formatters/html_template/data/scss/_ui-elements.scss +0 -10
- data/lib/table_beet/formatters/html_template/data/scss/_variables.scss +0 -134
- data/lib/table_beet/formatters/html_template/data/scss/_webfonts.scss +0 -19
- data/lib/table_beet/formatters/html_template/data/scss/groundwork-ie.scss +0 -64
- data/lib/table_beet/formatters/html_template/data/scss/groundwork.scss +0 -37
- data/lib/table_beet/formatters/html_template/data/scss/no-svg.scss +0 -69
@@ -1,134 +0,0 @@
|
|
1
|
-
///////////////////////
|
2
|
-
// settings //
|
3
|
-
///////////////////////
|
4
|
-
$max-width: 1200px; // max container width (i.e. - 960px)
|
5
|
-
$gutter: 10px; // gutter spacing
|
6
|
-
|
7
|
-
|
8
|
-
// base styles
|
9
|
-
$background-color: #ffffff;
|
10
|
-
$font-color: #2b2b2d;
|
11
|
-
$font-size: 14px;
|
12
|
-
$font-family: Helvetica, Arial, Geneva, sans-serif;
|
13
|
-
$link-color: #489AC1;
|
14
|
-
$link-active: #198D98;
|
15
|
-
$selection-color: $font-color;
|
16
|
-
$selection-text: #ffffff;
|
17
|
-
$border-color: #dddddd;
|
18
|
-
$button-color: #1DABB8;
|
19
|
-
$button-active: #198D98;
|
20
|
-
$button-text: #ffffff;
|
21
|
-
$button-active-text: #ffffff;
|
22
|
-
$error-color: #A40400;
|
23
|
-
$warning-color: #FF971E;
|
24
|
-
$success-color: #5FB40E;
|
25
|
-
$radius: 4px;
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
///////////////////////
|
31
|
-
// fractions //
|
32
|
-
///////////////////////
|
33
|
-
|
34
|
-
// wholes
|
35
|
-
$one-whole: 100%;
|
36
|
-
|
37
|
-
// halves
|
38
|
-
$one-half: 50%;
|
39
|
-
$two-halves: $one-whole;
|
40
|
-
|
41
|
-
// thirds
|
42
|
-
$one-third: 33.3333333333333%;
|
43
|
-
$two-thirds: 66.6666666666666%;
|
44
|
-
$three-thirds: $one-whole;
|
45
|
-
|
46
|
-
// fourths
|
47
|
-
$one-fourth: 25%;
|
48
|
-
$two-fourths: $one-half;
|
49
|
-
$three-fourths: 75%;
|
50
|
-
$four-fourths: $one-whole;
|
51
|
-
|
52
|
-
// fifths
|
53
|
-
$one-fifth: 20%;
|
54
|
-
$two-fifths: 40%;
|
55
|
-
$three-fifths: 60%;
|
56
|
-
$four-fifths: 80%;
|
57
|
-
$five-fifths: $one-whole;
|
58
|
-
|
59
|
-
// sixths
|
60
|
-
$one-sixth: 16.666666666667%;
|
61
|
-
$two-sixths: $one-third;
|
62
|
-
$three-sixths: $one-half;
|
63
|
-
$four-sixths: $two-thirds;
|
64
|
-
$five-sixths: 83.333333333333%;
|
65
|
-
$six-sixths: $one-whole;
|
66
|
-
|
67
|
-
// sevenths
|
68
|
-
$one-seventh: 14.285714285714%;
|
69
|
-
$two-sevenths: 28.571428571429%;
|
70
|
-
$three-sevenths: 42.857142857143%;
|
71
|
-
$four-sevenths: 57.142857142857%;
|
72
|
-
$five-sevenths: 71.428571428571%;
|
73
|
-
$six-sevenths: 85.714285714286%;
|
74
|
-
$seven-sevenths: $one-whole;
|
75
|
-
|
76
|
-
// eighths
|
77
|
-
$one-eighth: 12.5%;
|
78
|
-
$two-eighths: $one-fourth;
|
79
|
-
$three-eighths: 37.5%;
|
80
|
-
$four-eighths: $one-half;
|
81
|
-
$five-eighths: 62.5%;
|
82
|
-
$six-eighths: $three-fourths;
|
83
|
-
$seven-eighths: 87.5%;
|
84
|
-
$eight-eighths: $one-whole;
|
85
|
-
|
86
|
-
// ninths
|
87
|
-
$one-ninth: 11.111111111111%;
|
88
|
-
$two-ninths: 22.222222222222%;
|
89
|
-
$three-ninths: $one-third;
|
90
|
-
$four-ninths: 44.444444444444%;
|
91
|
-
$five-ninths: 55.555555555556%;
|
92
|
-
$six-ninths: $two-thirds;
|
93
|
-
$seven-ninths: 77.777777777778%;
|
94
|
-
$eight-ninths: 88.888888888889%;
|
95
|
-
$nine-ninths: $one-whole;
|
96
|
-
|
97
|
-
// tenths
|
98
|
-
$one-tenth: 10%;
|
99
|
-
$two-tenths: $one-fifth;
|
100
|
-
$three-tenths: 30%;
|
101
|
-
$four-tenths: $two-fifths;
|
102
|
-
$five-tenths: $one-half;
|
103
|
-
$six-tenths: $three-fifths;
|
104
|
-
$seven-tenths: 70%;
|
105
|
-
$eight-tenths: $four-fifths;
|
106
|
-
$nine-tenths: 90%;
|
107
|
-
$ten-tenths: $one-whole;
|
108
|
-
|
109
|
-
// elevenths
|
110
|
-
$one-eleventh: 9.090909090909%;
|
111
|
-
$two-elevenths: 18.181818181818%;
|
112
|
-
$three-elevenths: 27.272727272727%;
|
113
|
-
$four-elevenths: 36.363636363636%;
|
114
|
-
$five-elevenths: 45.454545454545%;
|
115
|
-
$six-elevenths: 54.545454545455%;
|
116
|
-
$seven-elevenths: 63.636363636364%;
|
117
|
-
$eight-elevenths: 72.727272727273%;
|
118
|
-
$nine-elevenths: 81.818181818182%;
|
119
|
-
$ten-elevenths: 90.909090909091%;
|
120
|
-
$eleven-elevenths: $one-whole;
|
121
|
-
|
122
|
-
// twelfths
|
123
|
-
$one-twelfth: 8.33333333333333%;
|
124
|
-
$two-twelfths: $one-sixth;
|
125
|
-
$three-twelfths: $one-fourth;
|
126
|
-
$four-twelfths: $one-third;
|
127
|
-
$five-twelfths: 41.6666666666667%;
|
128
|
-
$six-twelfths: $one-half;
|
129
|
-
$seven-twelfths: 58.3333333333333%;
|
130
|
-
$eight-twelfths: $two-thirds;
|
131
|
-
$nine-twelfths: $three-fourths;
|
132
|
-
$ten-twelfths: $five-sixths;
|
133
|
-
$eleven-twelfths: 91.6666666666666%;
|
134
|
-
$twelve-twelfths: $one-whole;
|
@@ -1,19 +0,0 @@
|
|
1
|
-
// ===================================
|
2
|
-
// GroundworkCSS Web Fonts
|
3
|
-
// ===================================
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
@font-face {
|
9
|
-
font-family: 'Average Sans';
|
10
|
-
font-style: normal;
|
11
|
-
font-weight: 400;
|
12
|
-
src: url(http://themes.googleusercontent.com/static/fonts/averagesans/v1/dnU3R-5A_43y5bIyLztPsXZ2MAKAc2x4R1uOSeegc5U.eot);
|
13
|
-
src: local('Average Sans'),
|
14
|
-
local('AverageSans-Regular'),
|
15
|
-
url(http://themes.googleusercontent.com/static/fonts/averagesans/v1/dnU3R-5A_43y5bIyLztPsXZ2MAKAc2x4R1uOSeegc5U.eot) format('embedded-opentype'),
|
16
|
-
url(http://themes.googleusercontent.com/static/fonts/averagesans/v1/dnU3R-5A_43y5bIyLztPsXhCUOGz7vYGh680lGh-uXM.woff) format('woff'),
|
17
|
-
url(http://themes.googleusercontent.com/static/fonts/averagesans/v1/dnU3R-5A_43y5bIyLztPsZS3E-kSBmtLoNJPDtbj2Pk.ttf) format('truetype');
|
18
|
-
|
19
|
-
}
|
@@ -1,64 +0,0 @@
|
|
1
|
-
// =============================================
|
2
|
-
// IE hacks by Gary Hepting
|
3
|
-
// Last Updated:2013-2-2
|
4
|
-
// =============================================
|
5
|
-
|
6
|
-
// variables & mixins
|
7
|
-
@import "variables";
|
8
|
-
@import "mixins";
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
html {
|
13
|
-
&.lt-ie9 {
|
14
|
-
min-width:$max-width !important;
|
15
|
-
body {
|
16
|
-
width:auto !important;
|
17
|
-
}
|
18
|
-
.container {
|
19
|
-
width:auto !important;
|
20
|
-
}
|
21
|
-
// forms
|
22
|
-
input, select, textarea {
|
23
|
-
&:focus {
|
24
|
-
border-color:$button-active;
|
25
|
-
}
|
26
|
-
&[type=checkbox], &[type=radio] {
|
27
|
-
padding:0;
|
28
|
-
background:none;
|
29
|
-
border:none;
|
30
|
-
display:inline-block;
|
31
|
-
width:auto !important;
|
32
|
-
height:auto !important;
|
33
|
-
@include rounded(0);
|
34
|
-
}
|
35
|
-
}
|
36
|
-
// custom select box
|
37
|
-
span.select {
|
38
|
-
&:after {
|
39
|
-
display:none;
|
40
|
-
}
|
41
|
-
select {
|
42
|
-
padding:0;
|
43
|
-
height:2.1em;
|
44
|
-
vertical-align:top;
|
45
|
-
&:focus {
|
46
|
-
border:1px solid $button-active;
|
47
|
-
@include drop-shadow(#fff, 0, 0, 0);
|
48
|
-
}
|
49
|
-
}
|
50
|
-
}
|
51
|
-
// modals
|
52
|
-
div.modal {
|
53
|
-
.close, .fullscreen {
|
54
|
-
padding:6px 7px;
|
55
|
-
top:2px;
|
56
|
-
right:2px;
|
57
|
-
}
|
58
|
-
.fullscreen {
|
59
|
-
right:auto;
|
60
|
-
left:2px;
|
61
|
-
}
|
62
|
-
}
|
63
|
-
}
|
64
|
-
}
|
@@ -1,37 +0,0 @@
|
|
1
|
-
/* =============================================
|
2
|
-
* GroundworkCSS by Gary Hepting
|
3
|
-
* Last Updated:2013-1-28
|
4
|
-
* ===========================================*/
|
5
|
-
|
6
|
-
// variables & mixins
|
7
|
-
@import "variables";
|
8
|
-
@import "mixins";
|
9
|
-
|
10
|
-
// set the stage
|
11
|
-
@import "reset";
|
12
|
-
@import "global";
|
13
|
-
|
14
|
-
// webfonts
|
15
|
-
@import "webfonts";
|
16
|
-
|
17
|
-
// components
|
18
|
-
@import "grid";
|
19
|
-
@import "typography";
|
20
|
-
@import "buttons";
|
21
|
-
@import "forms";
|
22
|
-
@import "navigation";
|
23
|
-
@import "tabs";
|
24
|
-
@import "ui-elements";
|
25
|
-
@import "tables";
|
26
|
-
@import "font-awesome";
|
27
|
-
@import "social-icons";
|
28
|
-
@import "tooltips";
|
29
|
-
@import "popovers";
|
30
|
-
@import "modals";
|
31
|
-
@import "orbit";
|
32
|
-
|
33
|
-
// helper classes
|
34
|
-
@import "layout";
|
35
|
-
|
36
|
-
// responsive adjustments
|
37
|
-
@import "responsive";
|
@@ -1,69 +0,0 @@
|
|
1
|
-
// =============================================
|
2
|
-
// Fallbacks for non-SVG support by Gary Hepting
|
3
|
-
// Last Updated:2013-2-15
|
4
|
-
// =============================================
|
5
|
-
|
6
|
-
// variables & mixins
|
7
|
-
@import "variables";
|
8
|
-
@import "mixins";
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
.social-icon {
|
13
|
-
width:48px;
|
14
|
-
height:48px;
|
15
|
-
&.aboutme { @include data-image("social-icons/aboutme.png"); }
|
16
|
-
&.adn { @include data-image("social-icons/adn.png"); }
|
17
|
-
&.android { @include data-image("social-icons/android.png"); }
|
18
|
-
&.apple { @include data-image("social-icons/apple.png"); }
|
19
|
-
&.behance { @include data-image("social-icons/behance.png"); }
|
20
|
-
&.bitbucket { @include data-image("social-icons/bitbucket.png"); }
|
21
|
-
&.coderwall { @include data-image("social-icons/coderwall.png"); }
|
22
|
-
&.creativecloud { @include data-image("social-icons/creativecloud.png"); }
|
23
|
-
&.dribbble { @include data-image("social-icons/dribbble.png"); }
|
24
|
-
&.dropbox { @include data-image("social-icons/dropbox.png"); }
|
25
|
-
&.evernote { @include data-image("social-icons/evernote.png"); }
|
26
|
-
&.facebook { @include data-image("social-icons/facebook.png"); }
|
27
|
-
&.flickr { @include data-image("social-icons/flickr.png"); }
|
28
|
-
&.foursquare { @include data-image("social-icons/foursquare.png"); }
|
29
|
-
&.git { @include data-image("social-icons/git.png"); }
|
30
|
-
&.github { @include data-image("social-icons/github.png"); }
|
31
|
-
&.googleplay { @include data-image("social-icons/googleplay.png"); }
|
32
|
-
&.googleplus { @include data-image("social-icons/googleplus.png"); }
|
33
|
-
&.html5 { @include data-image("social-icons/html5.png"); }
|
34
|
-
&.icloud { @include data-image("social-icons/icloud.png"); }
|
35
|
-
&.instagram { @include data-image("social-icons/instagram.png"); }
|
36
|
-
&.lastfm { @include data-image("social-icons/lastfm.png"); }
|
37
|
-
&.linkedin { @include data-image("social-icons/linkedin.png"); }
|
38
|
-
&.mail { @include data-image("social-icons/mail.png"); }
|
39
|
-
&.mixi { @include data-image("social-icons/mixi.png"); }
|
40
|
-
&.msn { @include data-image("social-icons/msn.png"); }
|
41
|
-
&.pinterest { @include data-image("social-icons/pinterest.png"); }
|
42
|
-
&.pocket { @include data-image("social-icons/pocketapp.png"); }
|
43
|
-
&.quora { @include data-image("social-icons/quora.png"); }
|
44
|
-
&.orkut { @include data-image("social-icons/orkut.png"); }
|
45
|
-
&.mercurial { @include data-image("social-icons/mercurial.png"); }
|
46
|
-
&.rdio { @include data-image("social-icons/rdio.png"); }
|
47
|
-
&.renren { @include data-image("social-icons/renren.png"); }
|
48
|
-
&.rss { @include data-image("social-icons/rss.png"); }
|
49
|
-
&.skitch { @include data-image("social-icons/skitch.png"); }
|
50
|
-
&.skype { @include data-image("social-icons/skype.png"); }
|
51
|
-
&.soundcloud { @include data-image("social-icons/soundcloud.png"); }
|
52
|
-
&.spotify { @include data-image("social-icons/spotify.png"); }
|
53
|
-
&.stackoverflow { @include data-image("social-icons/stackoverflow.png"); }
|
54
|
-
&.stumbleupon { @include data-image("social-icons/stumbleupon.png"); }
|
55
|
-
&.svn { @include data-image("social-icons/svn.png"); }
|
56
|
-
&.tent { @include data-image("social-icons/tent.png"); }
|
57
|
-
&.tripadvisor { @include data-image("social-icons/tripadvisor.png"); }
|
58
|
-
&.tumblr { @include data-image("social-icons/tumblr.png"); }
|
59
|
-
&.twitter { @include data-image("social-icons/twitter.png"); }
|
60
|
-
&.vimeo { @include data-image("social-icons/vimeo.png"); }
|
61
|
-
&.weibo { @include data-image("social-icons/weibo.png"); }
|
62
|
-
&.windows { @include data-image("social-icons/windows.png"); }
|
63
|
-
&.wordpress { @include data-image("social-icons/wordpress.png"); }
|
64
|
-
&.xing { @include data-image("social-icons/xing.png"); }
|
65
|
-
&.yelp { @include data-image("social-icons/yelp.png"); }
|
66
|
-
&.youtube { @include data-image("social-icons/youtube.png"); }
|
67
|
-
&.youversion { @include data-image("social-icons/youversion.png"); }
|
68
|
-
&.zerply { @include data-image("social-icons/zerply.png"); }
|
69
|
-
}
|