-
Notifications
You must be signed in to change notification settings - Fork 0
/
tables.html
248 lines (248 loc) · 8.17 KB
/
tables.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
<!doctype html>
<html class='styleguide-root'>
<head>
<meta charset='utf-8'>
<title>Tables — Styleguides
</title>
<meta name='generator' content='Styledown2 2.0.0-pre11'><meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' href='styledown/styleguide.css' /> </head>
<body>
<div class='styleguide-layout'>
<div class='styleguide-sidebar'>
<input type='checkbox' id='styleguide-sidebar-toggle' data-js-sidebar-toggle />
<label class='styleguide-sidebar-button' for='styleguide-sidebar-toggle'></label>
<label class='styleguide-sidebar-screen' for='styleguide-sidebar-toggle'></label>
<div class='styleguide-sidebar-contents'>
<div class='styleguide-search-bar'>Search...</div>
<ul class='styleguide-menu'>
<li class='styleguide-menu-item -level-1 '>
<a href='index.html' class='link title '>
Bootstrap styleguide
</a></li><li class='styleguide-menu-item -level-1 -parent'>
<span class='title'>Layout</span><ul class='submenu'>
<li class='styleguide-menu-item -level-2 '>
<a href='grid.html' class='link title '>
Grid
</a></li></ul></li><li class='styleguide-menu-item -level-1 -parent'>
<span class='title'>Components</span><ul class='submenu'>
<li class='styleguide-menu-item -level-2 '>
<a href='buttons.html' class='link title '>
Buttons
</a></li><li class='styleguide-menu-item -level-2 '>
<a href='components.html' class='link title '>
Components
</a></li><li class='styleguide-menu-item -level-2 '>
<a href='forms.html' class='link title '>
Forms
</a></li><li class='styleguide-menu-item -level-2 '>
<a href='tables.html' class='link title '>
Tables
</a></li></ul></li><li class='styleguide-menu-item -level-1 -parent'>
<span class='title'>Scenarios</span><ul class='submenu'>
<li class='styleguide-menu-item -level-2 '>
<a href='scenarios/examples.html' class='link title '>
Examples
</a></li></ul></li></ul> </div>
</div><div class='styleguide-body markdown-body'>
<section class='styleguide-section -h1'>
<h1 id='tables'>Tables</h1>
</section><section class='styleguide-section -h3 -literate-style'>
<h3 id='table'>table</h3>
<div class='styleguide-text'><h4 id="code-table-table-code"><code>table.table</code></h4>
<p>A basic table.</p></div><div class='styleguide-example '>
<div class='styleguide-example-figure ' data-js-example-parent>
<div class='styleguide-example-toolbar'>
<div class='button-group'>
<button data-js-example-class='-sm'>S</button>
<button data-js-example-class='-md'>M</button>
<button data-js-example-class='-lg'>L</button>
<button data-js-example-class='-xl'>XL</button>
</div>
<div class='button-group'>
<button data-js-view-source>View source</button>
</div>
</div> <div class='content'>
<iframe class='styleguide-iframe' scrolling='no' src='examples/tables/table-2.html'></iframe>
</div>
</div>
<div class='styleguide-example-source'>
<pre class=' lang-jade'><code>.panel.panel-default
table.table
thead
tr
th #
th First name
th Last name
tbody
tr
th 1
td Louie
td Armstrong
tr
th 2
td Frank
td Sinatra
tr
th 3
td Ella
td Fitzgerald</code></pre>
</div>
</div><div class='styleguide-text'><h4 id="code-amp-table-striped-code"><code>&.table-striped</code></h4>
<p>Adds stripes to rows in <code><tbody></code>.</p></div><div class='styleguide-example '>
<div class='styleguide-example-figure ' data-js-example-parent>
<div class='styleguide-example-toolbar'>
<div class='button-group'>
<button data-js-example-class='-sm'>S</button>
<button data-js-example-class='-md'>M</button>
<button data-js-example-class='-lg'>L</button>
<button data-js-example-class='-xl'>XL</button>
</div>
<div class='button-group'>
<button data-js-view-source>View source</button>
</div>
</div> <div class='content'>
<iframe class='styleguide-iframe' scrolling='no' src='examples/tables/table-4.html'></iframe>
</div>
</div>
<div class='styleguide-example-source'>
<pre class=' lang-jade'><code>.panel.panel-default
table.table.table-striped
thead
tr
th #
th First name
th Last name
tbody
tr
th 1
td Louie
td Armstrong
tr
th 2
td Frank
td Sinatra
tr
th 3
td Ella
td Fitzgerald</code></pre>
</div>
</div><div class='styleguide-text'><h4 id="code-amp-table-bordered-code"><code>&.table-bordered</code></h4>
<p>Adds borders around cells.</p></div><div class='styleguide-example '>
<div class='styleguide-example-figure ' data-js-example-parent>
<div class='styleguide-example-toolbar'>
<div class='button-group'>
<button data-js-example-class='-sm'>S</button>
<button data-js-example-class='-md'>M</button>
<button data-js-example-class='-lg'>L</button>
<button data-js-example-class='-xl'>XL</button>
</div>
<div class='button-group'>
<button data-js-view-source>View source</button>
</div>
</div> <div class='content'>
<iframe class='styleguide-iframe' scrolling='no' src='examples/tables/table-6.html'></iframe>
</div>
</div>
<div class='styleguide-example-source'>
<pre class=' lang-jade'><code>.panel.panel-default
table.table.table-bordered
thead
tr
th #
th First name
th Last name
tbody
tr
th 1
td Louie
td Armstrong
tr
th 2
td Frank
td Sinatra
tr
th 3
td Ella
td Fitzgerald</code></pre>
</div>
</div><div class='styleguide-text'><h4 id="code-amp-table-hover-code"><code>&.table-hover</code></h4>
<p>Adds hover effects to rows.</p></div><div class='styleguide-example '>
<div class='styleguide-example-figure ' data-js-example-parent>
<div class='styleguide-example-toolbar'>
<div class='button-group'>
<button data-js-example-class='-sm'>S</button>
<button data-js-example-class='-md'>M</button>
<button data-js-example-class='-lg'>L</button>
<button data-js-example-class='-xl'>XL</button>
</div>
<div class='button-group'>
<button data-js-view-source>View source</button>
</div>
</div> <div class='content'>
<iframe class='styleguide-iframe' scrolling='no' src='examples/tables/table-8.html'></iframe>
</div>
</div>
<div class='styleguide-example-source'>
<pre class=' lang-jade'><code>.panel.panel-default
table.table.table-hover
thead
tr
th #
th First name
th Last name
tbody
tr
th 1
td Louie
td Armstrong
tr
th 2
td Frank
td Sinatra
tr
th 3
td Ella
td Fitzgerald</code></pre>
</div>
</div><div class='styleguide-text'><h4 id="code-amp-table-condensed-code"><code>&.table-condensed</code></h4>
<p>Makes cells less tall.</p></div><div class='styleguide-example '>
<div class='styleguide-example-figure ' data-js-example-parent>
<div class='styleguide-example-toolbar'>
<div class='button-group'>
<button data-js-example-class='-sm'>S</button>
<button data-js-example-class='-md'>M</button>
<button data-js-example-class='-lg'>L</button>
<button data-js-example-class='-xl'>XL</button>
</div>
<div class='button-group'>
<button data-js-view-source>View source</button>
</div>
</div> <div class='content'>
<iframe class='styleguide-iframe' scrolling='no' src='examples/tables/table-10.html'></iframe>
</div>
</div>
<div class='styleguide-example-source'>
<pre class=' lang-jade'><code>.panel.panel-default
table.table.table-condensed
thead
tr
th #
th First name
th Last name
tbody
tr
th 1
td Louie
td Armstrong
tr
th 2
td Frank
td Sinatra
tr
th 3
td Ella
td Fitzgerald</code></pre>
</div>
</div></section></div> </div>
<script src='styledown/styleguide.js'></script> </body>
</html>