zitgit 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. data/.gitignore +17 -0
  2. data/Gemfile +5 -0
  3. data/Gemfile.lock +94 -0
  4. data/Guardfile +6 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +29 -0
  7. data/Rakefile +1 -0
  8. data/bin/zitgit +4 -0
  9. data/lib/zitgit/version.rb +3 -0
  10. data/lib/zitgit.rb +57 -0
  11. data/public/coffee/application.coffee +54 -0
  12. data/public/css/app.css +4071 -0
  13. data/public/images/loader.gif +0 -0
  14. data/public/js/application.js +69 -0
  15. data/public/js/jquery.js +5 -0
  16. data/public/js/jquery.nicescroll.js +111 -0
  17. data/public/scss/app.scss +155 -0
  18. data/public/scss/foundation/foundation/_variables.scss +1037 -0
  19. data/public/scss/foundation/foundation/components/_alert-boxes.scss +106 -0
  20. data/public/scss/foundation/foundation/components/_block-grid.scss +70 -0
  21. data/public/scss/foundation/foundation/components/_breadcrumbs.scss +124 -0
  22. data/public/scss/foundation/foundation/components/_button-groups.scss +88 -0
  23. data/public/scss/foundation/foundation/components/_buttons.scss +226 -0
  24. data/public/scss/foundation/foundation/components/_clearing.scss +211 -0
  25. data/public/scss/foundation/foundation/components/_custom-forms.scss +240 -0
  26. data/public/scss/foundation/foundation/components/_dropdown-buttons.scss +114 -0
  27. data/public/scss/foundation/foundation/components/_dropdown.scss +149 -0
  28. data/public/scss/foundation/foundation/components/_flex-video.scss +45 -0
  29. data/public/scss/foundation/foundation/components/_forms.scss +348 -0
  30. data/public/scss/foundation/foundation/components/_global.scss +267 -0
  31. data/public/scss/foundation/foundation/components/_grid.scss +184 -0
  32. data/public/scss/foundation/foundation/components/_inline-lists.scss +52 -0
  33. data/public/scss/foundation/foundation/components/_joyride.scss +208 -0
  34. data/public/scss/foundation/foundation/components/_keystrokes.scss +56 -0
  35. data/public/scss/foundation/foundation/components/_labels.scss +84 -0
  36. data/public/scss/foundation/foundation/components/_magellan.scss +21 -0
  37. data/public/scss/foundation/foundation/components/_orbit.scss +207 -0
  38. data/public/scss/foundation/foundation/components/_pagination.scss +99 -0
  39. data/public/scss/foundation/foundation/components/_panels.scss +76 -0
  40. data/public/scss/foundation/foundation/components/_pricing-tables.scss +130 -0
  41. data/public/scss/foundation/foundation/components/_progress-bars.scss +70 -0
  42. data/public/scss/foundation/foundation/components/_reveal.scss +131 -0
  43. data/public/scss/foundation/foundation/components/_section.scss +303 -0
  44. data/public/scss/foundation/foundation/components/_side-nav.scss +68 -0
  45. data/public/scss/foundation/foundation/components/_split-buttons.scss +159 -0
  46. data/public/scss/foundation/foundation/components/_sub-nav.scss +67 -0
  47. data/public/scss/foundation/foundation/components/_switch.scss +249 -0
  48. data/public/scss/foundation/foundation/components/_tables.scss +80 -0
  49. data/public/scss/foundation/foundation/components/_thumbs.scss +47 -0
  50. data/public/scss/foundation/foundation/components/_tooltips.scss +113 -0
  51. data/public/scss/foundation/foundation/components/_top-bar.scss +462 -0
  52. data/public/scss/foundation/foundation/components/_type.scss +422 -0
  53. data/public/scss/foundation/foundation/components/_visibility.scss +320 -0
  54. data/public/scss/foundation/foundation.scss +46 -0
  55. data/public/scss/foundation/normalize.scss +402 -0
  56. data/views/branch.slim +1 -0
  57. data/views/commits/detail.slim +12 -0
  58. data/views/commits/labels.slim +9 -0
  59. data/views/commits/list.slim +22 -0
  60. data/views/diffs/list.slim +39 -0
  61. data/views/index.slim +36 -0
  62. data/views/layout.slim +9 -0
  63. data/views/refs/dropdown.slim +3 -0
  64. data/zitgit.gemspec +30 -0
  65. metadata +239 -0
@@ -0,0 +1,320 @@
1
+ //
2
+ // Foundation Visibility Classes
3
+ //
4
+ @if $include-html-visibility-classes != false {
5
+
6
+ /* Foundation Visibility HTML Classes */
7
+ .show-for-small,
8
+ .show-for-medium-down,
9
+ .show-for-large-down { display: inherit !important; }
10
+
11
+ .show-for-medium,
12
+ .show-for-medium-up,
13
+ .show-for-large,
14
+ .show-for-large-up,
15
+ .show-for-xlarge { display: none !important; }
16
+
17
+ .hide-for-medium,
18
+ .hide-for-medium-up,
19
+ .hide-for-large,
20
+ .hide-for-large-up,
21
+ .hide-for-xlarge { display: inherit !important; }
22
+
23
+ .hide-for-small,
24
+ .hide-for-medium-down,
25
+ .hide-for-large-down { display: none !important; }
26
+
27
+ /* Specific visilbity for tables */
28
+ table {
29
+ &.show-for-small,
30
+ &.show-for-medium-down,
31
+ &.show-for-large-down,
32
+ &.hide-for-medium,
33
+ &.hide-for-medium-up,
34
+ &.hide-for-large,
35
+ &.hide-for-large-up,
36
+ &.hide-for-xlarge { display: table; }
37
+ }
38
+ thead {
39
+ &.show-for-small,
40
+ &.show-for-medium-down,
41
+ &.show-for-large-down,
42
+ &.hide-for-medium,
43
+ &.hide-for-medium-up,
44
+ &.hide-for-large,
45
+ &.hide-for-large-up,
46
+ &.hide-for-xlarge { display: table-header-group !important; }
47
+ }
48
+ tbody {
49
+ &.show-for-small,
50
+ &.show-for-medium-down,
51
+ &.show-for-large-down,
52
+ &.hide-for-medium,
53
+ &.hide-for-medium-up,
54
+ &.hide-for-large,
55
+ &.hide-for-large-up,
56
+ &.hide-for-xlarge { display: table-row-group !important; }
57
+ }
58
+ tr {
59
+ &.show-for-small,
60
+ &.show-for-medium-down,
61
+ &.show-for-large-down,
62
+ &.hide-for-medium,
63
+ &.hide-for-medium-up,
64
+ &.hide-for-large,
65
+ &.hide-for-large-up,
66
+ &.hide-for-xlarge { display: table-row !important; }
67
+ }
68
+ td,
69
+ th {
70
+ &.show-for-small,
71
+ &.show-for-medium-down,
72
+ &.show-for-large-down,
73
+ &.hide-for-medium,
74
+ &.hide-for-medium-up,
75
+ &.hide-for-large,
76
+ &.hide-for-large-up,
77
+ &.hide-for-xlarge { display: table-cell !important; }
78
+ }
79
+
80
+ /* Medium Displays: 768px - 1279px */
81
+ @media #{$small} {
82
+ .show-for-medium,
83
+ .show-for-medium-up { display: inherit !important; }
84
+
85
+ .show-for-small { display: none !important; }
86
+
87
+ .hide-for-small { display: inherit !important; }
88
+
89
+ .hide-for-medium,
90
+ .hide-for-medium-up { display: none !important; }
91
+
92
+ /* Specific visilbity for tables */
93
+ table {
94
+ &.show-for-medium,
95
+ &.show-for-medium-up,
96
+ &.hide-for-small { display: table; }
97
+ }
98
+ thead {
99
+ &.show-for-medium,
100
+ &.show-for-medium-up,
101
+ &.hide-for-small { display: table-header-group !important; }
102
+ }
103
+ tbody {
104
+ &.show-for-medium,
105
+ &.show-for-medium-up,
106
+ &.hide-for-small { display: table-row-group !important; }
107
+ }
108
+ tr {
109
+ &.show-for-medium,
110
+ &.show-for-medium-up,
111
+ &.hide-for-small { display: table-row !important; }
112
+ }
113
+ td,
114
+ th {
115
+ &.show-for-medium,
116
+ &.show-for-medium-up,
117
+ &.hide-for-small { display: table-cell !important; }
118
+ }
119
+ }
120
+
121
+ /* Large Displays: 1280px - 1440px */
122
+ @media #{$medium} {
123
+ .show-for-large,
124
+ .show-for-large-up { display: inherit !important; }
125
+
126
+ .show-for-medium,
127
+ .show-for-medium-down { display: none !important; }
128
+
129
+ .hide-for-medium,
130
+ .hide-for-medium-down { display: inherit !important; }
131
+
132
+ .hide-for-large,
133
+ .hide-for-large-up { display: none !important; }
134
+
135
+ /* Specific visilbity for tables */
136
+ table {
137
+ &.show-for-large,
138
+ &.show-for-large-up,
139
+ &.hide-for-medium,
140
+ &.hide-for-medium-down { display: table; }
141
+ }
142
+ thead {
143
+ &.show-for-large,
144
+ &.show-for-large-up,
145
+ &.hide-for-medium,
146
+ &.hide-for-medium-down { display: table-header-group !important; }
147
+ }
148
+ tbody {
149
+ &.show-for-large,
150
+ &.show-for-large-up,
151
+ &.hide-for-medium,
152
+ &.hide-for-medium-down { display: table-row-group !important; }
153
+ }
154
+ tr {
155
+ &.show-for-large,
156
+ &.show-for-large-up,
157
+ &.hide-for-medium,
158
+ &.hide-for-medium-down { display: table-row !important; }
159
+ }
160
+ td,
161
+ th {
162
+ &.show-for-large,
163
+ &.show-for-large-up,
164
+ &.hide-for-medium,
165
+ &.hide-for-medium-down { display: table-cell !important; }
166
+ }
167
+ }
168
+
169
+ /* X-Large Displays: 1400px and up */
170
+ @media #{$large} {
171
+ .show-for-xlarge { display: inherit !important; }
172
+
173
+ .show-for-large,
174
+ .show-for-large-down { display: none !important; }
175
+
176
+ .hide-for-large,
177
+ .hide-for-large-down { display: inherit !important; }
178
+
179
+ .hide-for-xlarge { display: none !important; }
180
+
181
+ /* Specific visilbity for tables */
182
+ table {
183
+ &.show-for-xlarge,
184
+ &.hide-for-large,
185
+ &.hide-for-large-down { display: table; }
186
+ }
187
+ thead {
188
+ &.show-for-xlarge,
189
+ &.hide-for-large,
190
+ &.hide-for-large-down { display: table-header-group !important; }
191
+ }
192
+ tbody {
193
+ &.show-for-xlarge,
194
+ &.hide-for-large,
195
+ &.hide-for-large-down { display: table-row-group !important; }
196
+ }
197
+ tr {
198
+ &.show-for-xlarge,
199
+ &.hide-for-large,
200
+ &.hide-for-large-down { display: table-row !important; }
201
+ }
202
+ td,
203
+ th {
204
+ &.show-for-xlarge,
205
+ &.hide-for-large,
206
+ &.hide-for-large-down { display: table-cell !important; }
207
+ }
208
+ }
209
+
210
+
211
+ /* Orientation targeting */
212
+ .show-for-landscape,
213
+ .hide-for-portrait { display: inherit !important; }
214
+ .hide-for-landscape,
215
+ .show-for-portrait { display: none !important; }
216
+
217
+ /* Specific visilbity for tables */
218
+ table {
219
+ &.hide-for-landscape,
220
+ &.show-for-portrait { display: table; }
221
+ }
222
+ thead {
223
+ &.hide-for-landscape,
224
+ &.show-for-portrait { display: table-header-group !important; }
225
+ }
226
+ tbody {
227
+ &.hide-for-landscape,
228
+ &.show-for-portrait { display: table-row-group !important; }
229
+ }
230
+ tr {
231
+ &.hide-for-landscape,
232
+ &.show-for-portrait { display: table-row !important; }
233
+ }
234
+ td,
235
+ th {
236
+ &.hide-for-landscape,
237
+ &.show-for-portrait { display: table-cell !important; }
238
+ }
239
+
240
+ @media #{$landscape} {
241
+ .show-for-landscape,
242
+ .hide-for-portrait { display: inherit !important; }
243
+ .hide-for-landscape,
244
+ .show-for-portrait { display: none !important; }
245
+
246
+ /* Specific visilbity for tables */
247
+ table {
248
+ &.show-for-landscape,
249
+ &.hide-for-portrait { display: table; }
250
+ }
251
+ thead {
252
+ &.show-for-landscape,
253
+ &.hide-for-portrait { display: table-header-group !important; }
254
+ }
255
+ tbody {
256
+ &.show-for-landscape,
257
+ &.hide-for-portrait { display: table-row-group !important; }
258
+ }
259
+ tr {
260
+ &.show-for-landscape,
261
+ &.hide-for-portrait { display: table-row !important; }
262
+ }
263
+ td,
264
+ th {
265
+ &.show-for-landscape,
266
+ &.hide-for-portrait { display: table-cell !important; }
267
+ }
268
+ }
269
+
270
+ @media #{$portrait} {
271
+ .show-for-portrait,
272
+ .hide-for-landscape { display: inherit !important; }
273
+ .hide-for-portrait,
274
+ .show-for-landscape { display: none !important; }
275
+
276
+ /* Specific visilbity for tables */
277
+ table {
278
+ &.show-for-portrait,
279
+ &.hide-for-landscape { display: table; }
280
+ }
281
+ thead {
282
+ &.show-for-portrait,
283
+ &.hide-for-landscape { display: table-header-group !important; }
284
+ }
285
+ tbody {
286
+ &.show-for-portrait,
287
+ &.hide-for-landscape { display: table-row-group !important; }
288
+ }
289
+ tr {
290
+ &.show-for-portrait,
291
+ &.hide-for-landscape { display: table-row !important; }
292
+ }
293
+ td,
294
+ th {
295
+ &.show-for-portrait,
296
+ &.hide-for-landscape { display: table-cell !important; }
297
+ }
298
+ }
299
+
300
+ /* Touch-enabled device targeting */
301
+ .show-for-touch { display: none !important; }
302
+ .hide-for-touch { display: inherit !important; }
303
+ .touch .show-for-touch { display: inherit !important; }
304
+ .touch .hide-for-touch { display: none !important; }
305
+
306
+ /* Specific visilbity for tables */
307
+ table.hide-for-touch { display: table; }
308
+ .touch table.show-for-touch { display: table; }
309
+ thead.hide-for-touch { display: table-header-group !important; }
310
+ .touch thead.show-for-touch { display: table-header-group !important; }
311
+ tbody.hide-for-touch { display: table-row-group !important; }
312
+ .touch tbody.show-for-touch { display: table-row-group !important; }
313
+ tr.hide-for-touch { display: table-row !important; }
314
+ .touch tr.show-for-touch { display: table-row !important; }
315
+ td.hide-for-touch { display: table-cell !important; }
316
+ .touch td.show-for-touch { display: table-cell !important; }
317
+ th.hide-for-touch { display: table-cell !important; }
318
+ .touch th.show-for-touch { display: table-cell !important; }
319
+
320
+ }
@@ -0,0 +1,46 @@
1
+ // Make sure the charset is set appropriately
2
+ @charset "UTF-8";
3
+
4
+ // This includes all of the foundation global elements that are needed to work with any of the other files.
5
+ @import "foundation/variables";
6
+
7
+ // Foundation Components
8
+ @import
9
+ "foundation/components/global",
10
+ "foundation/components/grid",
11
+ "foundation/components/visibility",
12
+ "foundation/components/block-grid",
13
+ "foundation/components/type",
14
+ "foundation/components/buttons",
15
+ "foundation/components/forms",
16
+ "foundation/components/custom-forms",
17
+ "foundation/components/button-groups",
18
+ "foundation/components/dropdown-buttons",
19
+ "foundation/components/split-buttons",
20
+ "foundation/components/flex-video",
21
+ "foundation/components/section",
22
+ "foundation/components/top-bar",
23
+ "foundation/components/orbit",
24
+ "foundation/components/reveal",
25
+ "foundation/components/joyride",
26
+ "foundation/components/clearing",
27
+ "foundation/components/alert-boxes",
28
+ "foundation/components/breadcrumbs",
29
+ "foundation/components/keystrokes",
30
+ "foundation/components/labels",
31
+ "foundation/components/inline-lists",
32
+ "foundation/components/pagination",
33
+ "foundation/components/panels",
34
+ "foundation/components/pricing-tables",
35
+ "foundation/components/progress-bars",
36
+ "foundation/components/side-nav",
37
+ "foundation/components/sub-nav",
38
+ "foundation/components/switch",
39
+ "foundation/components/magellan",
40
+ "foundation/components/tables",
41
+ "foundation/components/thumbs",
42
+ "foundation/components/tooltips",
43
+ "foundation/components/dropdown";
44
+
45
+
46
+