kanpachi 0.0.6 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (102) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +8 -0
  3. data/bower.json +1 -0
  4. data/kanpachi.gemspec +1 -1
  5. data/lib/kanpachi/doc/template/components/bootstrap/.bower.json +34 -0
  6. data/lib/kanpachi/doc/template/components/bootstrap/Gruntfile.js +421 -0
  7. data/lib/kanpachi/doc/template/components/bootstrap/LICENSE +21 -0
  8. data/lib/kanpachi/doc/template/components/bootstrap/README.md +173 -0
  9. data/lib/kanpachi/doc/template/components/bootstrap/bower.json +24 -0
  10. data/lib/kanpachi/doc/template/{source/stylesheets → components/bootstrap/dist/css}/bootstrap-theme.css +0 -0
  11. data/lib/kanpachi/doc/template/{source/stylesheets → components/bootstrap/dist/css}/bootstrap-theme.css.map +0 -0
  12. data/lib/kanpachi/doc/template/{source/stylesheets → components/bootstrap/dist/css}/bootstrap-theme.min.css +0 -0
  13. data/lib/kanpachi/doc/template/{source/stylesheets → components/bootstrap/dist/css}/bootstrap.css +0 -0
  14. data/lib/kanpachi/doc/template/{source/stylesheets → components/bootstrap/dist/css}/bootstrap.css.map +0 -0
  15. data/lib/kanpachi/doc/template/{source/stylesheets → components/bootstrap/dist/css}/bootstrap.min.css +0 -0
  16. data/lib/kanpachi/doc/template/components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot +0 -0
  17. data/lib/kanpachi/doc/template/components/bootstrap/dist/fonts/glyphicons-halflings-regular.svg +229 -0
  18. data/lib/kanpachi/doc/template/components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf +0 -0
  19. data/lib/kanpachi/doc/template/components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff +0 -0
  20. data/lib/kanpachi/doc/template/{source/javascripts → components/bootstrap/dist/js}/bootstrap.js +0 -0
  21. data/lib/kanpachi/doc/template/{source/javascripts → components/bootstrap/dist/js}/bootstrap.min.js +0 -0
  22. data/lib/kanpachi/doc/template/components/bootstrap/fonts/glyphicons-halflings-regular.eot +0 -0
  23. data/lib/kanpachi/doc/template/components/bootstrap/fonts/glyphicons-halflings-regular.svg +229 -0
  24. data/lib/kanpachi/doc/template/components/bootstrap/fonts/glyphicons-halflings-regular.ttf +0 -0
  25. data/lib/kanpachi/doc/template/components/bootstrap/fonts/glyphicons-halflings-regular.woff +0 -0
  26. data/lib/kanpachi/doc/template/components/bootstrap/grunt/bs-glyphicons-data-generator.js +34 -0
  27. data/lib/kanpachi/doc/template/components/bootstrap/grunt/bs-lessdoc-parser.js +236 -0
  28. data/lib/kanpachi/doc/template/components/bootstrap/grunt/bs-raw-files-generator.js +31 -0
  29. data/lib/kanpachi/doc/template/components/bootstrap/grunt/shrinkwrap.js +28 -0
  30. data/lib/kanpachi/doc/template/components/bootstrap/js/affix.js +137 -0
  31. data/lib/kanpachi/doc/template/components/bootstrap/js/alert.js +88 -0
  32. data/lib/kanpachi/doc/template/components/bootstrap/js/button.js +107 -0
  33. data/lib/kanpachi/doc/template/components/bootstrap/js/carousel.js +205 -0
  34. data/lib/kanpachi/doc/template/components/bootstrap/js/collapse.js +170 -0
  35. data/lib/kanpachi/doc/template/components/bootstrap/js/dropdown.js +147 -0
  36. data/lib/kanpachi/doc/template/components/bootstrap/js/modal.js +243 -0
  37. data/lib/kanpachi/doc/template/components/bootstrap/js/popover.js +110 -0
  38. data/lib/kanpachi/doc/template/components/bootstrap/js/scrollspy.js +153 -0
  39. data/lib/kanpachi/doc/template/components/bootstrap/js/tab.js +125 -0
  40. data/lib/kanpachi/doc/template/components/bootstrap/js/tooltip.js +399 -0
  41. data/lib/kanpachi/doc/template/components/bootstrap/js/transition.js +48 -0
  42. data/lib/kanpachi/doc/template/components/bootstrap/less/alerts.less +67 -0
  43. data/lib/kanpachi/doc/template/components/bootstrap/less/badges.less +55 -0
  44. data/lib/kanpachi/doc/template/components/bootstrap/less/bootstrap.less +49 -0
  45. data/lib/kanpachi/doc/template/components/bootstrap/less/breadcrumbs.less +26 -0
  46. data/lib/kanpachi/doc/template/components/bootstrap/less/button-groups.less +226 -0
  47. data/lib/kanpachi/doc/template/components/bootstrap/less/buttons.less +159 -0
  48. data/lib/kanpachi/doc/template/components/bootstrap/less/carousel.less +232 -0
  49. data/lib/kanpachi/doc/template/components/bootstrap/less/close.less +33 -0
  50. data/lib/kanpachi/doc/template/components/bootstrap/less/code.less +63 -0
  51. data/lib/kanpachi/doc/template/components/bootstrap/less/component-animations.less +29 -0
  52. data/lib/kanpachi/doc/template/components/bootstrap/less/dropdowns.less +213 -0
  53. data/lib/kanpachi/doc/template/components/bootstrap/less/forms.less +438 -0
  54. data/lib/kanpachi/doc/template/components/bootstrap/less/glyphicons.less +233 -0
  55. data/lib/kanpachi/doc/template/components/bootstrap/less/grid.less +84 -0
  56. data/lib/kanpachi/doc/template/components/bootstrap/less/input-groups.less +162 -0
  57. data/lib/kanpachi/doc/template/components/bootstrap/less/jumbotron.less +44 -0
  58. data/lib/kanpachi/doc/template/components/bootstrap/less/labels.less +64 -0
  59. data/lib/kanpachi/doc/template/components/bootstrap/less/list-group.less +110 -0
  60. data/lib/kanpachi/doc/template/components/bootstrap/less/media.less +56 -0
  61. data/lib/kanpachi/doc/template/components/bootstrap/less/mixins.less +929 -0
  62. data/lib/kanpachi/doc/template/components/bootstrap/less/modals.less +139 -0
  63. data/lib/kanpachi/doc/template/components/bootstrap/less/navbar.less +616 -0
  64. data/lib/kanpachi/doc/template/components/bootstrap/less/navs.less +242 -0
  65. data/lib/kanpachi/doc/template/components/bootstrap/less/normalize.less +423 -0
  66. data/lib/kanpachi/doc/template/components/bootstrap/less/pager.less +55 -0
  67. data/lib/kanpachi/doc/template/components/bootstrap/less/pagination.less +88 -0
  68. data/lib/kanpachi/doc/template/components/bootstrap/less/panels.less +241 -0
  69. data/lib/kanpachi/doc/template/components/bootstrap/less/popovers.less +133 -0
  70. data/lib/kanpachi/doc/template/components/bootstrap/less/print.less +101 -0
  71. data/lib/kanpachi/doc/template/components/bootstrap/less/progress-bars.less +80 -0
  72. data/lib/kanpachi/doc/template/components/bootstrap/less/responsive-utilities.less +92 -0
  73. data/lib/kanpachi/doc/template/components/bootstrap/less/scaffolding.less +134 -0
  74. data/lib/kanpachi/doc/template/components/bootstrap/less/tables.less +233 -0
  75. data/lib/kanpachi/doc/template/components/bootstrap/less/theme.less +247 -0
  76. data/lib/kanpachi/doc/template/components/bootstrap/less/thumbnails.less +36 -0
  77. data/lib/kanpachi/doc/template/components/bootstrap/less/tooltip.less +95 -0
  78. data/lib/kanpachi/doc/template/components/bootstrap/less/type.less +293 -0
  79. data/lib/kanpachi/doc/template/components/bootstrap/less/utilities.less +56 -0
  80. data/lib/kanpachi/doc/template/components/bootstrap/less/variables.less +829 -0
  81. data/lib/kanpachi/doc/template/components/bootstrap/less/wells.less +29 -0
  82. data/lib/kanpachi/doc/template/components/bootstrap/package.json +70 -0
  83. data/lib/kanpachi/doc/template/components/bootstrap/test-infra/README.md +100 -0
  84. data/lib/kanpachi/doc/template/components/bootstrap/test-infra/npm-shrinkwrap.canonical.json +1 -0
  85. data/lib/kanpachi/doc/template/components/bootstrap/test-infra/requirements.txt +1 -0
  86. data/lib/kanpachi/doc/template/components/bootstrap/test-infra/s3_cache.py +107 -0
  87. data/lib/kanpachi/doc/template/components/bootstrap/test-infra/sauce_browsers.yml +83 -0
  88. data/lib/kanpachi/doc/template/components/bootstrap/test-infra/uncached-npm-install.sh +4 -0
  89. data/lib/kanpachi/doc/template/components/html5shiv/.bower.json +6 -7
  90. data/lib/kanpachi/doc/template/components/html5shiv/Gruntfile.js +61 -0
  91. data/lib/kanpachi/doc/template/components/html5shiv/bower.json +15 -0
  92. data/lib/kanpachi/doc/template/components/html5shiv/dist/html5shiv-printshiv.js +498 -10
  93. data/lib/kanpachi/doc/template/components/html5shiv/dist/html5shiv-printshiv.min.js +4 -0
  94. data/lib/kanpachi/doc/template/components/html5shiv/dist/html5shiv.js +300 -7
  95. data/lib/kanpachi/doc/template/components/html5shiv/dist/html5shiv.min.js +4 -0
  96. data/lib/kanpachi/doc/template/components/html5shiv/package.json +16 -0
  97. data/lib/kanpachi/doc/template/components/html5shiv/readme.md +3 -3
  98. data/lib/kanpachi/doc/template/source/javascripts/all.coffee +1 -1
  99. data/lib/kanpachi/doc/template/source/layouts/layout.slim +1 -1
  100. data/lib/kanpachi/response.rb +13 -5
  101. data/lib/kanpachi/version.rb +1 -1
  102. metadata +93 -12
@@ -0,0 +1,233 @@
1
+ //
2
+ // Glyphicons for Bootstrap
3
+ //
4
+ // Since icons are fonts, they can be placed anywhere text is placed and are
5
+ // thus automatically sized to match the surrounding child. To use, create an
6
+ // inline element with the appropriate classes, like so:
7
+ //
8
+ // <a href="#"><span class="glyphicon glyphicon-star"></span> Star</a>
9
+
10
+ // Import the fonts
11
+ @font-face {
12
+ font-family: 'Glyphicons Halflings';
13
+ src: ~"url('@{icon-font-path}@{icon-font-name}.eot')";
14
+ src: ~"url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype')",
15
+ ~"url('@{icon-font-path}@{icon-font-name}.woff') format('woff')",
16
+ ~"url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype')",
17
+ ~"url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg')";
18
+ }
19
+
20
+ // Catchall baseclass
21
+ .glyphicon {
22
+ position: relative;
23
+ top: 1px;
24
+ display: inline-block;
25
+ font-family: 'Glyphicons Halflings';
26
+ font-style: normal;
27
+ font-weight: normal;
28
+ line-height: 1;
29
+ -webkit-font-smoothing: antialiased;
30
+ -moz-osx-font-smoothing: grayscale;
31
+ }
32
+
33
+ // Individual icons
34
+ .glyphicon-asterisk { &:before { content: "\2a"; } }
35
+ .glyphicon-plus { &:before { content: "\2b"; } }
36
+ .glyphicon-euro { &:before { content: "\20ac"; } }
37
+ .glyphicon-minus { &:before { content: "\2212"; } }
38
+ .glyphicon-cloud { &:before { content: "\2601"; } }
39
+ .glyphicon-envelope { &:before { content: "\2709"; } }
40
+ .glyphicon-pencil { &:before { content: "\270f"; } }
41
+ .glyphicon-glass { &:before { content: "\e001"; } }
42
+ .glyphicon-music { &:before { content: "\e002"; } }
43
+ .glyphicon-search { &:before { content: "\e003"; } }
44
+ .glyphicon-heart { &:before { content: "\e005"; } }
45
+ .glyphicon-star { &:before { content: "\e006"; } }
46
+ .glyphicon-star-empty { &:before { content: "\e007"; } }
47
+ .glyphicon-user { &:before { content: "\e008"; } }
48
+ .glyphicon-film { &:before { content: "\e009"; } }
49
+ .glyphicon-th-large { &:before { content: "\e010"; } }
50
+ .glyphicon-th { &:before { content: "\e011"; } }
51
+ .glyphicon-th-list { &:before { content: "\e012"; } }
52
+ .glyphicon-ok { &:before { content: "\e013"; } }
53
+ .glyphicon-remove { &:before { content: "\e014"; } }
54
+ .glyphicon-zoom-in { &:before { content: "\e015"; } }
55
+ .glyphicon-zoom-out { &:before { content: "\e016"; } }
56
+ .glyphicon-off { &:before { content: "\e017"; } }
57
+ .glyphicon-signal { &:before { content: "\e018"; } }
58
+ .glyphicon-cog { &:before { content: "\e019"; } }
59
+ .glyphicon-trash { &:before { content: "\e020"; } }
60
+ .glyphicon-home { &:before { content: "\e021"; } }
61
+ .glyphicon-file { &:before { content: "\e022"; } }
62
+ .glyphicon-time { &:before { content: "\e023"; } }
63
+ .glyphicon-road { &:before { content: "\e024"; } }
64
+ .glyphicon-download-alt { &:before { content: "\e025"; } }
65
+ .glyphicon-download { &:before { content: "\e026"; } }
66
+ .glyphicon-upload { &:before { content: "\e027"; } }
67
+ .glyphicon-inbox { &:before { content: "\e028"; } }
68
+ .glyphicon-play-circle { &:before { content: "\e029"; } }
69
+ .glyphicon-repeat { &:before { content: "\e030"; } }
70
+ .glyphicon-refresh { &:before { content: "\e031"; } }
71
+ .glyphicon-list-alt { &:before { content: "\e032"; } }
72
+ .glyphicon-lock { &:before { content: "\e033"; } }
73
+ .glyphicon-flag { &:before { content: "\e034"; } }
74
+ .glyphicon-headphones { &:before { content: "\e035"; } }
75
+ .glyphicon-volume-off { &:before { content: "\e036"; } }
76
+ .glyphicon-volume-down { &:before { content: "\e037"; } }
77
+ .glyphicon-volume-up { &:before { content: "\e038"; } }
78
+ .glyphicon-qrcode { &:before { content: "\e039"; } }
79
+ .glyphicon-barcode { &:before { content: "\e040"; } }
80
+ .glyphicon-tag { &:before { content: "\e041"; } }
81
+ .glyphicon-tags { &:before { content: "\e042"; } }
82
+ .glyphicon-book { &:before { content: "\e043"; } }
83
+ .glyphicon-bookmark { &:before { content: "\e044"; } }
84
+ .glyphicon-print { &:before { content: "\e045"; } }
85
+ .glyphicon-camera { &:before { content: "\e046"; } }
86
+ .glyphicon-font { &:before { content: "\e047"; } }
87
+ .glyphicon-bold { &:before { content: "\e048"; } }
88
+ .glyphicon-italic { &:before { content: "\e049"; } }
89
+ .glyphicon-text-height { &:before { content: "\e050"; } }
90
+ .glyphicon-text-width { &:before { content: "\e051"; } }
91
+ .glyphicon-align-left { &:before { content: "\e052"; } }
92
+ .glyphicon-align-center { &:before { content: "\e053"; } }
93
+ .glyphicon-align-right { &:before { content: "\e054"; } }
94
+ .glyphicon-align-justify { &:before { content: "\e055"; } }
95
+ .glyphicon-list { &:before { content: "\e056"; } }
96
+ .glyphicon-indent-left { &:before { content: "\e057"; } }
97
+ .glyphicon-indent-right { &:before { content: "\e058"; } }
98
+ .glyphicon-facetime-video { &:before { content: "\e059"; } }
99
+ .glyphicon-picture { &:before { content: "\e060"; } }
100
+ .glyphicon-map-marker { &:before { content: "\e062"; } }
101
+ .glyphicon-adjust { &:before { content: "\e063"; } }
102
+ .glyphicon-tint { &:before { content: "\e064"; } }
103
+ .glyphicon-edit { &:before { content: "\e065"; } }
104
+ .glyphicon-share { &:before { content: "\e066"; } }
105
+ .glyphicon-check { &:before { content: "\e067"; } }
106
+ .glyphicon-move { &:before { content: "\e068"; } }
107
+ .glyphicon-step-backward { &:before { content: "\e069"; } }
108
+ .glyphicon-fast-backward { &:before { content: "\e070"; } }
109
+ .glyphicon-backward { &:before { content: "\e071"; } }
110
+ .glyphicon-play { &:before { content: "\e072"; } }
111
+ .glyphicon-pause { &:before { content: "\e073"; } }
112
+ .glyphicon-stop { &:before { content: "\e074"; } }
113
+ .glyphicon-forward { &:before { content: "\e075"; } }
114
+ .glyphicon-fast-forward { &:before { content: "\e076"; } }
115
+ .glyphicon-step-forward { &:before { content: "\e077"; } }
116
+ .glyphicon-eject { &:before { content: "\e078"; } }
117
+ .glyphicon-chevron-left { &:before { content: "\e079"; } }
118
+ .glyphicon-chevron-right { &:before { content: "\e080"; } }
119
+ .glyphicon-plus-sign { &:before { content: "\e081"; } }
120
+ .glyphicon-minus-sign { &:before { content: "\e082"; } }
121
+ .glyphicon-remove-sign { &:before { content: "\e083"; } }
122
+ .glyphicon-ok-sign { &:before { content: "\e084"; } }
123
+ .glyphicon-question-sign { &:before { content: "\e085"; } }
124
+ .glyphicon-info-sign { &:before { content: "\e086"; } }
125
+ .glyphicon-screenshot { &:before { content: "\e087"; } }
126
+ .glyphicon-remove-circle { &:before { content: "\e088"; } }
127
+ .glyphicon-ok-circle { &:before { content: "\e089"; } }
128
+ .glyphicon-ban-circle { &:before { content: "\e090"; } }
129
+ .glyphicon-arrow-left { &:before { content: "\e091"; } }
130
+ .glyphicon-arrow-right { &:before { content: "\e092"; } }
131
+ .glyphicon-arrow-up { &:before { content: "\e093"; } }
132
+ .glyphicon-arrow-down { &:before { content: "\e094"; } }
133
+ .glyphicon-share-alt { &:before { content: "\e095"; } }
134
+ .glyphicon-resize-full { &:before { content: "\e096"; } }
135
+ .glyphicon-resize-small { &:before { content: "\e097"; } }
136
+ .glyphicon-exclamation-sign { &:before { content: "\e101"; } }
137
+ .glyphicon-gift { &:before { content: "\e102"; } }
138
+ .glyphicon-leaf { &:before { content: "\e103"; } }
139
+ .glyphicon-fire { &:before { content: "\e104"; } }
140
+ .glyphicon-eye-open { &:before { content: "\e105"; } }
141
+ .glyphicon-eye-close { &:before { content: "\e106"; } }
142
+ .glyphicon-warning-sign { &:before { content: "\e107"; } }
143
+ .glyphicon-plane { &:before { content: "\e108"; } }
144
+ .glyphicon-calendar { &:before { content: "\e109"; } }
145
+ .glyphicon-random { &:before { content: "\e110"; } }
146
+ .glyphicon-comment { &:before { content: "\e111"; } }
147
+ .glyphicon-magnet { &:before { content: "\e112"; } }
148
+ .glyphicon-chevron-up { &:before { content: "\e113"; } }
149
+ .glyphicon-chevron-down { &:before { content: "\e114"; } }
150
+ .glyphicon-retweet { &:before { content: "\e115"; } }
151
+ .glyphicon-shopping-cart { &:before { content: "\e116"; } }
152
+ .glyphicon-folder-close { &:before { content: "\e117"; } }
153
+ .glyphicon-folder-open { &:before { content: "\e118"; } }
154
+ .glyphicon-resize-vertical { &:before { content: "\e119"; } }
155
+ .glyphicon-resize-horizontal { &:before { content: "\e120"; } }
156
+ .glyphicon-hdd { &:before { content: "\e121"; } }
157
+ .glyphicon-bullhorn { &:before { content: "\e122"; } }
158
+ .glyphicon-bell { &:before { content: "\e123"; } }
159
+ .glyphicon-certificate { &:before { content: "\e124"; } }
160
+ .glyphicon-thumbs-up { &:before { content: "\e125"; } }
161
+ .glyphicon-thumbs-down { &:before { content: "\e126"; } }
162
+ .glyphicon-hand-right { &:before { content: "\e127"; } }
163
+ .glyphicon-hand-left { &:before { content: "\e128"; } }
164
+ .glyphicon-hand-up { &:before { content: "\e129"; } }
165
+ .glyphicon-hand-down { &:before { content: "\e130"; } }
166
+ .glyphicon-circle-arrow-right { &:before { content: "\e131"; } }
167
+ .glyphicon-circle-arrow-left { &:before { content: "\e132"; } }
168
+ .glyphicon-circle-arrow-up { &:before { content: "\e133"; } }
169
+ .glyphicon-circle-arrow-down { &:before { content: "\e134"; } }
170
+ .glyphicon-globe { &:before { content: "\e135"; } }
171
+ .glyphicon-wrench { &:before { content: "\e136"; } }
172
+ .glyphicon-tasks { &:before { content: "\e137"; } }
173
+ .glyphicon-filter { &:before { content: "\e138"; } }
174
+ .glyphicon-briefcase { &:before { content: "\e139"; } }
175
+ .glyphicon-fullscreen { &:before { content: "\e140"; } }
176
+ .glyphicon-dashboard { &:before { content: "\e141"; } }
177
+ .glyphicon-paperclip { &:before { content: "\e142"; } }
178
+ .glyphicon-heart-empty { &:before { content: "\e143"; } }
179
+ .glyphicon-link { &:before { content: "\e144"; } }
180
+ .glyphicon-phone { &:before { content: "\e145"; } }
181
+ .glyphicon-pushpin { &:before { content: "\e146"; } }
182
+ .glyphicon-usd { &:before { content: "\e148"; } }
183
+ .glyphicon-gbp { &:before { content: "\e149"; } }
184
+ .glyphicon-sort { &:before { content: "\e150"; } }
185
+ .glyphicon-sort-by-alphabet { &:before { content: "\e151"; } }
186
+ .glyphicon-sort-by-alphabet-alt { &:before { content: "\e152"; } }
187
+ .glyphicon-sort-by-order { &:before { content: "\e153"; } }
188
+ .glyphicon-sort-by-order-alt { &:before { content: "\e154"; } }
189
+ .glyphicon-sort-by-attributes { &:before { content: "\e155"; } }
190
+ .glyphicon-sort-by-attributes-alt { &:before { content: "\e156"; } }
191
+ .glyphicon-unchecked { &:before { content: "\e157"; } }
192
+ .glyphicon-expand { &:before { content: "\e158"; } }
193
+ .glyphicon-collapse-down { &:before { content: "\e159"; } }
194
+ .glyphicon-collapse-up { &:before { content: "\e160"; } }
195
+ .glyphicon-log-in { &:before { content: "\e161"; } }
196
+ .glyphicon-flash { &:before { content: "\e162"; } }
197
+ .glyphicon-log-out { &:before { content: "\e163"; } }
198
+ .glyphicon-new-window { &:before { content: "\e164"; } }
199
+ .glyphicon-record { &:before { content: "\e165"; } }
200
+ .glyphicon-save { &:before { content: "\e166"; } }
201
+ .glyphicon-open { &:before { content: "\e167"; } }
202
+ .glyphicon-saved { &:before { content: "\e168"; } }
203
+ .glyphicon-import { &:before { content: "\e169"; } }
204
+ .glyphicon-export { &:before { content: "\e170"; } }
205
+ .glyphicon-send { &:before { content: "\e171"; } }
206
+ .glyphicon-floppy-disk { &:before { content: "\e172"; } }
207
+ .glyphicon-floppy-saved { &:before { content: "\e173"; } }
208
+ .glyphicon-floppy-remove { &:before { content: "\e174"; } }
209
+ .glyphicon-floppy-save { &:before { content: "\e175"; } }
210
+ .glyphicon-floppy-open { &:before { content: "\e176"; } }
211
+ .glyphicon-credit-card { &:before { content: "\e177"; } }
212
+ .glyphicon-transfer { &:before { content: "\e178"; } }
213
+ .glyphicon-cutlery { &:before { content: "\e179"; } }
214
+ .glyphicon-header { &:before { content: "\e180"; } }
215
+ .glyphicon-compressed { &:before { content: "\e181"; } }
216
+ .glyphicon-earphone { &:before { content: "\e182"; } }
217
+ .glyphicon-phone-alt { &:before { content: "\e183"; } }
218
+ .glyphicon-tower { &:before { content: "\e184"; } }
219
+ .glyphicon-stats { &:before { content: "\e185"; } }
220
+ .glyphicon-sd-video { &:before { content: "\e186"; } }
221
+ .glyphicon-hd-video { &:before { content: "\e187"; } }
222
+ .glyphicon-subtitles { &:before { content: "\e188"; } }
223
+ .glyphicon-sound-stereo { &:before { content: "\e189"; } }
224
+ .glyphicon-sound-dolby { &:before { content: "\e190"; } }
225
+ .glyphicon-sound-5-1 { &:before { content: "\e191"; } }
226
+ .glyphicon-sound-6-1 { &:before { content: "\e192"; } }
227
+ .glyphicon-sound-7-1 { &:before { content: "\e193"; } }
228
+ .glyphicon-copyright-mark { &:before { content: "\e194"; } }
229
+ .glyphicon-registration-mark { &:before { content: "\e195"; } }
230
+ .glyphicon-cloud-download { &:before { content: "\e197"; } }
231
+ .glyphicon-cloud-upload { &:before { content: "\e198"; } }
232
+ .glyphicon-tree-conifer { &:before { content: "\e199"; } }
233
+ .glyphicon-tree-deciduous { &:before { content: "\e200"; } }
@@ -0,0 +1,84 @@
1
+ //
2
+ // Grid system
3
+ // --------------------------------------------------
4
+
5
+
6
+ // Container widths
7
+ //
8
+ // Set the container width, and override it for fixed navbars in media queries.
9
+
10
+ .container {
11
+ .container-fixed();
12
+
13
+ @media (min-width: @screen-sm-min) {
14
+ width: @container-sm;
15
+ }
16
+ @media (min-width: @screen-md-min) {
17
+ width: @container-md;
18
+ }
19
+ @media (min-width: @screen-lg-min) {
20
+ width: @container-lg;
21
+ }
22
+ }
23
+
24
+
25
+ // Fluid container
26
+ //
27
+ // Utilizes the mixin meant for fixed width containers, but without any defined
28
+ // width for fluid, full width layouts.
29
+
30
+ .container-fluid {
31
+ .container-fixed();
32
+ }
33
+
34
+
35
+ // Row
36
+ //
37
+ // Rows contain and clear the floats of your columns.
38
+
39
+ .row {
40
+ .make-row();
41
+ }
42
+
43
+
44
+ // Columns
45
+ //
46
+ // Common styles for small and large grid columns
47
+
48
+ .make-grid-columns();
49
+
50
+
51
+ // Extra small grid
52
+ //
53
+ // Columns, offsets, pushes, and pulls for extra small devices like
54
+ // smartphones.
55
+
56
+ .make-grid(xs);
57
+
58
+
59
+ // Small grid
60
+ //
61
+ // Columns, offsets, pushes, and pulls for the small device range, from phones
62
+ // to tablets.
63
+
64
+ @media (min-width: @screen-sm-min) {
65
+ .make-grid(sm);
66
+ }
67
+
68
+
69
+ // Medium grid
70
+ //
71
+ // Columns, offsets, pushes, and pulls for the desktop device range.
72
+
73
+ @media (min-width: @screen-md-min) {
74
+ .make-grid(md);
75
+ }
76
+
77
+
78
+ // Large grid
79
+ //
80
+ // Columns, offsets, pushes, and pulls for the large desktop device range.
81
+
82
+ @media (min-width: @screen-lg-min) {
83
+ .make-grid(lg);
84
+ }
@@ -0,0 +1,162 @@
1
+ //
2
+ // Input groups
3
+ // --------------------------------------------------
4
+
5
+ // Base styles
6
+ // -------------------------
7
+ .input-group {
8
+ position: relative; // For dropdowns
9
+ display: table;
10
+ border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table
11
+
12
+ // Undo padding and float of grid classes
13
+ &[class*="col-"] {
14
+ float: none;
15
+ padding-left: 0;
16
+ padding-right: 0;
17
+ }
18
+
19
+ .form-control {
20
+ // Ensure that the input is always above the *appended* addon button for
21
+ // proper border colors.
22
+ position: relative;
23
+ z-index: 2;
24
+
25
+ // IE9 fubars the placeholder attribute in text inputs and the arrows on
26
+ // select elements in input groups. To fix it, we float the input. Details:
27
+ // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855
28
+ float: left;
29
+
30
+ width: 100%;
31
+ margin-bottom: 0;
32
+ }
33
+ }
34
+
35
+ // Sizing options
36
+ //
37
+ // Remix the default form control sizing classes into new ones for easier
38
+ // manipulation.
39
+
40
+ .input-group-lg > .form-control,
41
+ .input-group-lg > .input-group-addon,
42
+ .input-group-lg > .input-group-btn > .btn { .input-lg(); }
43
+ .input-group-sm > .form-control,
44
+ .input-group-sm > .input-group-addon,
45
+ .input-group-sm > .input-group-btn > .btn { .input-sm(); }
46
+
47
+
48
+ // Display as table-cell
49
+ // -------------------------
50
+ .input-group-addon,
51
+ .input-group-btn,
52
+ .input-group .form-control {
53
+ display: table-cell;
54
+
55
+ &:not(:first-child):not(:last-child) {
56
+ border-radius: 0;
57
+ }
58
+ }
59
+ // Addon and addon wrapper for buttons
60
+ .input-group-addon,
61
+ .input-group-btn {
62
+ width: 1%;
63
+ white-space: nowrap;
64
+ vertical-align: middle; // Match the inputs
65
+ }
66
+
67
+ // Text input groups
68
+ // -------------------------
69
+ .input-group-addon {
70
+ padding: @padding-base-vertical @padding-base-horizontal;
71
+ font-size: @font-size-base;
72
+ font-weight: normal;
73
+ line-height: 1;
74
+ color: @input-color;
75
+ text-align: center;
76
+ background-color: @input-group-addon-bg;
77
+ border: 1px solid @input-group-addon-border-color;
78
+ border-radius: @border-radius-base;
79
+
80
+ // Sizing
81
+ &.input-sm {
82
+ padding: @padding-small-vertical @padding-small-horizontal;
83
+ font-size: @font-size-small;
84
+ border-radius: @border-radius-small;
85
+ }
86
+ &.input-lg {
87
+ padding: @padding-large-vertical @padding-large-horizontal;
88
+ font-size: @font-size-large;
89
+ border-radius: @border-radius-large;
90
+ }
91
+
92
+ // Nuke default margins from checkboxes and radios to vertically center within.
93
+ input[type="radio"],
94
+ input[type="checkbox"] {
95
+ margin-top: 0;
96
+ }
97
+ }
98
+
99
+ // Reset rounded corners
100
+ .input-group .form-control:first-child,
101
+ .input-group-addon:first-child,
102
+ .input-group-btn:first-child > .btn,
103
+ .input-group-btn:first-child > .btn-group > .btn,
104
+ .input-group-btn:first-child > .dropdown-toggle,
105
+ .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
106
+ .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
107
+ .border-right-radius(0);
108
+ }
109
+ .input-group-addon:first-child {
110
+ border-right: 0;
111
+ }
112
+ .input-group .form-control:last-child,
113
+ .input-group-addon:last-child,
114
+ .input-group-btn:last-child > .btn,
115
+ .input-group-btn:last-child > .btn-group > .btn,
116
+ .input-group-btn:last-child > .dropdown-toggle,
117
+ .input-group-btn:first-child > .btn:not(:first-child),
118
+ .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
119
+ .border-left-radius(0);
120
+ }
121
+ .input-group-addon:last-child {
122
+ border-left: 0;
123
+ }
124
+
125
+ // Button input groups
126
+ // -------------------------
127
+ .input-group-btn {
128
+ position: relative;
129
+ // Jankily prevent input button groups from wrapping with `white-space` and
130
+ // `font-size` in combination with `inline-block` on buttons.
131
+ font-size: 0;
132
+ white-space: nowrap;
133
+
134
+ // Negative margin for spacing, position for bringing hovered/focused/actived
135
+ // element above the siblings.
136
+ > .btn {
137
+ position: relative;
138
+ + .btn {
139
+ margin-left: -1px;
140
+ }
141
+ // Bring the "active" button to the front
142
+ &:hover,
143
+ &:focus,
144
+ &:active {
145
+ z-index: 2;
146
+ }
147
+ }
148
+
149
+ // Negative margin to only have a 1px border between the two
150
+ &:first-child {
151
+ > .btn,
152
+ > .btn-group {
153
+ margin-right: -1px;
154
+ }
155
+ }
156
+ &:last-child {
157
+ > .btn,
158
+ > .btn-group {
159
+ margin-left: -1px;
160
+ }
161
+ }
162
+ }