groundworkcss 2.0.4 → 2.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. data/README.md +2 -1
  2. data/app/assets/javascripts/groundworkcss/components/checklists.coffee +1 -1
  3. data/app/assets/javascripts/groundworkcss/components/equalizeColumns.coffee +2 -4
  4. data/app/assets/javascripts/groundworkcss/components/forms.coffee +16 -23
  5. data/app/assets/javascripts/groundworkcss/components/menus.coffee +9 -4
  6. data/app/assets/javascripts/groundworkcss/components/navigation.coffee +21 -11
  7. data/app/assets/javascripts/groundworkcss/components/tabs.coffee +17 -8
  8. data/app/assets/javascripts/groundworkcss/plugins/jquery-placeholderText.coffee +15 -5
  9. data/app/assets/javascripts/groundworkcss/plugins/jquery-responsiveTables.coffee +4 -3
  10. data/app/assets/javascripts/groundworkcss/plugins/jquery-responsiveText.coffee +8 -4
  11. data/app/assets/javascripts/groundworkcss/plugins/jquery-truncateLines.coffee +21 -32
  12. data/app/assets/stylesheets/groundworkcss/_settings.scss +9 -3
  13. data/app/assets/stylesheets/groundworkcss/anim/_all-animations.scss +1 -0
  14. data/app/assets/stylesheets/groundworkcss/anim/_slide.scss +96 -0
  15. data/app/assets/stylesheets/groundworkcss/base/_helpers.scss +79 -81
  16. data/app/assets/stylesheets/groundworkcss/base/_reset.scss +4 -2
  17. data/app/assets/stylesheets/groundworkcss/core/_defaults.scss +2 -0
  18. data/app/assets/stylesheets/groundworkcss/core/_mixins-core.scss +21 -28
  19. data/app/assets/stylesheets/groundworkcss/core/_palette.scss +5 -0
  20. data/app/assets/stylesheets/groundworkcss/groundwork-anim.scss +35 -0
  21. data/app/assets/stylesheets/groundworkcss/groundwork-core.scss +16 -0
  22. data/app/assets/stylesheets/groundworkcss/groundwork-ie.scss +0 -12
  23. data/app/assets/stylesheets/groundworkcss/groundwork-responsive.scss +28 -0
  24. data/app/assets/stylesheets/groundworkcss/groundwork-type.scss +30 -0
  25. data/app/assets/stylesheets/groundworkcss/groundwork-ui.scss +34 -0
  26. data/app/assets/stylesheets/groundworkcss/groundwork.scss +1 -0
  27. data/app/assets/stylesheets/groundworkcss/responsive/_desktop.scss +76 -60
  28. data/app/assets/stylesheets/groundworkcss/responsive/_mobile.scss +76 -60
  29. data/app/assets/stylesheets/groundworkcss/responsive/_small-tablet.scss +76 -60
  30. data/app/assets/stylesheets/groundworkcss/type/_typography.scss +31 -16
  31. data/app/assets/stylesheets/groundworkcss/ui/_forms.scss +5 -12
  32. data/app/assets/stylesheets/groundworkcss/ui/_nav.scss +107 -15
  33. data/app/views/groundworkdocs/navigation.html.erb +245 -55
  34. data/app/views/groundworkdocs/typography.html.erb +2 -2
  35. data/app/views/layouts/groundworkdocs.html.erb +151 -113
  36. data/groundworkcss-0.4.4.gem +0 -0
  37. data/groundworkcss-2.0.4.gem +0 -0
  38. data/groundworkcss-2.0.7.gem +0 -0
  39. data/lib/groundworkcss/generators/docs_generator.rb +16 -16
  40. data/lib/groundworkcss/version.rb +1 -1
  41. metadata +12 -2
data/README.md CHANGED
@@ -197,4 +197,5 @@ By default assets that are precompiled will be located in the `public/assets/` f
197
197
  # Dependencies
198
198
  * compass-rails (~> 1)
199
199
  * rails (~> 3.1)
200
- * jquery-rails (~> 1.0)
200
+ * jquery-rails (~> 3)
201
+ * autoprefixer-rails (~> 0.7)
@@ -5,4 +5,4 @@ $ ->
5
5
  $(@).attr('aria-checked', "false")
6
6
  else
7
7
  $(@).attr('aria-checked', "true")
8
- $(@).removeClass('checked completed').removeAttr('data-checked').removeAttr('checked')
8
+ $(@).removeClass('checked completed').removeAttr('data-checked checked')
@@ -1,13 +1,12 @@
1
1
  $(window).on 'load resize', ->
2
- # initialize after page load and on resize
3
- equalizeColumns();
2
+ equalizeColumns()
4
3
 
5
4
  equalizeColumns = ->
6
5
  $('.row.equalize').each ->
7
6
  $row = $ this
8
7
  tallest = 0
9
8
  collapsed = false
10
-
9
+
11
10
  $row.children().each (i) ->
12
11
  $this = $ this
13
12
  $this.css('minHeight','1px')
@@ -16,6 +15,5 @@ equalizeColumns = ->
16
15
  $this.addClass('equal') unless $this.hasClass('equal')
17
16
  if $this.outerHeight() > tallest
18
17
  tallest = $this.outerHeight()
19
- return
20
18
 
21
19
  $row.children().css('min-height', tallest) unless collapsed
@@ -1,36 +1,29 @@
1
1
  $ ->
2
+
2
3
  $body = $ 'body'
3
- # select all text in invalid input field on focus
4
4
  $body.on 'click', [
5
5
  '.error input'
6
6
  '.error textarea'
7
7
  '.invalid input'
8
8
  '.invalid textarea'
9
9
  'input.error'
10
- 'textarea.error '
11
- 'input.invalid'
12
- 'textarea.invalid '
10
+ 'textarea.error'
11
+ 'input.invalid'
12
+ 'textarea.invalid'
13
13
  ].join(','), ->
14
- $(this).focus().select()
14
+ $(@).focus().select()
15
15
 
16
- # polyfill select box placeholders
17
16
  $('.select select').each ->
18
- $this = $ this
19
- if $this.children('option').first().val() is '' and $this.children('option').first().attr('selected')
20
- $this.addClass('unselected')
21
- else
22
- $this.removeClass('unselected')
23
-
24
- return
25
-
17
+ setSelectState(@)
18
+
26
19
  $body.on 'change', '.select select', ->
27
- $this = $ this
28
-
29
- if $this.children('option').first().val() is '' and $this.children('option').first().attr('selected')
30
- $this.addClass('unselected')
31
- else
32
- $this.removeClass('unselected')
20
+ setSelectState(@)
33
21
 
34
- return
35
-
36
- return
22
+ setSelectState = (el) ->
23
+ $el = $(el)
24
+ firstOptionVal = $el.children('option').first().val()
25
+ firstOptionSelected = $el.children('option').first().attr('selected')
26
+ if firstOptionVal == '' and firstOptionSelected
27
+ $el.addClass('unselected')
28
+ else
29
+ $el.removeClass('unselected')
@@ -17,10 +17,14 @@ $ ->
17
17
  $('.dropdown').children('ul').attr
18
18
  'aria-expanded': 'false'
19
19
  'aria-hidden': 'true'
20
- $target.attr('aria-pressed', (if $target.attr('aria-pressed') == 'true' then 'false' else 'true'))
20
+ if $target.attr('aria-pressed') == 'true'
21
+ dropdownState = 'false'
22
+ else
23
+ dropdownState = 'true'
24
+ $target.attr('aria-pressed', dropdownState)
21
25
  $target.children('ul').attr
22
- 'aria-expanded': (if $target.attr('aria-pressed') == 'true' then 'true' else 'false')
23
- 'aria-hidden': (if $target.attr('aria-pressed') == 'true' then 'false' else 'true')
26
+ 'aria-expanded': !dropdownState
27
+ 'aria-hidden': dropdownState
24
28
 
25
29
  $body.on 'click', '.dropdown', (e) ->
26
30
  $target = $(e.currentTarget)
@@ -36,5 +40,6 @@ $ ->
36
40
  if $dropdown.length
37
41
  $dropdown.attr('aria-pressed', 'false')
38
42
 
39
- $body.on 'focusout', '.dropdown li:last-child a, .dropdown li:last-child button', (e) ->
43
+ $body.on 'focusout', '.dropdown li:last-child a,
44
+ .dropdown li:last-child button', (e) ->
40
45
  $('.dropdown[aria-pressed="true"]').attr('aria-pressed', 'false')
@@ -1,8 +1,8 @@
1
1
  ###
2
2
  *
3
3
  * Responsive Navigation by Gary Hepting
4
- *
5
- * Open source under the MIT License.
4
+ *
5
+ * Open source under the MIT License.
6
6
  *
7
7
  * Copyright © 2013 Gary Hepting. All rights reserved.
8
8
  *
@@ -22,13 +22,18 @@ class ResponsiveNavigation
22
22
  init: ->
23
23
  @defaultLabel()
24
24
  @setupMarkers()
25
- @hamburgerHelper()
25
+ unless @el.hasClass('nocollapse')
26
+ @hamburgerHelper()
26
27
 
27
28
  defaultLabel: ->
28
- if @el.attr('title') == undefined
29
- @el.attr('title', 'Menu')
29
+ unless @el.hasClass('nocollapse')
30
+ @el.attr('title', 'Menu') if @el.attr('title') == undefined
30
31
 
31
32
  setupMarkers: ->
33
+ @el.find('ul').each ->
34
+ if $(@).find('li').length
35
+ $(@).attr('role', 'menu')
36
+ @el.find('> ul').attr('role', 'menubar') unless $(@el).hasClass('vertical')
32
37
  @el.find('li').each ->
33
38
  if $(@).find('ul').length
34
39
  $(@).attr('role', 'menu')
@@ -39,21 +44,26 @@ class ResponsiveNavigation
39
44
  $ ->
40
45
 
41
46
  mouseBindings = -> # needs more <3
42
- $('body').on 'mouseenter', '.nav li[role="menu"]', (e) ->
47
+ $('body').on 'mouseenter', '.nav:not(.vertical) li[role="menu"]', (e) ->
48
+ $('.nav:not(.vertical)').not(@).each ->
49
+ unless $(@).find('button.hamburger').is(':visible')
50
+ $(@).find('ul[aria-expanded="true"]').attr('aria-expanded', 'false')
43
51
  unless $(@).parents('.nav').find('button.hamburger').is(':visible')
44
52
  clearTimeout(window.delayMenuClose)
45
- $(@).siblings().find('ul[aria-expanded="true"]').attr('aria-expanded', 'false')
46
- # $(@).children('ul').attr('aria-expanded', 'true')
47
- $(e.target).parents('li[role="menu"]').children('ul').attr('aria-expanded', 'true')
53
+ expandedSiblings = $(@).siblings().find('ul[aria-expanded="true"]')
54
+ expandedSiblings.attr('aria-expanded', 'false')
55
+ targetMenu = $(e.target).parents('li[role="menu"]').children('ul')
56
+ targetMenu.attr('aria-expanded', 'true')
48
57
 
49
- $('body').on 'mouseleave', '.nav li[role="menu"]', (e) ->
58
+ $('body').on 'mouseleave', '.nav:not(.vertical) li[role="menu"]', (e) ->
50
59
  unless $(@).parents('.nav').find('button.hamburger').is(':visible')
51
60
  window.delayMenuClose = setTimeout( =>
52
61
  $(@).find('ul[aria-expanded="true"]').attr('aria-expanded', 'false')
53
62
  , 500)
54
63
 
55
64
  touchBindings = ->
56
- $('body').on 'click', '.nav li[role="menu"] > a, .nav li[role="menu"] > button', (e) ->
65
+ $('body').on 'click', '.nav li[role="menu"] > a,
66
+ .nav li[role="menu"] > button', (e) ->
57
67
  list = $(@).siblings('ul')
58
68
  menu = $(@).parent('[role="menu"]')
59
69
  if list.attr('aria-expanded') != 'true'
@@ -19,17 +19,25 @@ $ ->
19
19
 
20
20
  transformTabs = ->
21
21
  viewport = $(window).width()
22
+ accordion = '.tabs.accordion'
23
+ mobile = '.tabs.accordion.mobile'
24
+ smalltablet = '.tabs.accordion.small-tablet'
25
+ ipad = '.tabs.accordion.ipad'
26
+ notaccordion = '.tabs:not(.accordion)'
27
+ notmobile = ':not(.mobile)'
28
+ notsmalltablet = ':not(.small-tablet)'
29
+ notipad = ':not(.ipad)'
22
30
  if viewport <= 480
23
- restoreTabStructure('.tabs.accordion.mobile')
24
- convertToAccordion('.tabs:not(.accordion):not(.mobile)')
31
+ restoreTabStructure(mobile)
32
+ convertToAccordion(notaccordion + notmobile)
25
33
  else if viewport < 768
26
- restoreTabStructure('.tabs.accordion.mobile, .tabs.accordion.small-tablet')
27
- convertToAccordion('.tabs:not(.accordion):not(.mobile):not(.small-tablet)')
34
+ restoreTabStructure(mobile + ', ' + smalltablet)
35
+ convertToAccordion(notaccordion + notmobile + notsmalltablet)
28
36
  else if viewport <= 1024
29
- restoreTabStructure('.tabs.accordion.mobile, .tabs.accordion.small-tablet, .tabs.accordion.ipad')
30
- convertToAccordion('.tabs:not(.accordion):not(.mobile):not(.small-tablet):not(.ipad)')
37
+ restoreTabStructure(mobile + ', ' + smalltablet + ', ' + ipad)
38
+ convertToAccordion(notaccordion + notmobile + notsmalltablet + notipad)
31
39
  else if viewport > 1024
32
- restoreTabStructure('.tabs.accordion')
40
+ restoreTabStructure(accordion)
33
41
 
34
42
  convertToAccordion = (tabTypes) ->
35
43
  tabTypes = $(tabTypes)
@@ -38,7 +46,8 @@ $ ->
38
46
  tabs.addClass('accordion')
39
47
  tabs.find('> div').each ->
40
48
  tabpanel = $(@).clone()
41
- tabs.find('li[aria-controls="#'+tabpanel.attr('id')+'"]').after(tabpanel)
49
+ tablink = 'li[aria-controls="#'+tabpanel.attr('id')+'"]'
50
+ tabs.find(tablink).after(tabpanel)
42
51
  $(@).remove()
43
52
 
44
53
  restoreTabStructure = (tabTypes) ->
@@ -1,3 +1,13 @@
1
+ ###
2
+ *
3
+ * jQuery PlaceholderText by Gary Hepting
4
+ *
5
+ * Open source under the MIT License.
6
+ *
7
+ * Copyright © 2013 Gary Hepting. All rights reserved.
8
+ *
9
+ ###
10
+
1
11
  (($) ->
2
12
 
3
13
  $.fn.placeholderText = (options) ->
@@ -23,11 +33,11 @@
23
33
  placeholder[9] = "Aenean placerat. In vulputate urna eu arcu. Aliquam erat volutpat. Suspendisse potenti. Morbi mattis felis at nunc. Duis viverra diam non justo. In nisl. Nullam sit amet magna in magna gravida vehicula. Mauris tincidunt sem sed arcu. Nunc posuere. Nullam lectus justo, vulputate eget, mollis sed, tempor sed, magna. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Etiam neque. Curabitur ligula sapien, pulvinar a, vestibulum quis, facilisis vel, sapien. Nullam eget nisl. Donec vitae arcu."
24
34
 
25
35
  createPlaceholderContent = (el) ->
26
- options =
27
- type: $(el).data('placeholderType') if $(el).data('placeholderType') != 'undefined'
28
- amount: $(el).data('placeholderAmount') if $(el).data('placeholderAmount') != 'undefined'
29
- html: $(el).data('placeholderHtml') if $(el).data('placeholderHtml') != 'undefined'
30
- punctuation: $(el).data('placeholderPunctuation') if $(el).data('placeholderPunctuation') != 'undefined'
36
+ options = {}
37
+ options.type = $(el).data('placeholderType') if $(el).data('placeholderType') != 'undefined'
38
+ options.amount = $(el).data('placeholderAmount') if $(el).data('placeholderAmount') != 'undefined'
39
+ options.html = $(el).data('placeholderHtml') if $(el).data('placeholderHtml') != 'undefined'
40
+ options.punctuation = $(el).data('placeholderPunctuation') if $(el).data('placeholderPunctuation') != 'undefined'
31
41
 
32
42
  opts = $.extend({}, $.fn.placeholderText.defaults, options)
33
43
 
@@ -1,8 +1,9 @@
1
1
  ###
2
2
  *
3
- * jQuery ResponsiveTables by Gary Hepting - https://github.com/ghepting/jquery-responsive-tables
4
- *
5
- * Open source under the MIT License.
3
+ * jQuery ResponsiveTables by Gary Hepting
4
+ * https://github.com/ghepting/jquery-responsive-tables
5
+ *
6
+ * Open source under the MIT License.
6
7
  *
7
8
  * Copyright © 2013 Gary Hepting. All rights reserved.
8
9
  *
@@ -1,8 +1,9 @@
1
1
  ###
2
2
  *
3
- * jQuery ResponsiveText by Gary Hepting - https://github.com/ghepting/jquery-responsive-text
4
- *
5
- * Open source under the MIT License.
3
+ * jQuery ResponsiveText by Gary Hepting
4
+ * https://github.com/ghepting/jquery-responsive-text
5
+ *
6
+ * Open source under the MIT License.
6
7
  *
7
8
  * Copyright © 2013 Gary Hepting. All rights reserved.
8
9
  *
@@ -31,7 +32,10 @@ class ResponsiveText
31
32
  @scrollOnHover() if @scrollable
32
33
 
33
34
  resizeText: ->
34
- $(@el).css "font-size", Math.floor( Math.max( Math.min( ($(@el).width() / @compression), @maxFontSize ), @minFontSize ) )
35
+ calculatedFontSize = $(@el).width() / @compression
36
+ fontSize = Math.max(Math.min(calculatedFontSize,@maxFontSize),@minFontSize)
37
+ $(@el).css
38
+ "font-size": Math.floor(fontSize)
35
39
 
36
40
  adjustOnLoad: ->
37
41
  $(window).on 'load', =>
@@ -1,8 +1,9 @@
1
1
  ###
2
2
  *
3
- * jQuery truncateLines by Gary Hepting - https://github.com/ghepting/jquery-truncate-lines
4
- *
5
- * Open source under the MIT License.
3
+ * jQuery TruncateLines by Gary Hepting
4
+ * https://github.com/ghepting/jquery-truncate-lines
5
+ *
6
+ * Open source under the MIT License.
6
7
  *
7
8
  * Copyright © 2013 Gary Hepting. All rights reserved.
8
9
  *
@@ -18,8 +19,8 @@ class TruncateLines
18
19
  @index = truncateIndex++
19
20
  @text = $(@el).text()
20
21
  $(@el).attr('data-text',@text)
21
- @words = @text.trim().split(" ") # store words in array
22
- @lines = parseInt($(@el).attr('data-truncate')) # store maximum number of lines
22
+ @words = @text.trim().split(" ")
23
+ @lines = parseInt($(@el).attr('data-truncate'))
23
24
  @truncate()
24
25
  @adjustOnResize()
25
26
 
@@ -33,26 +34,26 @@ class TruncateLines
33
34
  .attr('data-truncated', 'false')
34
35
 
35
36
  measure: ->
36
- @reset() # reset element state
37
- $(@el).html(".") # set element to have single line
37
+ @reset()
38
+ $(@el).html(".")
38
39
  @singleLineHeight = $(@el).outerHeight()
39
40
  i = 1
40
- while i++ < @lines # set element to have the maximum number of lines
41
+ while i++ < @lines
41
42
  $(@el).append("<br>.")
42
- @maxLinesHeight = $(@el).outerHeight() # store the height of the element when it is at the max number of lines
43
+ @maxLinesHeight = $(@el).outerHeight()
43
44
 
44
45
  empty: ->
45
- $(@el).html("") # clear the element
46
+ $(@el).html("")
46
47
 
47
48
  setContent: ->
48
- @reset() # reset element state
49
- truncated = false # reset truncated state
49
+ @reset()
50
+ truncated = false
50
51
  @addWords(@words.length)
51
52
  if @tooBig()
52
53
  # binary build-up the string -- Thanks @BananaNeil :]
53
54
  @addNumberWordsThatFit()
54
- $(@el).css('max-height', @maxLinesHeight + 'px') # set the max height
55
- $(@el).attr('data-truncated', true) # set element truncation state
55
+ $(@el).css('max-height', @maxLinesHeight + 'px')
56
+ $(@el).attr('data-truncated', true)
56
57
 
57
58
  addNumberWordsThatFit: ->
58
59
  cant = @words.length
@@ -66,7 +67,7 @@ class TruncateLines
66
67
  can = can + mid
67
68
  mid = Math.floor(mid/2) || 1
68
69
  @addWords(can)
69
- $(@el).html( @trimTrailingPunctuation( $(@el).html() ) ) # trim trailing punctuation
70
+ $(@el).html( @trimTrailingPunctuation( $(@el).html() ) )
70
71
 
71
72
  addWords: (num) ->
72
73
  $(@el).html(@words.slice(0,num).join(" "))
@@ -92,8 +93,11 @@ class TruncateLines
92
93
  $.fn.truncateLines = ->
93
94
 
94
95
  unless truncateInitialized
95
- # add CSS for the ellipsis (just so there are no additional file dependencies)
96
- $('head').append('<style type="text/css"> [data-truncated="true"] { overflow: hidden; } [data-truncated="true"]:after { content: "..."; position: absolute; } </style>')
96
+ $('head').append('
97
+ <style type="text/css">
98
+ [data-truncated="true"] { overflow: hidden; }
99
+ [data-truncated="true"]:after { content: "..."; position: absolute; }
100
+ </style>')
97
101
 
98
102
  @each ->
99
103
  truncatedLineElements.push( new TruncateLines(@) )
@@ -102,18 +106,3 @@ class TruncateLines
102
106
 
103
107
  $(window).load ->
104
108
  $("[data-truncate]").truncateLines()
105
- # $('[data-truncated="true"]').on 'mouseenter', ->
106
- # $(this).html($(this).attr('data-text')).attr('data-truncated', 'false')
107
- # stopScrolling($(this))
108
- # $(this).animate(scrollTop: $(this)[0].scrollHeight, ($(this)[0].scrollHeight * 120))
109
- # $('[data-truncated="true"]').on 'mouseleave', ->
110
- # $(this).stop().animate(scrollTop: 0, ($(this)[0].scrollHeight * 5), ->
111
- # $(this).truncateLines()
112
- # )
113
- # $('[data-truncated="true"]').on 'mousedown', ->
114
- # stopScrolling($(this))
115
- # $('[data-truncated="true"]').on 'mousewheel', ->
116
- # stopScrolling($(this))
117
-
118
- # stopScrolling = ($el) ->
119
- # $el.stop().css('overflow','auto')
@@ -17,6 +17,8 @@
17
17
  // $boxsizing_path: "/js/libs/boxsizing.htc"; // path to box sizing polyfill (change to absolute path from HTML document root)
18
18
  // $PIE_path: "/js/libs/PIE.htc"; // path to IE CSS3 polyfill (change to absolute path from HTML document root)
19
19
 
20
+ // $oldIE: false; // enable polyfills for legacy IE
21
+
20
22
  // =============================================
21
23
  // Web Fonts
22
24
  // =============================================
@@ -248,7 +250,7 @@
248
250
  // $type-tags: true;
249
251
  // $type-elements: "h1" "h2" "h3" "h4" "h5" "h6" "p"
250
252
  // "ul" "ol" "dl"
251
- // "q" "quote" "blockquote" "cite"
253
+ // "q" "blockquote" "cite"
252
254
  // "small" "big"
253
255
  // "b" "strong"
254
256
  // "em"
@@ -259,7 +261,7 @@
259
261
  // $type-classes: false;
260
262
  // $type-classnames: "h1" "h2" "h3" "h4" "h5" "h6" "p"
261
263
  // "ul" "ol" "dl"
262
- // "q" "quote" "blockquote" "cite"
264
+ // "q" "blockquote" "cite"
263
265
  // "small" "big" "large"
264
266
  // "b" "bold" "strong"
265
267
  // "em" "italic"
@@ -268,12 +270,16 @@
268
270
  // "code" "pre"
269
271
  // "invalid" "valid"
270
272
  // "unstyled";
273
+ // $quote-color: $font-color;
274
+ // $quote-background: $border-color;
275
+ // $quote-font: "source-sans-pro";
271
276
  // $styled-lists: true;
272
277
  // $multi-column-classes: true;
273
278
  // $multi-column-names: "one-column" "two-column" "three-column" "four-column" "five-column";
274
279
  // $ui-states: "info" "alert" "warning" "error" "success" "question";
275
280
  // $ui-icons: "\f05a" "\f06a" "\f071" "\f057" "\f058" "\f059";
276
281
  // $ui-states-colors: $info-color $alert-color $warning-color $error-color $success-color $question-color;
282
+ // $ui-states-color-classes: true;
277
283
  // $font-family: Helvetica, Arial, Geneva, sans-serif;
278
284
  // $font-size: 14px;
279
285
  // $line-height: 1.5;
@@ -335,7 +341,7 @@
335
341
  // "h1" "h2" "h3" "h4" "h5" "h6" "p"
336
342
  // "ol" "ul" "li" "dl" "dt" "dd"
337
343
  // "em" "small" "big" "strong" "b" "u" "i" "sub" "sup" "del" "strike"
338
- // "q" "quote" "blockquote" "cite"
344
+ // "q" "blockquote" "cite"
339
345
  // "time" "address"
340
346
  // "code" "pre"
341
347
  // "a" "img" "center" "hr"