egghead-styles 1.0.72 → 1.0.73

Sign up to get free protection for your applications and to get access to all the features.
Files changed (183) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/egghead-styles.css.scss +18 -13
  3. data/app/assets/stylesheets/globals/_bootstrap-and-overrides.css.scss +3 -3
  4. data/app/assets/stylesheets/plugins/bootstrap/_bootstrap-compass.scss +9 -0
  5. data/app/assets/stylesheets/plugins/bootstrap/_bootstrap-mincer.scss +19 -0
  6. data/app/assets/stylesheets/plugins/bootstrap/_bootstrap-sprockets.scss +9 -0
  7. data/app/assets/stylesheets/plugins/bootstrap/_bootstrap.scss +56 -0
  8. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_alerts.scss +73 -0
  9. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_badges.scss +68 -0
  10. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_breadcrumbs.scss +26 -0
  11. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_button-groups.scss +244 -0
  12. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_buttons.scss +168 -0
  13. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_carousel.scss +269 -0
  14. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_close.scss +36 -0
  15. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_code.scss +69 -0
  16. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_component-animations.scss +37 -0
  17. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_dropdowns.scss +216 -0
  18. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_forms.scss +611 -0
  19. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_glyphicons.scss +307 -0
  20. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_grid.scss +84 -0
  21. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_input-groups.scss +167 -0
  22. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_jumbotron.scss +52 -0
  23. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_labels.scss +66 -0
  24. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_list-group.scss +130 -0
  25. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_media.scss +66 -0
  26. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_mixins.scss +40 -0
  27. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_modals.scss +150 -0
  28. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_navbar.scss +662 -0
  29. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_navs.scss +242 -0
  30. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_normalize.scss +424 -0
  31. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_pager.scss +54 -0
  32. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_pagination.scss +89 -0
  33. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_panels.scss +271 -0
  34. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_popovers.scss +131 -0
  35. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_print.scss +101 -0
  36. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_progress-bars.scss +87 -0
  37. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_responsive-embed.scss +35 -0
  38. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_responsive-utilities.scss +179 -0
  39. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_scaffolding.scss +161 -0
  40. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_tables.scss +234 -0
  41. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_theme.scss +291 -0
  42. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_thumbnails.scss +38 -0
  43. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_tooltip.scss +101 -0
  44. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_type.scss +298 -0
  45. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_utilities.scss +55 -0
  46. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_variables.scss +872 -0
  47. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/_wells.scss +29 -0
  48. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_alerts.scss +14 -0
  49. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_background-variant.scss +12 -0
  50. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_border-radius.scss +18 -0
  51. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_buttons.scss +68 -0
  52. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_center-block.scss +7 -0
  53. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_clearfix.scss +22 -0
  54. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_forms.scss +88 -0
  55. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_gradients.scss +58 -0
  56. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_grid-framework.scss +81 -0
  57. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_grid.scss +122 -0
  58. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_hide-text.scss +21 -0
  59. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_image.scss +33 -0
  60. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_labels.scss +12 -0
  61. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_list-group.scss +32 -0
  62. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_nav-divider.scss +10 -0
  63. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_nav-vertical-align.scss +9 -0
  64. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_opacity.scss +8 -0
  65. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_pagination.scss +24 -0
  66. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_panels.scss +24 -0
  67. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_progress-bar.scss +10 -0
  68. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_reset-filter.scss +8 -0
  69. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_reset-text.scss +18 -0
  70. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_resize.scss +6 -0
  71. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_responsive-visibility.scss +21 -0
  72. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_size.scss +10 -0
  73. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_tab-focus.scss +9 -0
  74. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_table-row.scss +28 -0
  75. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_text-emphasis.scss +12 -0
  76. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_text-overflow.scss +8 -0
  77. data/app/assets/stylesheets/plugins/bootstrap/bootstrap/mixins/_vendor-prefixes.scss +222 -0
  78. data/app/assets/stylesheets/plugins/chosen.scss +433 -0
  79. data/app/assets/stylesheets/plugins/{chosen.css.scss → chosen_overrides.css.scss} +0 -0
  80. data/app/assets/stylesheets/plugins/compass/_compass.scss +3 -0
  81. data/app/assets/stylesheets/plugins/compass/_lemonade.scss +38 -0
  82. data/app/assets/stylesheets/plugins/compass/compass/_css3.scss +20 -0
  83. data/app/assets/stylesheets/plugins/compass/compass/_layout.scss +3 -0
  84. data/app/assets/stylesheets/plugins/compass/compass/_reset-legacy.scss +3 -0
  85. data/app/assets/stylesheets/plugins/compass/compass/_reset.scss +3 -0
  86. data/app/assets/stylesheets/plugins/compass/compass/_support.scss +40 -0
  87. data/app/assets/stylesheets/plugins/compass/compass/_typography.scss +4 -0
  88. data/app/assets/stylesheets/plugins/compass/compass/_utilities.scss +9 -0
  89. data/app/assets/stylesheets/plugins/compass/compass/css3/_appearance.scss +17 -0
  90. data/app/assets/stylesheets/plugins/compass/compass/css3/_background-clip.scss +43 -0
  91. data/app/assets/stylesheets/plugins/compass/compass/css3/_background-origin.scss +42 -0
  92. data/app/assets/stylesheets/plugins/compass/compass/css3/_background-size.scss +26 -0
  93. data/app/assets/stylesheets/plugins/compass/compass/css3/_border-radius.scss +130 -0
  94. data/app/assets/stylesheets/plugins/compass/compass/css3/_box-shadow.scss +76 -0
  95. data/app/assets/stylesheets/plugins/compass/compass/css3/_box-sizing.scss +13 -0
  96. data/app/assets/stylesheets/plugins/compass/compass/css3/_box.scss +111 -0
  97. data/app/assets/stylesheets/plugins/compass/compass/css3/_columns.scss +157 -0
  98. data/app/assets/stylesheets/plugins/compass/compass/css3/_filter.scss +23 -0
  99. data/app/assets/stylesheets/plugins/compass/compass/css3/_font-face.scss +48 -0
  100. data/app/assets/stylesheets/plugins/compass/compass/css3/_hyphenation.scss +77 -0
  101. data/app/assets/stylesheets/plugins/compass/compass/css3/_images.scss +132 -0
  102. data/app/assets/stylesheets/plugins/compass/compass/css3/_inline-block.scss +22 -0
  103. data/app/assets/stylesheets/plugins/compass/compass/css3/_opacity.scss +19 -0
  104. data/app/assets/stylesheets/plugins/compass/compass/css3/_pie.scss +73 -0
  105. data/app/assets/stylesheets/plugins/compass/compass/css3/_regions.scss +22 -0
  106. data/app/assets/stylesheets/plugins/compass/compass/css3/_shared.scss +38 -0
  107. data/app/assets/stylesheets/plugins/compass/compass/css3/_text-shadow.scss +87 -0
  108. data/app/assets/stylesheets/plugins/compass/compass/css3/_transform-legacy.scss +87 -0
  109. data/app/assets/stylesheets/plugins/compass/compass/css3/_transform.scss +598 -0
  110. data/app/assets/stylesheets/plugins/compass/compass/css3/_transition.scss +221 -0
  111. data/app/assets/stylesheets/plugins/compass/compass/css3/_user-interface.scss +17 -0
  112. data/app/assets/stylesheets/plugins/compass/compass/layout/_grid-background.scss +178 -0
  113. data/app/assets/stylesheets/plugins/compass/compass/layout/_sticky-footer.scss +23 -0
  114. data/app/assets/stylesheets/plugins/compass/compass/layout/_stretching.scss +24 -0
  115. data/app/assets/stylesheets/plugins/compass/compass/reset/_utilities-legacy.scss +135 -0
  116. data/app/assets/stylesheets/plugins/compass/compass/reset/_utilities.scss +142 -0
  117. data/app/assets/stylesheets/plugins/compass/compass/typography/_links.scss +3 -0
  118. data/app/assets/stylesheets/plugins/compass/compass/typography/_lists.scss +4 -0
  119. data/app/assets/stylesheets/plugins/compass/compass/typography/_text.scss +4 -0
  120. data/app/assets/stylesheets/plugins/compass/compass/typography/_vertical_rhythm.scss +221 -0
  121. data/app/assets/stylesheets/plugins/compass/compass/typography/links/_hover-link.scss +5 -0
  122. data/app/assets/stylesheets/plugins/compass/compass/typography/links/_link-colors.scss +28 -0
  123. data/app/assets/stylesheets/plugins/compass/compass/typography/links/_unstyled-link.scss +7 -0
  124. data/app/assets/stylesheets/plugins/compass/compass/typography/lists/_bullets.scss +34 -0
  125. data/app/assets/stylesheets/plugins/compass/compass/typography/lists/_horizontal-list.scss +61 -0
  126. data/app/assets/stylesheets/plugins/compass/compass/typography/lists/_inline-block-list.scss +50 -0
  127. data/app/assets/stylesheets/plugins/compass/compass/typography/lists/_inline-list.scss +44 -0
  128. data/app/assets/stylesheets/plugins/compass/compass/typography/text/_ellipsis.scss +25 -0
  129. data/app/assets/stylesheets/plugins/compass/compass/typography/text/_force-wrap.scss +12 -0
  130. data/app/assets/stylesheets/plugins/compass/compass/typography/text/_nowrap.scss +2 -0
  131. data/app/assets/stylesheets/plugins/compass/compass/typography/text/_replacement.scss +68 -0
  132. data/app/assets/stylesheets/plugins/compass/compass/utilities/_color.scss +1 -0
  133. data/app/assets/stylesheets/plugins/compass/compass/utilities/_general.scss +6 -0
  134. data/app/assets/stylesheets/plugins/compass/compass/utilities/_links.scss +5 -0
  135. data/app/assets/stylesheets/plugins/compass/compass/utilities/_lists.scss +6 -0
  136. data/app/assets/stylesheets/plugins/compass/compass/utilities/_print.scss +17 -0
  137. data/app/assets/stylesheets/plugins/compass/compass/utilities/_sprites.scss +2 -0
  138. data/app/assets/stylesheets/plugins/compass/compass/utilities/_tables.scss +3 -0
  139. data/app/assets/stylesheets/plugins/compass/compass/utilities/_text.scss +5 -0
  140. data/app/assets/stylesheets/plugins/compass/compass/utilities/color/_contrast.scss +28 -0
  141. data/app/assets/stylesheets/plugins/compass/compass/utilities/general/_clearfix.scss +44 -0
  142. data/app/assets/stylesheets/plugins/compass/compass/utilities/general/_float.scss +30 -0
  143. data/app/assets/stylesheets/plugins/compass/compass/utilities/general/_hacks.scss +46 -0
  144. data/app/assets/stylesheets/plugins/compass/compass/utilities/general/_min.scss +16 -0
  145. data/app/assets/stylesheets/plugins/compass/compass/utilities/general/_reset.scss +2 -0
  146. data/app/assets/stylesheets/plugins/compass/compass/utilities/general/_tabs.scss +1 -0
  147. data/app/assets/stylesheets/plugins/compass/compass/utilities/general/_tag-cloud.scss +18 -0
  148. data/app/assets/stylesheets/plugins/compass/compass/utilities/links/_hover-link.scss +3 -0
  149. data/app/assets/stylesheets/plugins/compass/compass/utilities/links/_link-colors.scss +3 -0
  150. data/app/assets/stylesheets/plugins/compass/compass/utilities/links/_unstyled-link.scss +3 -0
  151. data/app/assets/stylesheets/plugins/compass/compass/utilities/lists/_bullets.scss +3 -0
  152. data/app/assets/stylesheets/plugins/compass/compass/utilities/lists/_horizontal-list.scss +3 -0
  153. data/app/assets/stylesheets/plugins/compass/compass/utilities/lists/_inline-block-list.scss +3 -0
  154. data/app/assets/stylesheets/plugins/compass/compass/utilities/lists/_inline-list.scss +3 -0
  155. data/app/assets/stylesheets/plugins/compass/compass/utilities/sprites/_base.scss +66 -0
  156. data/app/assets/stylesheets/plugins/compass/compass/utilities/sprites/_sprite-img.scss +79 -0
  157. data/app/assets/stylesheets/plugins/compass/compass/utilities/tables/_alternating-rows-and-columns.scss +22 -0
  158. data/app/assets/stylesheets/plugins/compass/compass/utilities/tables/_borders.scss +33 -0
  159. data/app/assets/stylesheets/plugins/compass/compass/utilities/tables/_scaffolding.scss +9 -0
  160. data/app/assets/stylesheets/plugins/compass/compass/utilities/text/_ellipsis.scss +3 -0
  161. data/app/assets/stylesheets/plugins/compass/compass/utilities/text/_nowrap.scss +3 -0
  162. data/app/assets/stylesheets/plugins/compass/compass/utilities/text/_replacement.scss +3 -0
  163. data/{vendor/assets/stylesheets → app/assets/stylesheets/plugins}/font-awesome/_bootstrap.scss +0 -0
  164. data/{vendor/assets/stylesheets → app/assets/stylesheets/plugins}/font-awesome/_core.scss +0 -0
  165. data/{vendor/assets/stylesheets → app/assets/stylesheets/plugins}/font-awesome/_extras.scss +0 -0
  166. data/{vendor/assets/stylesheets → app/assets/stylesheets/plugins}/font-awesome/_icons.scss +0 -0
  167. data/{vendor/assets/stylesheets → app/assets/stylesheets/plugins}/font-awesome/_mixins.scss +0 -0
  168. data/{vendor/assets/stylesheets → app/assets/stylesheets/plugins}/font-awesome/_path.scss +0 -0
  169. data/{vendor/assets/stylesheets → app/assets/stylesheets/plugins}/font-awesome/_variables.scss +0 -0
  170. data/{vendor/assets/stylesheets → app/assets/stylesheets/plugins}/font-awesome/font-awesome-ie7.scss +0 -0
  171. data/{vendor/assets/stylesheets → app/assets/stylesheets/plugins}/font-awesome/font-awesome.scss +0 -0
  172. data/app/assets/stylesheets/plugins/fontello/fonts/fontello.eot +0 -0
  173. data/app/assets/stylesheets/plugins/fontello/fonts/fontello.svg +2140 -0
  174. data/app/assets/stylesheets/plugins/fontello/fonts/fontello.ttf +0 -0
  175. data/app/assets/stylesheets/plugins/fontello/fonts/fontello.woff +0 -0
  176. data/app/assets/stylesheets/plugins/fontello/stylesheets/_fontello-ie7-codes.scss +742 -0
  177. data/app/assets/stylesheets/plugins/fontello/stylesheets/_fontello-ie7.scss +752 -0
  178. data/app/assets/stylesheets/plugins/fontello/stylesheets/_fontello.scss +778 -0
  179. data/app/assets/stylesheets/plugins/fontello/stylesheets/_fontello_codes.scss +744 -0
  180. data/{vendor/assets/stylesheets → app/assets/stylesheets/plugins}/social-likes.css.scss +0 -0
  181. data/{vendor/assets/stylesheets → app/assets/stylesheets/plugins}/typeahead-bootstrap.css.scss +0 -0
  182. data/lib/egghead/styles/version.rb +1 -1
  183. metadata +180 -98
@@ -0,0 +1,69 @@
1
+ //
2
+ // Code (inline and block)
3
+ // --------------------------------------------------
4
+
5
+
6
+ // Inline and block code styles
7
+ code,
8
+ kbd,
9
+ pre,
10
+ samp {
11
+ font-family: $font-family-monospace;
12
+ }
13
+
14
+ // Inline code
15
+ code {
16
+ padding: 2px 4px;
17
+ font-size: 90%;
18
+ color: $code-color;
19
+ background-color: $code-bg;
20
+ border-radius: $border-radius-base;
21
+ }
22
+
23
+ // User input typically entered via keyboard
24
+ kbd {
25
+ padding: 2px 4px;
26
+ font-size: 90%;
27
+ color: $kbd-color;
28
+ background-color: $kbd-bg;
29
+ border-radius: $border-radius-small;
30
+ box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
31
+
32
+ kbd {
33
+ padding: 0;
34
+ font-size: 100%;
35
+ font-weight: bold;
36
+ box-shadow: none;
37
+ }
38
+ }
39
+
40
+ // Blocks of code
41
+ pre {
42
+ display: block;
43
+ padding: (($line-height-computed - 1) / 2);
44
+ margin: 0 0 ($line-height-computed / 2);
45
+ font-size: ($font-size-base - 1); // 14px to 13px
46
+ line-height: $line-height-base;
47
+ word-break: break-all;
48
+ word-wrap: break-word;
49
+ color: $pre-color;
50
+ background-color: $pre-bg;
51
+ border: 1px solid $pre-border-color;
52
+ border-radius: $border-radius-base;
53
+
54
+ // Account for some code outputs that place code tags in pre tags
55
+ code {
56
+ padding: 0;
57
+ font-size: inherit;
58
+ color: inherit;
59
+ white-space: pre-wrap;
60
+ background-color: transparent;
61
+ border-radius: 0;
62
+ }
63
+ }
64
+
65
+ // Enable scrollable blocks of code
66
+ .pre-scrollable {
67
+ max-height: $pre-scrollable-max-height;
68
+ overflow-y: scroll;
69
+ }
@@ -0,0 +1,37 @@
1
+ //
2
+ // Component animations
3
+ // --------------------------------------------------
4
+
5
+ // Heads up!
6
+ //
7
+ // We don't use the `.opacity()` mixin here since it causes a bug with text
8
+ // fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.
9
+
10
+ .fade {
11
+ opacity: 0;
12
+ @include transition(opacity .15s linear);
13
+ &.in {
14
+ opacity: 1;
15
+ }
16
+ }
17
+
18
+ .collapse {
19
+ display: none;
20
+
21
+ &.in { display: block; }
22
+ // [converter] extracted tr&.in to tr.collapse.in
23
+ // [converter] extracted tbody&.in to tbody.collapse.in
24
+ }
25
+
26
+ tr.collapse.in { display: table-row; }
27
+
28
+ tbody.collapse.in { display: table-row-group; }
29
+
30
+ .collapsing {
31
+ position: relative;
32
+ height: 0;
33
+ overflow: hidden;
34
+ @include transition-property(height, visibility);
35
+ @include transition-duration(.35s);
36
+ @include transition-timing-function(ease);
37
+ }
@@ -0,0 +1,216 @@
1
+ //
2
+ // Dropdown menus
3
+ // --------------------------------------------------
4
+
5
+
6
+ // Dropdown arrow/caret
7
+ .caret {
8
+ display: inline-block;
9
+ width: 0;
10
+ height: 0;
11
+ margin-left: 2px;
12
+ vertical-align: middle;
13
+ border-top: $caret-width-base dashed;
14
+ border-top: $caret-width-base solid \9; // IE8
15
+ border-right: $caret-width-base solid transparent;
16
+ border-left: $caret-width-base solid transparent;
17
+ }
18
+
19
+ // The dropdown wrapper (div)
20
+ .dropup,
21
+ .dropdown {
22
+ position: relative;
23
+ }
24
+
25
+ // Prevent the focus on the dropdown toggle when closing dropdowns
26
+ .dropdown-toggle:focus {
27
+ outline: 0;
28
+ }
29
+
30
+ // The dropdown menu (ul)
31
+ .dropdown-menu {
32
+ position: absolute;
33
+ top: 100%;
34
+ left: 0;
35
+ z-index: $zindex-dropdown;
36
+ display: none; // none by default, but block on "open" of the menu
37
+ float: left;
38
+ min-width: 160px;
39
+ padding: 5px 0;
40
+ margin: 2px 0 0; // override default ul
41
+ list-style: none;
42
+ font-size: $font-size-base;
43
+ text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)
44
+ background-color: $dropdown-bg;
45
+ border: 1px solid $dropdown-fallback-border; // IE8 fallback
46
+ border: 1px solid $dropdown-border;
47
+ border-radius: $border-radius-base;
48
+ @include box-shadow(0 6px 12px rgba(0,0,0,.175));
49
+ background-clip: padding-box;
50
+
51
+ // Aligns the dropdown menu to right
52
+ //
53
+ // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`
54
+ &.pull-right {
55
+ right: 0;
56
+ left: auto;
57
+ }
58
+
59
+ // Dividers (basically an hr) within the dropdown
60
+ .divider {
61
+ @include nav-divider($dropdown-divider-bg);
62
+ }
63
+
64
+ // Links within the dropdown menu
65
+ > li > a {
66
+ display: block;
67
+ padding: 3px 20px;
68
+ clear: both;
69
+ font-weight: normal;
70
+ line-height: $line-height-base;
71
+ color: $dropdown-link-color;
72
+ white-space: nowrap; // prevent links from randomly breaking onto new lines
73
+ }
74
+ }
75
+
76
+ // Hover/Focus state
77
+ .dropdown-menu > li > a {
78
+ &:hover,
79
+ &:focus {
80
+ text-decoration: none;
81
+ color: $dropdown-link-hover-color;
82
+ background-color: $dropdown-link-hover-bg;
83
+ }
84
+ }
85
+
86
+ // Active state
87
+ .dropdown-menu > .active > a {
88
+ &,
89
+ &:hover,
90
+ &:focus {
91
+ color: $dropdown-link-active-color;
92
+ text-decoration: none;
93
+ outline: 0;
94
+ background-color: $dropdown-link-active-bg;
95
+ }
96
+ }
97
+
98
+ // Disabled state
99
+ //
100
+ // Gray out text and ensure the hover/focus state remains gray
101
+
102
+ .dropdown-menu > .disabled > a {
103
+ &,
104
+ &:hover,
105
+ &:focus {
106
+ color: $dropdown-link-disabled-color;
107
+ }
108
+
109
+ // Nuke hover/focus effects
110
+ &:hover,
111
+ &:focus {
112
+ text-decoration: none;
113
+ background-color: transparent;
114
+ background-image: none; // Remove CSS gradient
115
+ @include reset-filter;
116
+ cursor: $cursor-disabled;
117
+ }
118
+ }
119
+
120
+ // Open state for the dropdown
121
+ .open {
122
+ // Show the menu
123
+ > .dropdown-menu {
124
+ display: block;
125
+ }
126
+
127
+ // Remove the outline when :focus is triggered
128
+ > a {
129
+ outline: 0;
130
+ }
131
+ }
132
+
133
+ // Menu positioning
134
+ //
135
+ // Add extra class to `.dropdown-menu` to flip the alignment of the dropdown
136
+ // menu with the parent.
137
+ .dropdown-menu-right {
138
+ left: auto; // Reset the default from `.dropdown-menu`
139
+ right: 0;
140
+ }
141
+ // With v3, we enabled auto-flipping if you have a dropdown within a right
142
+ // aligned nav component. To enable the undoing of that, we provide an override
143
+ // to restore the default dropdown menu alignment.
144
+ //
145
+ // This is only for left-aligning a dropdown menu within a `.navbar-right` or
146
+ // `.pull-right` nav component.
147
+ .dropdown-menu-left {
148
+ left: 0;
149
+ right: auto;
150
+ }
151
+
152
+ // Dropdown section headers
153
+ .dropdown-header {
154
+ display: block;
155
+ padding: 3px 20px;
156
+ font-size: $font-size-small;
157
+ line-height: $line-height-base;
158
+ color: $dropdown-header-color;
159
+ white-space: nowrap; // as with > li > a
160
+ }
161
+
162
+ // Backdrop to catch body clicks on mobile, etc.
163
+ .dropdown-backdrop {
164
+ position: fixed;
165
+ left: 0;
166
+ right: 0;
167
+ bottom: 0;
168
+ top: 0;
169
+ z-index: ($zindex-dropdown - 10);
170
+ }
171
+
172
+ // Right aligned dropdowns
173
+ .pull-right > .dropdown-menu {
174
+ right: 0;
175
+ left: auto;
176
+ }
177
+
178
+ // Allow for dropdowns to go bottom up (aka, dropup-menu)
179
+ //
180
+ // Just add .dropup after the standard .dropdown class and you're set, bro.
181
+ // TODO: abstract this so that the navbar fixed styles are not placed here?
182
+
183
+ .dropup,
184
+ .navbar-fixed-bottom .dropdown {
185
+ // Reverse the caret
186
+ .caret {
187
+ border-top: 0;
188
+ border-bottom: $caret-width-base dashed;
189
+ border-bottom: $caret-width-base solid \9; // IE8
190
+ content: "";
191
+ }
192
+ // Different positioning for bottom up menu
193
+ .dropdown-menu {
194
+ top: auto;
195
+ bottom: 100%;
196
+ margin-bottom: 2px;
197
+ }
198
+ }
199
+
200
+
201
+ // Component alignment
202
+ //
203
+ // Reiterate per navbar.less and the modified component alignment there.
204
+
205
+ @media (min-width: $grid-float-breakpoint) {
206
+ .navbar-right {
207
+ .dropdown-menu {
208
+ right: 0; left: auto;
209
+ }
210
+ // Necessary for overrides of the default right aligned menu.
211
+ // Will remove come v4 in all likelihood.
212
+ .dropdown-menu-left {
213
+ left: 0; right: auto;
214
+ }
215
+ }
216
+ }
@@ -0,0 +1,611 @@
1
+ //
2
+ // Forms
3
+ // --------------------------------------------------
4
+
5
+
6
+ // Normalize non-controls
7
+ //
8
+ // Restyle and baseline non-control form elements.
9
+
10
+ fieldset {
11
+ padding: 0;
12
+ margin: 0;
13
+ border: 0;
14
+ // Chrome and Firefox set a `min-width: min-content;` on fieldsets,
15
+ // so we reset that to ensure it behaves more like a standard block element.
16
+ // See https://github.com/twbs/bootstrap/issues/12359.
17
+ min-width: 0;
18
+ }
19
+
20
+ legend {
21
+ display: block;
22
+ width: 100%;
23
+ padding: 0;
24
+ margin-bottom: $line-height-computed;
25
+ font-size: ($font-size-base * 1.5);
26
+ line-height: inherit;
27
+ color: $legend-color;
28
+ border: 0;
29
+ border-bottom: 1px solid $legend-border-color;
30
+ }
31
+
32
+ label {
33
+ display: inline-block;
34
+ max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)
35
+ margin-bottom: 5px;
36
+ font-weight: bold;
37
+ }
38
+
39
+
40
+ // Normalize form controls
41
+ //
42
+ // While most of our form styles require extra classes, some basic normalization
43
+ // is required to ensure optimum display with or without those classes to better
44
+ // address browser inconsistencies.
45
+
46
+ // Override content-box in Normalize (* isn't specific enough)
47
+ input[type="search"] {
48
+ @include box-sizing(border-box);
49
+ }
50
+
51
+ // Position radios and checkboxes better
52
+ input[type="radio"],
53
+ input[type="checkbox"] {
54
+ margin: 4px 0 0;
55
+ margin-top: 1px \9; // IE8-9
56
+ line-height: normal;
57
+ }
58
+
59
+ input[type="file"] {
60
+ display: block;
61
+ }
62
+
63
+ // Make range inputs behave like textual form controls
64
+ input[type="range"] {
65
+ display: block;
66
+ width: 100%;
67
+ }
68
+
69
+ // Make multiple select elements height not fixed
70
+ select[multiple],
71
+ select[size] {
72
+ height: auto;
73
+ }
74
+
75
+ // Focus for file, radio, and checkbox
76
+ input[type="file"]:focus,
77
+ input[type="radio"]:focus,
78
+ input[type="checkbox"]:focus {
79
+ @include tab-focus;
80
+ }
81
+
82
+ // Adjust output element
83
+ output {
84
+ display: block;
85
+ padding-top: ($padding-base-vertical + 1);
86
+ font-size: $font-size-base;
87
+ line-height: $line-height-base;
88
+ color: $input-color;
89
+ }
90
+
91
+
92
+ // Common form controls
93
+ //
94
+ // Shared size and type resets for form controls. Apply `.form-control` to any
95
+ // of the following form controls:
96
+ //
97
+ // select
98
+ // textarea
99
+ // input[type="text"]
100
+ // input[type="password"]
101
+ // input[type="datetime"]
102
+ // input[type="datetime-local"]
103
+ // input[type="date"]
104
+ // input[type="month"]
105
+ // input[type="time"]
106
+ // input[type="week"]
107
+ // input[type="number"]
108
+ // input[type="email"]
109
+ // input[type="url"]
110
+ // input[type="search"]
111
+ // input[type="tel"]
112
+ // input[type="color"]
113
+
114
+ .form-control {
115
+ display: block;
116
+ width: 100%;
117
+ height: $input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)
118
+ padding: $padding-base-vertical $padding-base-horizontal;
119
+ font-size: $font-size-base;
120
+ line-height: $line-height-base;
121
+ color: $input-color;
122
+ background-color: $input-bg;
123
+ background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
124
+ border: 1px solid $input-border;
125
+ border-radius: $input-border-radius; // Note: This has no effect on <select>s in some browsers, due to the limited stylability of <select>s in CSS.
126
+ @include box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
127
+ @include transition(border-color ease-in-out .15s, box-shadow ease-in-out .15s);
128
+
129
+ // Customize the `:focus` state to imitate native WebKit styles.
130
+ @include form-control-focus;
131
+
132
+ // Placeholder
133
+ @include placeholder;
134
+
135
+ // Disabled and read-only inputs
136
+ //
137
+ // HTML5 says that controls under a fieldset > legend:first-child won't be
138
+ // disabled if the fieldset is disabled. Due to implementation difficulty, we
139
+ // don't honor that edge case; we style them as disabled anyway.
140
+ &[disabled],
141
+ &[readonly],
142
+ fieldset[disabled] & {
143
+ background-color: $input-bg-disabled;
144
+ opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655
145
+ }
146
+
147
+ &[disabled],
148
+ fieldset[disabled] & {
149
+ cursor: $cursor-disabled;
150
+ }
151
+
152
+ // [converter] extracted textarea& to textarea.form-control
153
+ }
154
+
155
+ // Reset height for `textarea`s
156
+ textarea.form-control {
157
+ height: auto;
158
+ }
159
+
160
+
161
+ // Search inputs in iOS
162
+ //
163
+ // This overrides the extra rounded corners on search inputs in iOS so that our
164
+ // `.form-control` class can properly style them. Note that this cannot simply
165
+ // be added to `.form-control` as it's not specific enough. For details, see
166
+ // https://github.com/twbs/bootstrap/issues/11586.
167
+
168
+ input[type="search"] {
169
+ -webkit-appearance: none;
170
+ }
171
+
172
+
173
+ // Special styles for iOS temporal inputs
174
+ //
175
+ // In Mobile Safari, setting `display: block` on temporal inputs causes the
176
+ // text within the input to become vertically misaligned. As a workaround, we
177
+ // set a pixel line-height that matches the given height of the input, but only
178
+ // for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848
179
+ //
180
+ // Note that as of 8.3, iOS doesn't support `datetime` or `week`.
181
+
182
+ @media screen and (-webkit-min-device-pixel-ratio: 0) {
183
+ input[type="date"],
184
+ input[type="time"],
185
+ input[type="datetime-local"],
186
+ input[type="month"] {
187
+ &.form-control {
188
+ line-height: $input-height-base;
189
+ }
190
+
191
+ &.input-sm,
192
+ .input-group-sm & {
193
+ line-height: $input-height-small;
194
+ }
195
+
196
+ &.input-lg,
197
+ .input-group-lg & {
198
+ line-height: $input-height-large;
199
+ }
200
+ }
201
+ }
202
+
203
+
204
+ // Form groups
205
+ //
206
+ // Designed to help with the organization and spacing of vertical forms. For
207
+ // horizontal forms, use the predefined grid classes.
208
+
209
+ .form-group {
210
+ margin-bottom: $form-group-margin-bottom;
211
+ }
212
+
213
+
214
+ // Checkboxes and radios
215
+ //
216
+ // Indent the labels to position radios/checkboxes as hanging controls.
217
+
218
+ .radio,
219
+ .checkbox {
220
+ position: relative;
221
+ display: block;
222
+ margin-top: 10px;
223
+ margin-bottom: 10px;
224
+
225
+ label {
226
+ min-height: $line-height-computed; // Ensure the input doesn't jump when there is no text
227
+ padding-left: 20px;
228
+ margin-bottom: 0;
229
+ font-weight: normal;
230
+ cursor: pointer;
231
+ }
232
+ }
233
+ .radio input[type="radio"],
234
+ .radio-inline input[type="radio"],
235
+ .checkbox input[type="checkbox"],
236
+ .checkbox-inline input[type="checkbox"] {
237
+ position: absolute;
238
+ margin-left: -20px;
239
+ margin-top: 4px \9;
240
+ }
241
+
242
+ .radio + .radio,
243
+ .checkbox + .checkbox {
244
+ margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing
245
+ }
246
+
247
+ // Radios and checkboxes on same line
248
+ .radio-inline,
249
+ .checkbox-inline {
250
+ position: relative;
251
+ display: inline-block;
252
+ padding-left: 20px;
253
+ margin-bottom: 0;
254
+ vertical-align: middle;
255
+ font-weight: normal;
256
+ cursor: pointer;
257
+ }
258
+ .radio-inline + .radio-inline,
259
+ .checkbox-inline + .checkbox-inline {
260
+ margin-top: 0;
261
+ margin-left: 10px; // space out consecutive inline controls
262
+ }
263
+
264
+ // Apply same disabled cursor tweak as for inputs
265
+ // Some special care is needed because <label>s don't inherit their parent's `cursor`.
266
+ //
267
+ // Note: Neither radios nor checkboxes can be readonly.
268
+ input[type="radio"],
269
+ input[type="checkbox"] {
270
+ &[disabled],
271
+ &.disabled,
272
+ fieldset[disabled] & {
273
+ cursor: $cursor-disabled;
274
+ }
275
+ }
276
+ // These classes are used directly on <label>s
277
+ .radio-inline,
278
+ .checkbox-inline {
279
+ &.disabled,
280
+ fieldset[disabled] & {
281
+ cursor: $cursor-disabled;
282
+ }
283
+ }
284
+ // These classes are used on elements with <label> descendants
285
+ .radio,
286
+ .checkbox {
287
+ &.disabled,
288
+ fieldset[disabled] & {
289
+ label {
290
+ cursor: $cursor-disabled;
291
+ }
292
+ }
293
+ }
294
+
295
+
296
+ // Static form control text
297
+ //
298
+ // Apply class to a `p` element to make any string of text align with labels in
299
+ // a horizontal form layout.
300
+
301
+ .form-control-static {
302
+ // Size it appropriately next to real form controls
303
+ padding-top: ($padding-base-vertical + 1);
304
+ padding-bottom: ($padding-base-vertical + 1);
305
+ // Remove default margin from `p`
306
+ margin-bottom: 0;
307
+ min-height: ($line-height-computed + $font-size-base);
308
+
309
+ &.input-lg,
310
+ &.input-sm {
311
+ padding-left: 0;
312
+ padding-right: 0;
313
+ }
314
+ }
315
+
316
+
317
+ // Form control sizing
318
+ //
319
+ // Build on `.form-control` with modifier classes to decrease or increase the
320
+ // height and font-size of form controls.
321
+ //
322
+ // The `.form-group-* form-control` variations are sadly duplicated to avoid the
323
+ // issue documented in https://github.com/twbs/bootstrap/issues/15074.
324
+
325
+ @include input-size('.input-sm', $input-height-small, $padding-small-vertical, $padding-small-horizontal, $font-size-small, $line-height-small, $input-border-radius-small);
326
+ .form-group-sm {
327
+ .form-control {
328
+ height: $input-height-small;
329
+ padding: $padding-small-vertical $padding-small-horizontal;
330
+ font-size: $font-size-small;
331
+ line-height: $line-height-small;
332
+ border-radius: $input-border-radius-small;
333
+ }
334
+ select.form-control {
335
+ height: $input-height-small;
336
+ line-height: $input-height-small;
337
+ }
338
+ textarea.form-control,
339
+ select[multiple].form-control {
340
+ height: auto;
341
+ }
342
+ .form-control-static {
343
+ height: $input-height-small;
344
+ min-height: ($line-height-computed + $font-size-small);
345
+ padding: ($padding-small-vertical + 1) $padding-small-horizontal;
346
+ font-size: $font-size-small;
347
+ line-height: $line-height-small;
348
+ }
349
+ }
350
+
351
+ @include input-size('.input-lg', $input-height-large, $padding-large-vertical, $padding-large-horizontal, $font-size-large, $line-height-large, $input-border-radius-large);
352
+ .form-group-lg {
353
+ .form-control {
354
+ height: $input-height-large;
355
+ padding: $padding-large-vertical $padding-large-horizontal;
356
+ font-size: $font-size-large;
357
+ line-height: $line-height-large;
358
+ border-radius: $input-border-radius-large;
359
+ }
360
+ select.form-control {
361
+ height: $input-height-large;
362
+ line-height: $input-height-large;
363
+ }
364
+ textarea.form-control,
365
+ select[multiple].form-control {
366
+ height: auto;
367
+ }
368
+ .form-control-static {
369
+ height: $input-height-large;
370
+ min-height: ($line-height-computed + $font-size-large);
371
+ padding: ($padding-large-vertical + 1) $padding-large-horizontal;
372
+ font-size: $font-size-large;
373
+ line-height: $line-height-large;
374
+ }
375
+ }
376
+
377
+
378
+ // Form control feedback states
379
+ //
380
+ // Apply contextual and semantic states to individual form controls.
381
+
382
+ .has-feedback {
383
+ // Enable absolute positioning
384
+ position: relative;
385
+
386
+ // Ensure icons don't overlap text
387
+ .form-control {
388
+ padding-right: ($input-height-base * 1.25);
389
+ }
390
+ }
391
+ // Feedback icon (requires .glyphicon classes)
392
+ .form-control-feedback {
393
+ position: absolute;
394
+ top: 0;
395
+ right: 0;
396
+ z-index: 2; // Ensure icon is above input groups
397
+ display: block;
398
+ width: $input-height-base;
399
+ height: $input-height-base;
400
+ line-height: $input-height-base;
401
+ text-align: center;
402
+ pointer-events: none;
403
+ }
404
+ .input-lg + .form-control-feedback,
405
+ .input-group-lg + .form-control-feedback,
406
+ .form-group-lg .form-control + .form-control-feedback {
407
+ width: $input-height-large;
408
+ height: $input-height-large;
409
+ line-height: $input-height-large;
410
+ }
411
+ .input-sm + .form-control-feedback,
412
+ .input-group-sm + .form-control-feedback,
413
+ .form-group-sm .form-control + .form-control-feedback {
414
+ width: $input-height-small;
415
+ height: $input-height-small;
416
+ line-height: $input-height-small;
417
+ }
418
+
419
+ // Feedback states
420
+ .has-success {
421
+ @include form-control-validation($state-success-text, $state-success-text, $state-success-bg);
422
+ }
423
+ .has-warning {
424
+ @include form-control-validation($state-warning-text, $state-warning-text, $state-warning-bg);
425
+ }
426
+ .has-error {
427
+ @include form-control-validation($state-danger-text, $state-danger-text, $state-danger-bg);
428
+ }
429
+
430
+ // Reposition feedback icon if input has visible label above
431
+ .has-feedback label {
432
+
433
+ & ~ .form-control-feedback {
434
+ top: ($line-height-computed + 5); // Height of the `label` and its margin
435
+ }
436
+ &.sr-only ~ .form-control-feedback {
437
+ top: 0;
438
+ }
439
+ }
440
+
441
+
442
+ // Help text
443
+ //
444
+ // Apply to any element you wish to create light text for placement immediately
445
+ // below a form control. Use for general help, formatting, or instructional text.
446
+
447
+ .help-block {
448
+ display: block; // account for any element using help-block
449
+ margin-top: 5px;
450
+ margin-bottom: 10px;
451
+ color: lighten($text-color, 25%); // lighten the text some for contrast
452
+ }
453
+
454
+
455
+ // Inline forms
456
+ //
457
+ // Make forms appear inline(-block) by adding the `.form-inline` class. Inline
458
+ // forms begin stacked on extra small (mobile) devices and then go inline when
459
+ // viewports reach <768px.
460
+ //
461
+ // Requires wrapping inputs and labels with `.form-group` for proper display of
462
+ // default HTML form controls and our custom form controls (e.g., input groups).
463
+ //
464
+ // Heads up! This is mixin-ed into `.navbar-form` in navbars.less.
465
+
466
+ // [converter] extracted from `.form-inline` for libsass compatibility
467
+ @mixin form-inline {
468
+
469
+ // Kick in the inline
470
+ @media (min-width: $screen-sm-min) {
471
+ // Inline-block all the things for "inline"
472
+ .form-group {
473
+ display: inline-block;
474
+ margin-bottom: 0;
475
+ vertical-align: middle;
476
+ }
477
+
478
+ // In navbar-form, allow folks to *not* use `.form-group`
479
+ .form-control {
480
+ display: inline-block;
481
+ width: auto; // Prevent labels from stacking above inputs in `.form-group`
482
+ vertical-align: middle;
483
+ }
484
+
485
+ // Make static controls behave like regular ones
486
+ .form-control-static {
487
+ display: inline-block;
488
+ }
489
+
490
+ .input-group {
491
+ display: inline-table;
492
+ vertical-align: middle;
493
+
494
+ .input-group-addon,
495
+ .input-group-btn,
496
+ .form-control {
497
+ width: auto;
498
+ }
499
+ }
500
+
501
+ // Input groups need that 100% width though
502
+ .input-group > .form-control {
503
+ width: 100%;
504
+ }
505
+
506
+ .control-label {
507
+ margin-bottom: 0;
508
+ vertical-align: middle;
509
+ }
510
+
511
+ // Remove default margin on radios/checkboxes that were used for stacking, and
512
+ // then undo the floating of radios and checkboxes to match.
513
+ .radio,
514
+ .checkbox {
515
+ display: inline-block;
516
+ margin-top: 0;
517
+ margin-bottom: 0;
518
+ vertical-align: middle;
519
+
520
+ label {
521
+ padding-left: 0;
522
+ }
523
+ }
524
+ .radio input[type="radio"],
525
+ .checkbox input[type="checkbox"] {
526
+ position: relative;
527
+ margin-left: 0;
528
+ }
529
+
530
+ // Re-override the feedback icon.
531
+ .has-feedback .form-control-feedback {
532
+ top: 0;
533
+ }
534
+ }
535
+ }
536
+ // [converter] extracted as `@mixin form-inline` for libsass compatibility
537
+ .form-inline {
538
+ @include form-inline;
539
+ }
540
+
541
+
542
+
543
+ // Horizontal forms
544
+ //
545
+ // Horizontal forms are built on grid classes and allow you to create forms with
546
+ // labels on the left and inputs on the right.
547
+
548
+ .form-horizontal {
549
+
550
+ // Consistent vertical alignment of radios and checkboxes
551
+ //
552
+ // Labels also get some reset styles, but that is scoped to a media query below.
553
+ .radio,
554
+ .checkbox,
555
+ .radio-inline,
556
+ .checkbox-inline {
557
+ margin-top: 0;
558
+ margin-bottom: 0;
559
+ padding-top: ($padding-base-vertical + 1); // Default padding plus a border
560
+ }
561
+ // Account for padding we're adding to ensure the alignment and of help text
562
+ // and other content below items
563
+ .radio,
564
+ .checkbox {
565
+ min-height: ($line-height-computed + ($padding-base-vertical + 1));
566
+ }
567
+
568
+ // Make form groups behave like rows
569
+ .form-group {
570
+ @include make-row;
571
+ }
572
+
573
+ // Reset spacing and right align labels, but scope to media queries so that
574
+ // labels on narrow viewports stack the same as a default form example.
575
+ @media (min-width: $screen-sm-min) {
576
+ .control-label {
577
+ text-align: right;
578
+ margin-bottom: 0;
579
+ padding-top: ($padding-base-vertical + 1); // Default padding plus a border
580
+ }
581
+ }
582
+
583
+ // Validation states
584
+ //
585
+ // Reposition the icon because it's now within a grid column and columns have
586
+ // `position: relative;` on them. Also accounts for the grid gutter padding.
587
+ .has-feedback .form-control-feedback {
588
+ right: floor(($grid-gutter-width / 2));
589
+ }
590
+
591
+ // Form group sizes
592
+ //
593
+ // Quick utility class for applying `.input-lg` and `.input-sm` styles to the
594
+ // inputs and labels within a `.form-group`.
595
+ .form-group-lg {
596
+ @media (min-width: $screen-sm-min) {
597
+ .control-label {
598
+ padding-top: (($padding-large-vertical * $line-height-large) + 1);
599
+ font-size: $font-size-large;
600
+ }
601
+ }
602
+ }
603
+ .form-group-sm {
604
+ @media (min-width: $screen-sm-min) {
605
+ .control-label {
606
+ padding-top: ($padding-small-vertical + 1);
607
+ font-size: $font-size-small;
608
+ }
609
+ }
610
+ }
611
+ }