underoos 1.0.0 → 1.1.0
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/Gemfile +5 -0
- data/Gemfile.lock +21 -7
- data/README.md +85 -10
- data/Rakefile +36 -1
- data/app/assets/javascripts/docs.js +6 -0
- data/app/assets/javascripts/styleguide.coffee +162 -0
- data/app/assets/javascripts/underoos.js +0 -1
- data/app/assets/stylesheets/base/_base.sass +14 -0
- data/app/assets/stylesheets/base/_buttons.sass +68 -0
- data/app/assets/stylesheets/base/_forms.sass +313 -24
- data/app/assets/stylesheets/base/_helpers.sass +27 -13
- data/app/assets/stylesheets/base/_normalize.sass +17 -9
- data/app/assets/stylesheets/base/_scaffold.sass +85 -0
- data/app/assets/stylesheets/base/_tables.sass +77 -0
- data/app/assets/stylesheets/base/_transitions.sass +10 -2
- data/app/assets/stylesheets/base/_typography.sass +183 -21
- data/app/assets/stylesheets/components/_accordions.sass +38 -0
- data/app/assets/stylesheets/components/_breadcrumbs.sass +19 -5
- data/app/assets/stylesheets/components/_button-groups.sass +43 -0
- data/app/assets/stylesheets/components/_carets.sass +13 -2
- data/app/assets/stylesheets/components/_carousels.sass +32 -0
- data/app/assets/stylesheets/components/_close.sass +15 -2
- data/app/assets/stylesheets/components/_components.sass +28 -0
- data/app/assets/stylesheets/components/_decals.sass +14 -0
- data/app/assets/stylesheets/components/_dropdowns.sass +88 -4
- data/app/assets/stylesheets/components/_media.sass +36 -0
- data/app/assets/stylesheets/components/_modals.sass +29 -0
- data/app/assets/stylesheets/components/_nav-lists.sass +20 -0
- data/app/assets/stylesheets/components/_navbars.sass +64 -3
- data/app/assets/stylesheets/components/_notifications.sass +112 -16
- data/app/assets/stylesheets/components/_paddles.sass +26 -0
- data/app/assets/stylesheets/components/_pagination.sass +23 -3
- data/app/assets/stylesheets/components/_pills.sass +80 -0
- data/app/assets/stylesheets/components/_popovers.sass +28 -0
- data/app/assets/stylesheets/components/_progress-bars.sass +33 -1
- data/app/assets/stylesheets/components/_tabs.sass +79 -0
- data/app/assets/stylesheets/components/_tooltips.sass +26 -0
- data/app/assets/stylesheets/components/_wells.sass +9 -0
- data/app/assets/stylesheets/layouts/_containers.sass +12 -0
- data/app/assets/stylesheets/layouts/_layouts.sass +5 -0
- data/app/assets/stylesheets/layouts/_print.sass +5 -1
- data/app/assets/stylesheets/layouts/_queries.sass +18 -15
- data/app/assets/stylesheets/layouts/_upgrades.sass +51 -40
- data/app/assets/stylesheets/mixins/_arrows.sass +13 -1
- data/app/assets/stylesheets/mixins/_clearfixins.sass +18 -4
- data/app/assets/stylesheets/mixins/_coloring.sass +10 -1
- data/app/assets/stylesheets/mixins/_columns.sass +16 -3
- data/app/assets/stylesheets/mixins/_conversions.sass +18 -6
- data/app/assets/stylesheets/mixins/_font-size.sass +16 -1
- data/app/assets/stylesheets/mixins/_image-tools.sass +12 -1
- data/app/assets/stylesheets/mixins/_inline-block.sass +21 -0
- data/app/assets/stylesheets/mixins/_ir.sass +14 -1
- data/app/assets/stylesheets/mixins/_mixins.sass +6 -0
- data/app/assets/stylesheets/mixins/_responsive.sass +16 -0
- data/app/assets/stylesheets/mixins/_sticky-footer.sass +52 -0
- data/app/assets/stylesheets/mixins/_tab-focus.sass +8 -1
- data/app/assets/stylesheets/mixins/_timing-equations.sass +34 -1
- data/app/assets/stylesheets/mixins/_visibility.sass +18 -5
- data/app/assets/stylesheets/polyfills/_box-shadow.sass +10 -0
- data/app/assets/stylesheets/polyfills/_box-sizing.sass +10 -1
- data/app/assets/stylesheets/polyfills/_functions.sass +14 -1
- data/app/assets/stylesheets/polyfills/_opacity.sass +10 -1
- data/app/assets/stylesheets/polyfills/_polyfills.sass +9 -2
- data/app/assets/stylesheets/polyfills/_transition.sass +10 -0
- data/app/assets/stylesheets/polyfills/_user-select.sass +10 -0
- data/app/assets/stylesheets/settings/_config.sass +26 -0
- data/app/assets/stylesheets/settings/_settings.sass +7 -0
- data/app/assets/stylesheets/settings/_theme.sass +189 -0
- data/app/assets/stylesheets/{styleguide.sass → underoos-docs.sass} +20 -116
- data/app/assets/stylesheets/underoos.sass +5 -16
- data/config.ru +1 -3
- data/features/generator.feature +13 -4
- data/lib/generators/underoos/assets_generator.rb +4 -2
- data/lib/underoos/version.rb +1 -1
- data/public/images.html +157 -0
- data/public/index.html +149 -0
- data/public/sherpa.css +306 -0
- data/public/styles.html +5374 -0
- data/script/javascripts +0 -1
- data/sherpa/config.yml +96 -0
- data/sherpa/layouts/images.mustache +17 -0
- data/sherpa/layouts/layout.mustache +77 -0
- data/sherpa/layouts/overview.mustache +19 -0
- data/sherpa/layouts/raw.mustache +25 -0
- data/sherpa/layouts/section.mustache +67 -0
- data/underoos.gemspec +0 -2
- data/vendor/assets/javascripts/bootstrap-alert.js +28 -32
- data/vendor/assets/javascripts/bootstrap-button.js +29 -33
- data/vendor/assets/javascripts/bootstrap-collapse.js +45 -26
- data/vendor/assets/javascripts/bootstrap-dropdown.js +18 -10
- data/vendor/assets/javascripts/bootstrap-modal.js +25 -17
- data/vendor/assets/javascripts/bootstrap-popover.js +13 -10
- data/vendor/assets/javascripts/bootstrap-tab.js +12 -7
- data/vendor/assets/javascripts/bootstrap-tooltip.js +40 -35
- data/vendor/assets/javascripts/bootstrap-transition.js +30 -20
- data/vendor/assets/javascripts/bootstrap-typeahead.js +24 -10
- data/vendor/assets/javascripts/sherpa.coffee +78 -0
- metadata +34 -75
- data/app/assets/javascripts/styleguide.js +0 -132
- data/app/assets/stylesheets/base/_elements.sass +0 -61
- data/app/assets/stylesheets/polyfills/_inline-block.sass +0 -8
- data/app/assets/stylesheets/themes/_default.sass +0 -119
- data/app/controllers/underoos/styleguides_controller.rb +0 -79
- data/app/views/shared/_upgrades.html.haml +0 -12
- data/app/views/underoos/styleguides/_assets.haml +0 -42
- data/app/views/underoos/styleguides/_components.haml +0 -42
- data/app/views/underoos/styleguides/_elements.haml +0 -242
- data/app/views/underoos/styleguides/_forms.haml +0 -305
- data/app/views/underoos/styleguides/_layouts.haml +0 -76
- data/app/views/underoos/styleguides/_palettes.haml +0 -18
- data/app/views/underoos/styleguides/_resources.haml +0 -27
- data/app/views/underoos/styleguides/_tables.haml +0 -124
- data/app/views/underoos/styleguides/_typography.haml +0 -284
- data/app/views/underoos/styleguides/_utilities.haml +0 -270
- data/app/views/underoos/styleguides/components/_accordions.haml +0 -83
- data/app/views/underoos/styleguides/components/_breadcrumbs.haml +0 -42
- data/app/views/underoos/styleguides/components/_button-groups.haml +0 -162
- data/app/views/underoos/styleguides/components/_carets.haml +0 -28
- data/app/views/underoos/styleguides/components/_close.haml +0 -20
- data/app/views/underoos/styleguides/components/_decals.haml +0 -40
- data/app/views/underoos/styleguides/components/_dropdowns.haml +0 -189
- data/app/views/underoos/styleguides/components/_media.haml +0 -78
- data/app/views/underoos/styleguides/components/_modals.haml +0 -42
- data/app/views/underoos/styleguides/components/_nav-lists.haml +0 -52
- data/app/views/underoos/styleguides/components/_navbars.haml +0 -144
- data/app/views/underoos/styleguides/components/_navs-showcase.haml +0 -27
- data/app/views/underoos/styleguides/components/_notifications.haml +0 -169
- data/app/views/underoos/styleguides/components/_paddles.haml +0 -68
- data/app/views/underoos/styleguides/components/_pagination.haml +0 -64
- data/app/views/underoos/styleguides/components/_popovers.haml +0 -33
- data/app/views/underoos/styleguides/components/_progress-bars.haml +0 -72
- data/app/views/underoos/styleguides/components/_tabs-pills.haml +0 -241
- data/app/views/underoos/styleguides/components/_tooltips.haml +0 -37
- data/app/views/underoos/styleguides/components/_wells.haml +0 -29
- data/app/views/underoos/styleguides/index.html.haml +0 -259
- data/app/views/underoos/styleguides/partials/_form-template.haml +0 -171
- data/app/views/underoos/styleguides/partials/_table-data.haml +0 -33
- data/app/views/underoos/styleguides/partials/_transitions.haml +0 -136
- data/config/routes.rb +0 -3
- data/vendor/assets/javascripts/bootstrap-scrollspy.js +0 -125
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* ===================================================
|
|
2
|
-
* bootstrap-transition.js v2.0.
|
|
2
|
+
* bootstrap-transition.js v2.0.3
|
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#transitions
|
|
4
4
|
* ===================================================
|
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
|
@@ -17,35 +17,45 @@
|
|
|
17
17
|
* limitations under the License.
|
|
18
18
|
* ========================================================== */
|
|
19
19
|
|
|
20
|
-
|
|
20
|
+
|
|
21
|
+
!function ($) {
|
|
21
22
|
|
|
22
23
|
$(function () {
|
|
23
24
|
|
|
24
|
-
"use strict"
|
|
25
|
+
"use strict"; // jshint ;_;
|
|
26
|
+
|
|
25
27
|
|
|
26
|
-
/* CSS TRANSITION SUPPORT (
|
|
28
|
+
/* CSS TRANSITION SUPPORT (http://www.modernizr.com/)
|
|
27
29
|
* ======================================================= */
|
|
28
30
|
|
|
29
31
|
$.support.transition = (function () {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
32
|
+
|
|
33
|
+
var transitionEnd = (function () {
|
|
34
|
+
|
|
35
|
+
var el = document.createElement('bootstrap')
|
|
36
|
+
, transEndEventNames = {
|
|
37
|
+
'WebkitTransition' : 'webkitTransitionEnd'
|
|
38
|
+
, 'MozTransition' : 'transitionend'
|
|
39
|
+
, 'OTransition' : 'oTransitionEnd'
|
|
40
|
+
, 'msTransition' : 'MSTransitionEnd'
|
|
41
|
+
, 'transition' : 'transitionend'
|
|
42
|
+
}
|
|
43
|
+
, name
|
|
44
|
+
|
|
45
|
+
for (name in transEndEventNames){
|
|
46
|
+
if (el.style[name] !== undefined) {
|
|
47
|
+
return transEndEventNames[name]
|
|
43
48
|
}
|
|
44
|
-
|
|
45
|
-
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
}())
|
|
52
|
+
|
|
53
|
+
return transitionEnd && {
|
|
54
|
+
end: transitionEnd
|
|
46
55
|
}
|
|
56
|
+
|
|
47
57
|
})()
|
|
48
58
|
|
|
49
59
|
})
|
|
50
60
|
|
|
51
|
-
}(
|
|
61
|
+
}(window.jQuery);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* =============================================================
|
|
2
|
-
* bootstrap-typeahead.js v2.0.
|
|
2
|
+
* bootstrap-typeahead.js v2.0.3
|
|
3
3
|
* http://twitter.github.com/bootstrap/javascript.html#typeahead
|
|
4
4
|
* =============================================================
|
|
5
5
|
* Copyright 2012 Twitter, Inc.
|
|
@@ -17,16 +17,22 @@
|
|
|
17
17
|
* limitations under the License.
|
|
18
18
|
* ============================================================ */
|
|
19
19
|
|
|
20
|
-
!function( $ ){
|
|
21
20
|
|
|
22
|
-
|
|
21
|
+
!function($){
|
|
23
22
|
|
|
24
|
-
|
|
23
|
+
"use strict"; // jshint ;_;
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
/* TYPEAHEAD PUBLIC CLASS DEFINITION
|
|
27
|
+
* ================================= */
|
|
28
|
+
|
|
29
|
+
var Typeahead = function (element, options) {
|
|
25
30
|
this.$element = $(element)
|
|
26
31
|
this.options = $.extend({}, $.fn.typeahead.defaults, options)
|
|
27
32
|
this.matcher = this.options.matcher || this.matcher
|
|
28
33
|
this.sorter = this.options.sorter || this.sorter
|
|
29
34
|
this.highlighter = this.options.highlighter || this.highlighter
|
|
35
|
+
this.updater = this.options.updater || this.updater
|
|
30
36
|
this.$menu = $(this.options.menu).appendTo('body')
|
|
31
37
|
this.source = this.options.source
|
|
32
38
|
this.shown = false
|
|
@@ -39,11 +45,16 @@
|
|
|
39
45
|
|
|
40
46
|
, select: function () {
|
|
41
47
|
var val = this.$menu.find('.active').attr('data-value')
|
|
42
|
-
this.$element
|
|
43
|
-
|
|
48
|
+
this.$element
|
|
49
|
+
.val(this.updater(val))
|
|
50
|
+
.change()
|
|
44
51
|
return this.hide()
|
|
45
52
|
}
|
|
46
53
|
|
|
54
|
+
, updater: function (item) {
|
|
55
|
+
return item
|
|
56
|
+
}
|
|
57
|
+
|
|
47
58
|
, show: function () {
|
|
48
59
|
var pos = $.extend({}, this.$element.offset(), {
|
|
49
60
|
height: this.$element[0].offsetHeight
|
|
@@ -77,7 +88,7 @@
|
|
|
77
88
|
}
|
|
78
89
|
|
|
79
90
|
items = $.grep(this.source, function (item) {
|
|
80
|
-
|
|
91
|
+
return that.matcher(item)
|
|
81
92
|
})
|
|
82
93
|
|
|
83
94
|
items = this.sorter(items)
|
|
@@ -109,7 +120,8 @@
|
|
|
109
120
|
}
|
|
110
121
|
|
|
111
122
|
, highlighter: function (item) {
|
|
112
|
-
|
|
123
|
+
var query = this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, '\\$&')
|
|
124
|
+
return item.replace(new RegExp('(' + query + ')', 'ig'), function ($1, match) {
|
|
113
125
|
return '<strong>' + match + '</strong>'
|
|
114
126
|
})
|
|
115
127
|
}
|
|
@@ -201,11 +213,13 @@
|
|
|
201
213
|
break
|
|
202
214
|
|
|
203
215
|
case 38: // up arrow
|
|
216
|
+
if (e.type != 'keydown') break
|
|
204
217
|
e.preventDefault()
|
|
205
218
|
this.prev()
|
|
206
219
|
break
|
|
207
220
|
|
|
208
221
|
case 40: // down arrow
|
|
222
|
+
if (e.type != 'keydown') break
|
|
209
223
|
e.preventDefault()
|
|
210
224
|
this.next()
|
|
211
225
|
break
|
|
@@ -236,7 +250,7 @@
|
|
|
236
250
|
/* TYPEAHEAD PLUGIN DEFINITION
|
|
237
251
|
* =========================== */
|
|
238
252
|
|
|
239
|
-
$.fn.typeahead = function (
|
|
253
|
+
$.fn.typeahead = function (option) {
|
|
240
254
|
return this.each(function () {
|
|
241
255
|
var $this = $(this)
|
|
242
256
|
, data = $this.data('typeahead')
|
|
@@ -268,4 +282,4 @@
|
|
|
268
282
|
})
|
|
269
283
|
})
|
|
270
284
|
|
|
271
|
-
}(
|
|
285
|
+
}(window.jQuery);
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
|
|
2
|
+
#~
|
|
3
|
+
# Used with "sherpa" styleguides for augmenting behavior for navigation
|
|
4
|
+
# and component definitions. Include this file only in the styleguide page.
|
|
5
|
+
|
|
6
|
+
class Sherpa
|
|
7
|
+
constructor: ->
|
|
8
|
+
@initialize()
|
|
9
|
+
|
|
10
|
+
initialize: ->
|
|
11
|
+
@domLookup()
|
|
12
|
+
@addListeners()
|
|
13
|
+
@activateMain()
|
|
14
|
+
@activateUsages()
|
|
15
|
+
|
|
16
|
+
# Create references for common DOM elements
|
|
17
|
+
domLookup: ->
|
|
18
|
+
@subnav_lists = $('.sherpa-anchor-nav li')
|
|
19
|
+
@subnav_links = $('.sherpa-anchor-nav a')
|
|
20
|
+
@usages = $('.sherpa-usage > h4')
|
|
21
|
+
@anchor_links = $('.sherpa-wrapper [href=#]')
|
|
22
|
+
|
|
23
|
+
# Listen to events from DOM elements
|
|
24
|
+
addListeners: ->
|
|
25
|
+
@subnav_links.on 'click', @activateSubnav
|
|
26
|
+
@anchor_links.on 'click', @disableAnchors
|
|
27
|
+
@usages.on 'click', @usageToggle
|
|
28
|
+
|
|
29
|
+
# Sherpa Specific
|
|
30
|
+
# Add the activate class to the main nav item based on the id of the body
|
|
31
|
+
activateMain: ->
|
|
32
|
+
active = $('body').attr('id')
|
|
33
|
+
main_nav = $('.sherpa-dox-nav li a')
|
|
34
|
+
for item in main_nav
|
|
35
|
+
link = $(item)
|
|
36
|
+
text = link.html().toLowerCase()
|
|
37
|
+
if text is active then link.parent('li').addClass('active')
|
|
38
|
+
|
|
39
|
+
# Set the active state on anchors after click
|
|
40
|
+
activateSubnav:(e) =>
|
|
41
|
+
@subnav_lists.removeClass('active')
|
|
42
|
+
$(e.target).parent('li').addClass('active')
|
|
43
|
+
|
|
44
|
+
# Disable `href="#"` within the guide
|
|
45
|
+
disableAnchors:(e) =>
|
|
46
|
+
e.preventDefault()
|
|
47
|
+
|
|
48
|
+
# Find the pre block closest to the selected usage header
|
|
49
|
+
getPreTag:(el) ->
|
|
50
|
+
el.parent('.sherpa-usage').find('pre').first()
|
|
51
|
+
|
|
52
|
+
# On page initialization hide the pre block and set text accordingly
|
|
53
|
+
activateUsages: ->
|
|
54
|
+
@usages.addClass('sherpa-togglable')
|
|
55
|
+
@usages.prepend("Hide ")
|
|
56
|
+
@usages.trigger 'click'
|
|
57
|
+
|
|
58
|
+
# Toggle the usage example on click
|
|
59
|
+
usageToggle:(e) =>
|
|
60
|
+
el = $(e.target)
|
|
61
|
+
pre = @getPreTag(el)
|
|
62
|
+
if pre.hasClass('sherpa-hidden') then @usageShow(el, pre) else @usageHide(el, pre)
|
|
63
|
+
|
|
64
|
+
# Show the usage example
|
|
65
|
+
usageShow:(el, pre) ->
|
|
66
|
+
text = el.html()
|
|
67
|
+
el.html(text.replace(/^View/, "Hide"))
|
|
68
|
+
pre.removeClass('sherpa-hidden')
|
|
69
|
+
|
|
70
|
+
# Hide the usage example
|
|
71
|
+
usageHide:(el, pre) ->
|
|
72
|
+
text = el.html()
|
|
73
|
+
el.html(text.replace(/^Hide/, "View"))
|
|
74
|
+
pre.addClass('sherpa-hidden')
|
|
75
|
+
|
|
76
|
+
# Get this party started
|
|
77
|
+
new Sherpa()
|
|
78
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: underoos
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,11 +9,11 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-
|
|
12
|
+
date: 2012-06-01 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rails
|
|
16
|
-
requirement: &
|
|
16
|
+
requirement: &70301044251460 !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
@@ -21,10 +21,10 @@ dependencies:
|
|
|
21
21
|
version: 3.1.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements: *
|
|
24
|
+
version_requirements: *70301044251460
|
|
25
25
|
- !ruby/object:Gem::Dependency
|
|
26
26
|
name: sass-rails
|
|
27
|
-
requirement: &
|
|
27
|
+
requirement: &70301044250940 !ruby/object:Gem::Requirement
|
|
28
28
|
none: false
|
|
29
29
|
requirements:
|
|
30
30
|
- - ! '>='
|
|
@@ -32,21 +32,10 @@ dependencies:
|
|
|
32
32
|
version: '0'
|
|
33
33
|
type: :runtime
|
|
34
34
|
prerelease: false
|
|
35
|
-
version_requirements: *
|
|
36
|
-
- !ruby/object:Gem::Dependency
|
|
37
|
-
name: haml-rails
|
|
38
|
-
requirement: &2235673060 !ruby/object:Gem::Requirement
|
|
39
|
-
none: false
|
|
40
|
-
requirements:
|
|
41
|
-
- - ! '>='
|
|
42
|
-
- !ruby/object:Gem::Version
|
|
43
|
-
version: '0'
|
|
44
|
-
type: :runtime
|
|
45
|
-
prerelease: false
|
|
46
|
-
version_requirements: *2235673060
|
|
35
|
+
version_requirements: *70301044250940
|
|
47
36
|
- !ruby/object:Gem::Dependency
|
|
48
37
|
name: cucumber
|
|
49
|
-
requirement: &
|
|
38
|
+
requirement: &70301044250020 !ruby/object:Gem::Requirement
|
|
50
39
|
none: false
|
|
51
40
|
requirements:
|
|
52
41
|
- - ! '>='
|
|
@@ -54,21 +43,10 @@ dependencies:
|
|
|
54
43
|
version: '0'
|
|
55
44
|
type: :development
|
|
56
45
|
prerelease: false
|
|
57
|
-
version_requirements: *
|
|
46
|
+
version_requirements: *70301044250020
|
|
58
47
|
- !ruby/object:Gem::Dependency
|
|
59
48
|
name: aruba
|
|
60
|
-
requirement: &
|
|
61
|
-
none: false
|
|
62
|
-
requirements:
|
|
63
|
-
- - ! '>='
|
|
64
|
-
- !ruby/object:Gem::Version
|
|
65
|
-
version: '0'
|
|
66
|
-
type: :development
|
|
67
|
-
prerelease: false
|
|
68
|
-
version_requirements: *2235687000
|
|
69
|
-
- !ruby/object:Gem::Dependency
|
|
70
|
-
name: jquery-rails
|
|
71
|
-
requirement: &2235685560 !ruby/object:Gem::Requirement
|
|
49
|
+
requirement: &70301044249140 !ruby/object:Gem::Requirement
|
|
72
50
|
none: false
|
|
73
51
|
requirements:
|
|
74
52
|
- - ! '>='
|
|
@@ -76,7 +54,7 @@ dependencies:
|
|
|
76
54
|
version: '0'
|
|
77
55
|
type: :development
|
|
78
56
|
prerelease: false
|
|
79
|
-
version_requirements: *
|
|
57
|
+
version_requirements: *70301044249140
|
|
80
58
|
description: Starter styles in Sass
|
|
81
59
|
email:
|
|
82
60
|
- matt.kitt@modeset.com
|
|
@@ -92,10 +70,12 @@ files:
|
|
|
92
70
|
- Procfile
|
|
93
71
|
- README.md
|
|
94
72
|
- Rakefile
|
|
95
|
-
- app/assets/javascripts/
|
|
73
|
+
- app/assets/javascripts/docs.js
|
|
74
|
+
- app/assets/javascripts/styleguide.coffee
|
|
96
75
|
- app/assets/javascripts/underoos.js
|
|
76
|
+
- app/assets/stylesheets/base/_base.sass
|
|
97
77
|
- app/assets/stylesheets/base/_button-btn-mixin.sass
|
|
98
|
-
- app/assets/stylesheets/base/
|
|
78
|
+
- app/assets/stylesheets/base/_buttons.sass
|
|
99
79
|
- app/assets/stylesheets/base/_forms.sass
|
|
100
80
|
- app/assets/stylesheets/base/_helpers.sass
|
|
101
81
|
- app/assets/stylesheets/base/_normalize.sass
|
|
@@ -109,6 +89,7 @@ files:
|
|
|
109
89
|
- app/assets/stylesheets/components/_carets.sass
|
|
110
90
|
- app/assets/stylesheets/components/_carousels.sass
|
|
111
91
|
- app/assets/stylesheets/components/_close.sass
|
|
92
|
+
- app/assets/stylesheets/components/_components.sass
|
|
112
93
|
- app/assets/stylesheets/components/_decals.sass
|
|
113
94
|
- app/assets/stylesheets/components/_dropdowns.sass
|
|
114
95
|
- app/assets/stylesheets/components/_media.sass
|
|
@@ -125,6 +106,7 @@ files:
|
|
|
125
106
|
- app/assets/stylesheets/components/_tooltips.sass
|
|
126
107
|
- app/assets/stylesheets/components/_wells.sass
|
|
127
108
|
- app/assets/stylesheets/layouts/_containers.sass
|
|
109
|
+
- app/assets/stylesheets/layouts/_layouts.sass
|
|
128
110
|
- app/assets/stylesheets/layouts/_print.sass
|
|
129
111
|
- app/assets/stylesheets/layouts/_queries.sass
|
|
130
112
|
- app/assets/stylesheets/layouts/_upgrades.sass
|
|
@@ -135,60 +117,27 @@ files:
|
|
|
135
117
|
- app/assets/stylesheets/mixins/_conversions.sass
|
|
136
118
|
- app/assets/stylesheets/mixins/_font-size.sass
|
|
137
119
|
- app/assets/stylesheets/mixins/_image-tools.sass
|
|
120
|
+
- app/assets/stylesheets/mixins/_inline-block.sass
|
|
138
121
|
- app/assets/stylesheets/mixins/_ir.sass
|
|
139
122
|
- app/assets/stylesheets/mixins/_mixins.sass
|
|
123
|
+
- app/assets/stylesheets/mixins/_responsive.sass
|
|
124
|
+
- app/assets/stylesheets/mixins/_sticky-footer.sass
|
|
140
125
|
- app/assets/stylesheets/mixins/_tab-focus.sass
|
|
141
126
|
- app/assets/stylesheets/mixins/_timing-equations.sass
|
|
142
127
|
- app/assets/stylesheets/mixins/_visibility.sass
|
|
143
128
|
- app/assets/stylesheets/polyfills/_box-shadow.sass
|
|
144
129
|
- app/assets/stylesheets/polyfills/_box-sizing.sass
|
|
145
130
|
- app/assets/stylesheets/polyfills/_functions.sass
|
|
146
|
-
- app/assets/stylesheets/polyfills/_inline-block.sass
|
|
147
131
|
- app/assets/stylesheets/polyfills/_opacity.sass
|
|
148
132
|
- app/assets/stylesheets/polyfills/_polyfills.sass
|
|
149
133
|
- app/assets/stylesheets/polyfills/_transition.sass
|
|
150
134
|
- app/assets/stylesheets/polyfills/_user-select.sass
|
|
151
|
-
- app/assets/stylesheets/
|
|
152
|
-
- app/assets/stylesheets/
|
|
135
|
+
- app/assets/stylesheets/settings/_config.sass
|
|
136
|
+
- app/assets/stylesheets/settings/_settings.sass
|
|
137
|
+
- app/assets/stylesheets/settings/_theme.sass
|
|
138
|
+
- app/assets/stylesheets/underoos-docs.sass
|
|
153
139
|
- app/assets/stylesheets/underoos.sass
|
|
154
|
-
- app/controllers/underoos/styleguides_controller.rb
|
|
155
|
-
- app/views/shared/_upgrades.html.haml
|
|
156
|
-
- app/views/underoos/styleguides/_assets.haml
|
|
157
|
-
- app/views/underoos/styleguides/_components.haml
|
|
158
|
-
- app/views/underoos/styleguides/_elements.haml
|
|
159
|
-
- app/views/underoos/styleguides/_forms.haml
|
|
160
|
-
- app/views/underoos/styleguides/_layouts.haml
|
|
161
|
-
- app/views/underoos/styleguides/_palettes.haml
|
|
162
|
-
- app/views/underoos/styleguides/_resources.haml
|
|
163
|
-
- app/views/underoos/styleguides/_tables.haml
|
|
164
|
-
- app/views/underoos/styleguides/_typography.haml
|
|
165
|
-
- app/views/underoos/styleguides/_utilities.haml
|
|
166
|
-
- app/views/underoos/styleguides/components/_accordions.haml
|
|
167
|
-
- app/views/underoos/styleguides/components/_breadcrumbs.haml
|
|
168
|
-
- app/views/underoos/styleguides/components/_button-groups.haml
|
|
169
|
-
- app/views/underoos/styleguides/components/_carets.haml
|
|
170
|
-
- app/views/underoos/styleguides/components/_close.haml
|
|
171
|
-
- app/views/underoos/styleguides/components/_decals.haml
|
|
172
|
-
- app/views/underoos/styleguides/components/_dropdowns.haml
|
|
173
|
-
- app/views/underoos/styleguides/components/_media.haml
|
|
174
|
-
- app/views/underoos/styleguides/components/_modals.haml
|
|
175
|
-
- app/views/underoos/styleguides/components/_nav-lists.haml
|
|
176
|
-
- app/views/underoos/styleguides/components/_navbars.haml
|
|
177
|
-
- app/views/underoos/styleguides/components/_navs-showcase.haml
|
|
178
|
-
- app/views/underoos/styleguides/components/_notifications.haml
|
|
179
|
-
- app/views/underoos/styleguides/components/_paddles.haml
|
|
180
|
-
- app/views/underoos/styleguides/components/_pagination.haml
|
|
181
|
-
- app/views/underoos/styleguides/components/_popovers.haml
|
|
182
|
-
- app/views/underoos/styleguides/components/_progress-bars.haml
|
|
183
|
-
- app/views/underoos/styleguides/components/_tabs-pills.haml
|
|
184
|
-
- app/views/underoos/styleguides/components/_tooltips.haml
|
|
185
|
-
- app/views/underoos/styleguides/components/_wells.haml
|
|
186
|
-
- app/views/underoos/styleguides/index.html.haml
|
|
187
|
-
- app/views/underoos/styleguides/partials/_form-template.haml
|
|
188
|
-
- app/views/underoos/styleguides/partials/_table-data.haml
|
|
189
|
-
- app/views/underoos/styleguides/partials/_transitions.haml
|
|
190
140
|
- config.ru
|
|
191
|
-
- config/routes.rb
|
|
192
141
|
- features/generator.feature
|
|
193
142
|
- features/step_definitions/underoos_steps.rb
|
|
194
143
|
- features/support/env.rb
|
|
@@ -202,7 +151,17 @@ files:
|
|
|
202
151
|
- public/apple-touch-icon-precomposed.png
|
|
203
152
|
- public/apple-touch-icon.png
|
|
204
153
|
- public/favicon.ico
|
|
154
|
+
- public/images.html
|
|
155
|
+
- public/index.html
|
|
156
|
+
- public/sherpa.css
|
|
157
|
+
- public/styles.html
|
|
205
158
|
- script/javascripts
|
|
159
|
+
- sherpa/config.yml
|
|
160
|
+
- sherpa/layouts/images.mustache
|
|
161
|
+
- sherpa/layouts/layout.mustache
|
|
162
|
+
- sherpa/layouts/overview.mustache
|
|
163
|
+
- sherpa/layouts/raw.mustache
|
|
164
|
+
- sherpa/layouts/section.mustache
|
|
206
165
|
- underoos.gemspec
|
|
207
166
|
- vendor/assets/javascripts/bootstrap-alert.js
|
|
208
167
|
- vendor/assets/javascripts/bootstrap-button.js
|
|
@@ -210,12 +169,12 @@ files:
|
|
|
210
169
|
- vendor/assets/javascripts/bootstrap-dropdown.js
|
|
211
170
|
- vendor/assets/javascripts/bootstrap-modal.js
|
|
212
171
|
- vendor/assets/javascripts/bootstrap-popover.js
|
|
213
|
-
- vendor/assets/javascripts/bootstrap-scrollspy.js
|
|
214
172
|
- vendor/assets/javascripts/bootstrap-tab.js
|
|
215
173
|
- vendor/assets/javascripts/bootstrap-tooltip.js
|
|
216
174
|
- vendor/assets/javascripts/bootstrap-transition.js
|
|
217
175
|
- vendor/assets/javascripts/bootstrap-typeahead.js
|
|
218
176
|
- vendor/assets/javascripts/prettify.js
|
|
177
|
+
- vendor/assets/javascripts/sherpa.coffee
|
|
219
178
|
homepage: http://underoos.modeset.com/
|
|
220
179
|
licenses: []
|
|
221
180
|
post_install_message:
|