markdown-ui 0.1.11 → 0.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Changelog +7 -0
- data/TODO.md +17 -3
- data/components/elements/markdown-ui-content/lib/content/item_block.rb +19 -0
- data/exe/markdown-ui +1 -2
- data/lib/markdown-ui.rb +2 -0
- data/lib/markdown-ui/version.rb +1 -1
- data/website/about.html +1 -2
- data/website/about.md +1 -6
- data/website/docs/button.html +1 -17
- data/website/docs/button.md +0 -208
- data/website/docs/container.html +269 -38
- data/website/docs/container.md +188 -102
- data/website/docs/toc.html +4 -2
- data/website/docs/toc.md +2 -10
- data/website/index.html +1 -3
- data/website/index.md +1 -24
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2e8c98607d45d75da7ea4a17ede2d1a154680c1b
|
4
|
+
data.tar.gz: 93df15e43b1bff1140689acb832cc9d7e68f376e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6399c625a4bbff33f15bb9402cb9839193761f87cefb98a25528f8a4d825bd9fef0e7dc1714a32bee5e32b9df52391f6004164c363267d4e3076ec115ba20da0
|
7
|
+
data.tar.gz: b295997adb8731b9811707fbf075305b34f9c3b3edb5f017b51cbf5e69daf609f896bee71099456c6955f88aa18f67565cda0be889ac7af5d1f14c3bc45a6909
|
data/Changelog
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
0.1.12 - 08-25-15
|
2
|
+
* Removed Nokogiri post-processing using CLI markdown-ui
|
3
|
+
* Fixed Container Examples to occupy and display full container in view
|
4
|
+
* Added ItemBlock class to handle Item Block tags
|
5
|
+
* Cleanup documentations by removing excessive separators
|
6
|
+
* Added Container Examples
|
7
|
+
|
1
8
|
0.1.11 - 08-24-15
|
2
9
|
* Upgraded RedCarpet to 3.3
|
3
10
|
* Upgraded Semantic-UI to 2.0.8
|
data/TODO.md
CHANGED
@@ -53,6 +53,20 @@
|
|
53
53
|
√ Fluid
|
54
54
|
|
55
55
|
* Examples
|
56
|
-
Container Using Grids
|
57
|
-
Centered Menu
|
58
|
-
Container Segment
|
56
|
+
√ Container Using Grids
|
57
|
+
√ Centered Menu
|
58
|
+
√ Container Segment
|
59
|
+
|
60
|
+
#Divider
|
61
|
+
|
62
|
+
* Types
|
63
|
+
Divider
|
64
|
+
Vertical Divider
|
65
|
+
Horizontal Divider
|
66
|
+
|
67
|
+
* Variations
|
68
|
+
Inverted
|
69
|
+
Fitted
|
70
|
+
Hidden
|
71
|
+
Section
|
72
|
+
Clearing
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# coding: UTF-8
|
2
|
+
|
3
|
+
module MarkdownUI
|
4
|
+
module Content
|
5
|
+
class ItemBlock
|
6
|
+
def initialize(element, content)
|
7
|
+
@element = element
|
8
|
+
@content = content
|
9
|
+
end
|
10
|
+
|
11
|
+
def render
|
12
|
+
klass = "ui #{@element} item"
|
13
|
+
content = @content.strip
|
14
|
+
|
15
|
+
MarkdownUI::StandardTag.new(content, klass).render
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
data/exe/markdown-ui
CHANGED
@@ -2,7 +2,6 @@
|
|
2
2
|
|
3
3
|
require "bundler/setup"
|
4
4
|
require "markdown-ui"
|
5
|
-
require "nokogiri"
|
6
5
|
|
7
6
|
parser = Redcarpet::Markdown.new(MarkdownUI::Renderer, quote: true, tables: true, xhtml: true)
|
8
7
|
f = File.open(ARGV.first, 'r')
|
@@ -28,7 +27,7 @@ puts <<-EOS
|
|
28
27
|
</head>
|
29
28
|
|
30
29
|
<body>
|
31
|
-
|
30
|
+
#{@content}
|
32
31
|
</body>
|
33
32
|
</html>
|
34
33
|
EOS
|
data/lib/markdown-ui.rb
CHANGED
data/lib/markdown-ui/version.rb
CHANGED
data/website/about.html
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
</head>
|
17
17
|
|
18
18
|
<body>
|
19
|
-
|
19
|
+
<div class="ui container">
|
20
20
|
<div class="ui inverted segment">
|
21
21
|
<div class="ui inverted menu">
|
22
22
|
<a class="ui basic item" href="http://jjuliano.github.io/markdown-ui">Markdown UI</a>
|
@@ -61,7 +61,6 @@
|
|
61
61
|
</ul>
|
62
62
|
</div>
|
63
63
|
</div>
|
64
|
-
<!-- -->
|
65
64
|
</div>
|
66
65
|
|
67
66
|
</body>
|
data/website/about.md
CHANGED
@@ -9,7 +9,6 @@
|
|
9
9
|
> > > > [Install](index.html#install)
|
10
10
|
>
|
11
11
|
> <!-- -->
|
12
|
-
>
|
13
12
|
> > Text Container:
|
14
13
|
> > > Segment:
|
15
14
|
> > > ## About
|
@@ -24,8 +23,4 @@
|
|
24
23
|
> > > * "rapid prototyping"
|
25
24
|
> > > * "focus on important stuff"
|
26
25
|
> > > * "UI/UX brain-storming sessions via email, whiteboard, text editor, paper, etc."
|
27
|
-
> > > * "shell-scripting your UI's"
|
28
|
-
>
|
29
|
-
> <!-- -->
|
30
|
-
>
|
31
|
-
|
26
|
+
> > > * "shell-scripting your UI's"
|
data/website/docs/button.html
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
</head>
|
17
17
|
|
18
18
|
<body>
|
19
|
-
|
19
|
+
<div class="ui container">
|
20
20
|
<div class="ui inverted segment">
|
21
21
|
<div class="ui inverted menu">
|
22
22
|
<a class="ui basic item" href="http://jjuliano.github.io/markdown-ui">Markdown UI</a>
|
@@ -58,7 +58,6 @@
|
|
58
58
|
<code>__Button|Follow__</code>
|
59
59
|
</div>
|
60
60
|
</div>
|
61
|
-
<!-- -->
|
62
61
|
</div>
|
63
62
|
<!-- -->
|
64
63
|
<div class="ui divided segment grid">
|
@@ -77,7 +76,6 @@
|
|
77
76
|
<code>__<Optional-Class> Button|Follow|<Optional-ID>__</code>
|
78
77
|
</div>
|
79
78
|
</div>
|
80
|
-
<!-- -->
|
81
79
|
</div>
|
82
80
|
<!-- -->
|
83
81
|
<div class="ui divided segment grid">
|
@@ -96,7 +94,6 @@
|
|
96
94
|
<code>__Focusable Button|Follow|<Optional-ID>__</code>
|
97
95
|
</div>
|
98
96
|
</div>
|
99
|
-
<!-- -->
|
100
97
|
</div>
|
101
98
|
<!-- -->
|
102
99
|
<div class="ui basic segment">
|
@@ -126,7 +123,6 @@
|
|
126
123
|
<code>__Secondary Button|Save__ __Button|Discard__</code>
|
127
124
|
</div>
|
128
125
|
</div>
|
129
|
-
<!-- -->
|
130
126
|
</div>
|
131
127
|
<!-- -->
|
132
128
|
<div class="ui basic segment">
|
@@ -155,7 +151,6 @@
|
|
155
151
|
<code>__Animated Button|Next;Icon:Right Arrow__</code>
|
156
152
|
</div>
|
157
153
|
</div>
|
158
|
-
<!-- -->
|
159
154
|
</div>
|
160
155
|
<!-- -->
|
161
156
|
<div class="ui divided segment grid">
|
@@ -179,7 +174,6 @@
|
|
179
174
|
<code>__Vertical Animated Button|Icon:Shop;Shop__</code>
|
180
175
|
</div>
|
181
176
|
</div>
|
182
|
-
<!-- -->
|
183
177
|
</div>
|
184
178
|
<!-- -->
|
185
179
|
<div class="ui divided segment grid">
|
@@ -201,7 +195,6 @@
|
|
201
195
|
<code>__Fade Animated Button|Sign-up for a Pro account;$12.99 a month__</code>
|
202
196
|
</div>
|
203
197
|
</div>
|
204
|
-
<!-- -->
|
205
198
|
</div>
|
206
199
|
<!-- -->
|
207
200
|
<div class="ui basic segment">
|
@@ -227,7 +220,6 @@
|
|
227
220
|
<code>__Icon Button|Icon:Cloud__</code>
|
228
221
|
</div>
|
229
222
|
</div>
|
230
|
-
<!-- -->
|
231
223
|
</div>
|
232
224
|
<!-- -->
|
233
225
|
<div class="ui basic segment">
|
@@ -251,7 +243,6 @@
|
|
251
243
|
<code>__Labeled Icon Button|Icon:Pause,Pause__</code>
|
252
244
|
</div>
|
253
245
|
</div>
|
254
|
-
<!-- -->
|
255
246
|
</div>
|
256
247
|
<!-- -->
|
257
248
|
<div class="ui basic segment">
|
@@ -275,7 +266,6 @@
|
|
275
266
|
<code>__Basic Button|Icon:User,Add Friend__</code>
|
276
267
|
</div>
|
277
268
|
</div>
|
278
|
-
<!-- -->
|
279
269
|
</div>
|
280
270
|
<!-- -->
|
281
271
|
<div class="ui divided segment grid">
|
@@ -321,7 +311,6 @@
|
|
321
311
|
<code>__Basic Teal Button|Teal__</code>
|
322
312
|
</div>
|
323
313
|
</div>
|
324
|
-
<!-- -->
|
325
314
|
</div>
|
326
315
|
<!-- -->
|
327
316
|
<div class="ui basic segment">
|
@@ -376,7 +365,6 @@
|
|
376
365
|
<code>> __Inverted Teal Button|Teal__</code>
|
377
366
|
</div>
|
378
367
|
</div>
|
379
|
-
<!-- -->
|
380
368
|
</div>
|
381
369
|
<!-- -->
|
382
370
|
<div class="ui basic segment">
|
@@ -414,7 +402,6 @@
|
|
414
402
|
<code>> __Standard Button|Three__</code>
|
415
403
|
</div>
|
416
404
|
</div>
|
417
|
-
<!-- -->
|
418
405
|
</div>
|
419
406
|
<!-- -->
|
420
407
|
<div class="ui basic segment">
|
@@ -483,7 +470,6 @@
|
|
483
470
|
<code>> __Button|Icon:Text Width__</code>
|
484
471
|
</div>
|
485
472
|
</div>
|
486
|
-
<!-- -->
|
487
473
|
</div>
|
488
474
|
<!-- -->
|
489
475
|
<div class="ui basic segment">
|
@@ -543,7 +529,6 @@
|
|
543
529
|
<code>> __Positive Button|deux|<Optional-ID>__</code>
|
544
530
|
</div>
|
545
531
|
</div>
|
546
|
-
<!-- -->
|
547
532
|
</div>
|
548
533
|
<!-- -->
|
549
534
|
<div class="ui basic segment">
|
@@ -996,7 +981,6 @@
|
|
996
981
|
<br />
|
997
982
|
</div>
|
998
983
|
</div>
|
999
|
-
<!-- -->
|
1000
984
|
</div>
|
1001
985
|
<!-- -->
|
1002
986
|
<div class="ui basic segment">
|
data/website/docs/button.md
CHANGED
@@ -9,105 +9,81 @@
|
|
9
9
|
> > > > [Install](../index.html#install)
|
10
10
|
>
|
11
11
|
> <!-- -->
|
12
|
-
>
|
13
12
|
> > Basic Segment:
|
14
13
|
> > # Button:Center Aligned:button
|
15
14
|
>
|
16
15
|
> <!-- -->
|
17
|
-
>
|
18
16
|
> > Basic Segment:
|
19
17
|
> > ## Types:Dividing Left Aligned:types
|
20
18
|
>
|
21
19
|
> <!-- -->
|
22
|
-
>
|
23
20
|
> > Basic Segment:
|
24
21
|
> > #### Button::simple-button
|
25
22
|
> > "Standard Button"
|
26
23
|
>
|
27
24
|
> <!-- -->
|
28
|
-
>
|
29
25
|
> > Divided Segment Grid:
|
30
26
|
> > > Attached Segment:
|
31
27
|
> > > > Top Attached Label:
|
32
28
|
> > > > Standard Button
|
33
29
|
> >
|
34
30
|
> > <!-- -->
|
35
|
-
> >
|
36
31
|
> > > Center Aligned Six Wide Column:
|
37
32
|
> > > ##### Preview:Center Aligned
|
38
33
|
> > > __Button|Follow__
|
39
34
|
> >
|
40
35
|
> > <!-- -->
|
41
|
-
> >
|
42
36
|
> > > Ten Wide Column:
|
43
37
|
> > > ##### Markdown Syntax
|
44
38
|
> > > > Inverted Very Padded Segment:
|
45
39
|
> > > > ``` __Button|Follow__ ```
|
46
|
-
> >
|
47
|
-
> > <!-- -->
|
48
|
-
> >
|
49
40
|
>
|
50
41
|
> <!-- -->
|
51
|
-
>
|
52
42
|
> > Divided Segment Grid:
|
53
43
|
> > > Attached Segment:
|
54
44
|
> > > > Top Attached Label:
|
55
45
|
> > > > Standard Button with Custom Class And ID
|
56
46
|
> >
|
57
47
|
> > <!-- -->
|
58
|
-
> >
|
59
48
|
> > > Center Aligned Six Wide Column:
|
60
49
|
> > > ##### Preview:Center Aligned
|
61
50
|
> > > __Optional-Class Button|Follow|Optional-ID__
|
62
51
|
> >
|
63
52
|
> > <!-- -->
|
64
|
-
> >
|
65
53
|
> > > Ten Wide Column:
|
66
54
|
> > > ##### Markdown Syntax
|
67
55
|
> > > > Inverted Very Padded Segment:
|
68
56
|
> > > > ```__<Optional-Class> Button|Follow|<Optional-ID>__```
|
69
|
-
> >
|
70
|
-
> > <!-- -->
|
71
|
-
> >
|
72
57
|
>
|
73
58
|
> <!-- -->
|
74
|
-
>
|
75
59
|
> > Divided Segment Grid:
|
76
60
|
> > > Attached Segment:
|
77
61
|
> > > > Top Attached Label:
|
78
62
|
> > > > Focusable Button
|
79
63
|
> >
|
80
64
|
> > <!-- -->
|
81
|
-
> >
|
82
65
|
> > > Center Aligned Six Wide Column:
|
83
66
|
> > > ##### Preview:Center Aligned
|
84
67
|
> > > __Focusable Button|Follow|Optional-ID__
|
85
68
|
> >
|
86
69
|
> > <!-- -->
|
87
|
-
> >
|
88
70
|
> > > Ten Wide Column:
|
89
71
|
> > > ##### Markdown Syntax
|
90
72
|
> > > > Inverted Very Padded Segment:
|
91
73
|
> > > > ``` __Focusable Button|Follow|<Optional-ID>__ ```
|
92
|
-
> >
|
93
|
-
> > <!-- -->
|
94
|
-
> >
|
95
74
|
>
|
96
75
|
> <!-- -->
|
97
|
-
>
|
98
76
|
> > Basic Segment:
|
99
77
|
> > #### Emphasis::emphasis
|
100
78
|
> > "A button can be formatted to show different levels of emphasis"
|
101
79
|
>
|
102
80
|
> <!-- -->
|
103
|
-
>
|
104
81
|
> > Divided Segment Grid:
|
105
82
|
> > > Attached Segment:
|
106
83
|
> > > > Top Attached Label:
|
107
84
|
> > > > Emphasis
|
108
85
|
> >
|
109
86
|
> > <!-- -->
|
110
|
-
> >
|
111
87
|
> > > Center Aligned Six Wide Column:
|
112
88
|
> > > ##### Preview:Center Aligned
|
113
89
|
> > > __Primary Button|Save__ __Button|Discard__
|
@@ -115,187 +91,141 @@
|
|
115
91
|
> > > __Secondary Button|Save__ __Button|Discard__
|
116
92
|
> >
|
117
93
|
> > <!-- -->
|
118
|
-
> >
|
119
94
|
> > > Ten Wide Column:
|
120
95
|
> > > ##### Markdown Syntax
|
121
96
|
> > > > Inverted Very Padded Segment:
|
122
97
|
> > > > ``` __Primary Button|Save__ __Button|Discard__ ``` <br />
|
123
98
|
> > > > ``` __Secondary Button|Save__ __Button|Discard__ ```
|
124
|
-
> >
|
125
|
-
> > <!-- -->
|
126
|
-
> >
|
127
99
|
>
|
128
100
|
> <!-- -->
|
129
|
-
>
|
130
101
|
> > Basic Segment:
|
131
102
|
> > #### Animated::animated
|
132
103
|
> > "A button can animate to show hidden content"
|
133
104
|
>
|
134
105
|
> <!-- -->
|
135
|
-
>
|
136
106
|
> > Divided Segment Grid:
|
137
107
|
> > > Attached Segment:
|
138
108
|
> > > > Top Attached Label:
|
139
109
|
> > > > Animated
|
140
110
|
> >
|
141
111
|
> > <!-- -->
|
142
|
-
> >
|
143
112
|
> > > Center Aligned Six Wide Column:
|
144
113
|
> > > ##### Preview:Center Aligned
|
145
114
|
> > > __Animated Button|Next;Icon:Right Arrow__
|
146
115
|
> >
|
147
116
|
> > <!-- -->
|
148
|
-
> >
|
149
117
|
> > > Ten Wide Column:
|
150
118
|
> > > ##### Markdown Syntax
|
151
119
|
> > > > Inverted Very Padded Segment:
|
152
120
|
> > > > ```__Animated Button|Next;Icon:Right Arrow__```
|
153
|
-
> >
|
154
|
-
> > <!-- -->
|
155
|
-
> >
|
156
121
|
>
|
157
122
|
> <!-- -->
|
158
|
-
>
|
159
123
|
> > Divided Segment Grid:
|
160
124
|
> > > Attached Segment:
|
161
125
|
> > > > Top Attached Label:
|
162
126
|
> > > > Vertical Animated
|
163
127
|
> >
|
164
128
|
> > <!-- -->
|
165
|
-
> >
|
166
129
|
> > > Center Aligned Six Wide Column:
|
167
130
|
> > > ##### Preview:Center Aligned
|
168
131
|
> > > __Vertical Animated Button|Icon:Shop;Shop__
|
169
132
|
> >
|
170
133
|
> > <!-- -->
|
171
|
-
> >
|
172
134
|
> > > Ten Wide Column:
|
173
135
|
> > > ##### Markdown Syntax
|
174
136
|
> > > > Inverted Very Padded Segment:
|
175
137
|
> > > > ```__Vertical Animated Button|Icon:Shop;Shop__```
|
176
|
-
> >
|
177
|
-
> > <!-- -->
|
178
|
-
> >
|
179
138
|
>
|
180
139
|
> <!-- -->
|
181
|
-
>
|
182
140
|
> > Divided Segment Grid:
|
183
141
|
> > > Attached Segment:
|
184
142
|
> > > > Top Attached Label:
|
185
143
|
> > > > Fade Animated
|
186
144
|
> >
|
187
145
|
> > <!-- -->
|
188
|
-
> >
|
189
146
|
> > > Center Aligned Six Wide Column:
|
190
147
|
> > > ##### Preview:Center Aligned
|
191
148
|
> > > __Fade Animated Button|Sign-up for a Pro account;$12.99 a month__
|
192
149
|
> >
|
193
150
|
> > <!-- -->
|
194
|
-
> >
|
195
151
|
> > > Ten Wide Column:
|
196
152
|
> > > ##### Markdown Syntax
|
197
153
|
> > > > Inverted Very Padded Segment:
|
198
154
|
> > > > ```__Fade Animated Button|Sign-up for a Pro account;$12.99 a month__```
|
199
|
-
> >
|
200
|
-
> > <!-- -->
|
201
|
-
> >
|
202
155
|
>
|
203
156
|
> <!-- -->
|
204
|
-
>
|
205
157
|
> > Basic Segment:
|
206
158
|
> > #### Icon::icon
|
207
159
|
> > "A button can have only an icon"
|
208
160
|
>
|
209
161
|
> <!-- -->
|
210
|
-
>
|
211
162
|
> > Divided Segment Grid:
|
212
163
|
> > > Attached Segment:
|
213
164
|
> > > > Top Attached Label:
|
214
165
|
> > > > Icon Button
|
215
166
|
> >
|
216
167
|
> > <!-- -->
|
217
|
-
> >
|
218
168
|
> > > Center Aligned Six Wide Column:
|
219
169
|
> > > ##### Preview:Center Aligned
|
220
170
|
> > > __Icon Button|Icon:Cloud__
|
221
171
|
> >
|
222
172
|
> > <!-- -->
|
223
|
-
> >
|
224
173
|
> > > Ten Wide Column:
|
225
174
|
> > > ##### Markdown Syntax
|
226
175
|
> > > > Inverted Very Padded Segment:
|
227
176
|
> > > > ``` __Icon Button|Icon:Cloud__ ```
|
228
|
-
> >
|
229
|
-
> > <!-- -->
|
230
|
-
> >
|
231
177
|
>
|
232
178
|
> <!-- -->
|
233
|
-
>
|
234
179
|
> > Basic Segment:
|
235
180
|
> > #### Labeled Icon::labeled-icon
|
236
181
|
> > "A button can have an icon and a label"
|
237
182
|
>
|
238
183
|
> <!-- -->
|
239
|
-
>
|
240
184
|
> > Divided Segment Grid:
|
241
185
|
> > > Attached Segment:
|
242
186
|
> > > > Top Attached Label:
|
243
187
|
> > > > Labeled Icon
|
244
188
|
> >
|
245
189
|
> > <!-- -->
|
246
|
-
> >
|
247
190
|
> > > Center Aligned Six Wide Column:
|
248
191
|
> > > ##### Preview:Center Aligned
|
249
192
|
> > > __Labeled Icon Button|Icon:Pause,Pause__
|
250
193
|
> >
|
251
194
|
> > <!-- -->
|
252
|
-
> >
|
253
195
|
> > > Ten Wide Column:
|
254
196
|
> > > ##### Markdown Syntax
|
255
197
|
> > > > Inverted Very Padded Segment:
|
256
198
|
> > > > ``` __Labeled Icon Button|Icon:Pause,Pause__ ```
|
257
|
-
> >
|
258
|
-
> > <!-- -->
|
259
|
-
> >
|
260
199
|
>
|
261
200
|
> <!-- -->
|
262
|
-
>
|
263
201
|
> > Basic Segment:
|
264
202
|
> > #### Basic Button::basic-button
|
265
203
|
> > "A basic button is less pronounced"
|
266
204
|
>
|
267
205
|
> <!-- -->
|
268
|
-
>
|
269
206
|
> > Divided Segment Grid:
|
270
207
|
> > > Attached Segment:
|
271
208
|
> > > > Top Attached Label:
|
272
209
|
> > > > Basic Button
|
273
210
|
> >
|
274
211
|
> > <!-- -->
|
275
|
-
> >
|
276
212
|
> > > Center Aligned Six Wide Column:
|
277
213
|
> > > ##### Preview:Center Aligned
|
278
214
|
> > > __Basic Button|Icon:User,Add Friend__
|
279
215
|
> >
|
280
216
|
> > <!-- -->
|
281
|
-
> >
|
282
217
|
> > > Ten Wide Column:
|
283
218
|
> > > ##### Markdown Syntax
|
284
219
|
> > > > Inverted Very Padded Segment:
|
285
220
|
> > > > ``` __Basic Button|Icon:User,Add Friend__ ```
|
286
|
-
> >
|
287
|
-
> > <!-- -->
|
288
|
-
> >
|
289
221
|
>
|
290
222
|
> <!-- -->
|
291
|
-
>
|
292
223
|
> > Divided Segment Grid:
|
293
224
|
> > > Attached Segment:
|
294
225
|
> > > > Top Attached Label:
|
295
226
|
> > > > Basic Button
|
296
227
|
> >
|
297
228
|
> > <!-- -->
|
298
|
-
> >
|
299
229
|
> > > Center Aligned Six Wide Column:
|
300
230
|
> > > ##### Preview:Center Aligned
|
301
231
|
> > > __Basic Standard Button|Standard__
|
@@ -310,7 +240,6 @@
|
|
310
240
|
> > > __Basic Teal Button|Teal__
|
311
241
|
> >
|
312
242
|
> > <!-- -->
|
313
|
-
> >
|
314
243
|
> > > Ten Wide Column:
|
315
244
|
> > > ##### Markdown Syntax
|
316
245
|
> > > > Inverted Very Padded Segment:
|
@@ -324,25 +253,19 @@
|
|
324
253
|
> > > > ``` __Basic Pink Button|Pink__``` <br />
|
325
254
|
> > > > ``` __Basic Red Button|Red__``` <br />
|
326
255
|
> > > > ``` __Basic Teal Button|Teal__```
|
327
|
-
> >
|
328
|
-
> > <!-- -->
|
329
|
-
> >
|
330
256
|
>
|
331
257
|
> <!-- -->
|
332
|
-
>
|
333
258
|
> > Basic Segment:
|
334
259
|
> > #### Inverted::inverted
|
335
260
|
> > "A button can be formatted to appear on dark backgrounds"
|
336
261
|
>
|
337
262
|
> <!-- -->
|
338
|
-
>
|
339
263
|
> > Divided Segment Grid:
|
340
264
|
> > > Attached Segment:
|
341
265
|
> > > > Top Attached Label:
|
342
266
|
> > > > Inverted
|
343
267
|
> >
|
344
268
|
> > <!-- -->
|
345
|
-
> >
|
346
269
|
> > > Center Aligned Six Wide Column:
|
347
270
|
> > > ##### Preview:Center Aligned
|
348
271
|
> > > > Inverted Very Padded Segment:
|
@@ -358,7 +281,6 @@
|
|
358
281
|
> > > __Inverted Teal Button|Teal__
|
359
282
|
> >
|
360
283
|
> > <!-- -->
|
361
|
-
> >
|
362
284
|
> > > Ten Wide Column:
|
363
285
|
> > > ##### Markdown Syntax
|
364
286
|
> > > > Inverted Very Padded Segment:
|
@@ -373,30 +295,23 @@
|
|
373
295
|
> > > > ```> __Inverted Pink Button|Pink__``` <br />
|
374
296
|
> > > > ```> __Inverted Red Button|Red__``` <br />
|
375
297
|
> > > > ```> __Inverted Teal Button|Teal__```
|
376
|
-
> >
|
377
|
-
> > <!-- -->
|
378
|
-
> >
|
379
298
|
>
|
380
299
|
> <!-- -->
|
381
|
-
>
|
382
300
|
> > Basic Segment:
|
383
301
|
> > ## Groups:Dividing Left Aligned:groups
|
384
302
|
>
|
385
303
|
> <!-- -->
|
386
|
-
>
|
387
304
|
> > Basic Segment:
|
388
305
|
> > #### Buttons::buttons
|
389
306
|
> > "Buttons can exist together as a group"
|
390
307
|
>
|
391
308
|
> <!-- -->
|
392
|
-
>
|
393
309
|
> > Divided Segment Grid:
|
394
310
|
> > > Attached Segment:
|
395
311
|
> > > > Top Attached Label:
|
396
312
|
> > > > Buttons
|
397
313
|
> >
|
398
314
|
> > <!-- -->
|
399
|
-
> >
|
400
315
|
> > > Center Aligned Six Wide Column:
|
401
316
|
> > > ##### Preview:Center Aligned
|
402
317
|
> > > > Buttons:
|
@@ -405,7 +320,6 @@
|
|
405
320
|
> > > > __Button|Three|Standard__
|
406
321
|
> >
|
407
322
|
> > <!-- -->
|
408
|
-
> >
|
409
323
|
> > > Ten Wide Column:
|
410
324
|
> > > ##### Markdown Syntax
|
411
325
|
> > > > Inverted Very Padded Segment:
|
@@ -413,25 +327,19 @@
|
|
413
327
|
> > > > ```> __Standard Button|One__``` <br />
|
414
328
|
> > > > ```> __Standard Button|Two__``` <br />
|
415
329
|
> > > > ```> __Standard Button|Three__```
|
416
|
-
> >
|
417
|
-
> > <!-- -->
|
418
|
-
> >
|
419
330
|
>
|
420
331
|
> <!-- -->
|
421
|
-
>
|
422
332
|
> > Basic Segment:
|
423
333
|
> > #### Icon Buttons::icon-buttons
|
424
334
|
> > "Buttons can exist together as a group"
|
425
335
|
>
|
426
336
|
> <!-- -->
|
427
|
-
>
|
428
337
|
> > Divided Segment Grid:
|
429
338
|
> > > Attached Segment:
|
430
339
|
> > > > Top Attached Label:
|
431
340
|
> > > > Buttons
|
432
341
|
> >
|
433
342
|
> > <!-- -->
|
434
|
-
> >
|
435
343
|
> > > Center Aligned Six Wide Column:
|
436
344
|
> > > ##### Preview:Center Aligned
|
437
345
|
> > > > Icon Buttons:
|
@@ -441,14 +349,12 @@
|
|
441
349
|
> > > > __Button|Icon: Align Justify__
|
442
350
|
> > >
|
443
351
|
> > > <!-- -->
|
444
|
-
> > >
|
445
352
|
> > > > Icon Buttons:
|
446
353
|
> > > > __Button|Icon: Bold__
|
447
354
|
> > > > __Button|Icon: Underline__
|
448
355
|
> > > > __Button|Icon: Text Width__
|
449
356
|
> >
|
450
357
|
> > <!-- -->
|
451
|
-
> >
|
452
358
|
> > > Ten Wide Column:
|
453
359
|
> > > ##### Markdown Syntax
|
454
360
|
> > > > Inverted Very Padded Segment:
|
@@ -464,30 +370,23 @@
|
|
464
370
|
> > > > ```> __Button|Icon:Bold__``` <br />
|
465
371
|
> > > > ```> __Button|Icon:Underline__``` <br />
|
466
372
|
> > > > ```> __Button|Icon:Text Width__```
|
467
|
-
> >
|
468
|
-
> > <!-- -->
|
469
|
-
> >
|
470
373
|
>
|
471
374
|
> <!-- -->
|
472
|
-
>
|
473
375
|
> > Basic Segment:
|
474
376
|
> > ## Content:Dividing Left Aligned:content
|
475
377
|
>
|
476
378
|
> <!-- -->
|
477
|
-
>
|
478
379
|
> > Basic Segment:
|
479
380
|
> > #### Conditionals::conditionals
|
480
381
|
> > "Button groups can contain conditionals"
|
481
382
|
>
|
482
383
|
> <!-- -->
|
483
|
-
>
|
484
384
|
> > Divided Segment Grid:
|
485
385
|
> > > Attached Segment:
|
486
386
|
> > > > Top Attached Label:
|
487
387
|
> > > > Conditionals
|
488
388
|
> >
|
489
389
|
> > <!-- -->
|
490
|
-
> >
|
491
390
|
> > > Center Aligned Six Wide Column:
|
492
391
|
> > > ##### Preview:Center Aligned
|
493
392
|
> > > > Buttons:
|
@@ -496,7 +395,6 @@
|
|
496
395
|
> > > > __Positive Button|Save__
|
497
396
|
> >
|
498
397
|
> > <!-- -->
|
499
|
-
> >
|
500
398
|
> > > Ten Wide Column:
|
501
399
|
> > > ##### Markdown Syntax
|
502
400
|
> > > > Inverted Very Padded Segment:
|
@@ -506,7 +404,6 @@
|
|
506
404
|
> > > > ```> __Positive Button|Save__```
|
507
405
|
> >
|
508
406
|
> > <!-- -->
|
509
|
-
> >
|
510
407
|
> > > Center Aligned Six Wide Column:
|
511
408
|
> > > ##### Preview:Center Aligned
|
512
409
|
> > > > Buttons:
|
@@ -515,7 +412,6 @@
|
|
515
412
|
> > > > __Positive Button|deux|Optional-ID__
|
516
413
|
> >
|
517
414
|
> > <!-- -->
|
518
|
-
> >
|
519
415
|
> > > Ten Wide Column:
|
520
416
|
> > > ##### Markdown Syntax
|
521
417
|
> > > > Inverted Very Padded Segment:
|
@@ -523,82 +419,67 @@
|
|
523
419
|
> > > > ```> __Button|un__``` <br />
|
524
420
|
> > > > ```> __Div Tag||Or|Data:Text:ou__``` <br />
|
525
421
|
> > > > ```> __Positive Button|deux|<Optional-ID>__```
|
526
|
-
> >
|
527
|
-
> > <!-- -->
|
528
|
-
> >
|
529
422
|
>
|
530
423
|
> <!-- -->
|
531
|
-
>
|
532
424
|
> > Basic Segment:
|
533
425
|
> > ## States:Dividing Left Aligned:states
|
534
426
|
>
|
535
427
|
> <!-- -->
|
536
|
-
>
|
537
428
|
> > Basic Segment:
|
538
429
|
> > #### Active::active
|
539
430
|
> > "A button can show it is currently the active user selection"
|
540
431
|
>
|
541
432
|
> <!-- -->
|
542
|
-
>
|
543
433
|
> > Divided Segment Grid:
|
544
434
|
> > > Attached Segment:
|
545
435
|
> > > > Top Attached Label:
|
546
436
|
> > > > Active State
|
547
437
|
> >
|
548
438
|
> > <!-- -->
|
549
|
-
> >
|
550
439
|
> > > Center Aligned Six Wide Column:
|
551
440
|
> > > ##### Preview:Center Aligned
|
552
441
|
> > > __Active Button|Icon:User, Follow__
|
553
442
|
> >
|
554
443
|
> > <!-- -->
|
555
|
-
> >
|
556
444
|
> > > Ten Wide Column:
|
557
445
|
> > > ##### Markdown Syntax
|
558
446
|
> > > > Inverted Very Padded Segment:
|
559
447
|
> > > > ```__Active Button|Icon:User, Follow__```
|
560
448
|
>
|
561
449
|
> <!-- -->
|
562
|
-
>
|
563
450
|
> > Basic Segment:
|
564
451
|
> > #### Disabled::disabled
|
565
452
|
> > "A button can show it is currently unable to be interacted with"
|
566
453
|
>
|
567
454
|
> <!-- -->
|
568
|
-
>
|
569
455
|
> > Divided Segment Grid:
|
570
456
|
> > > Attached Segment:
|
571
457
|
> > > > Top Attached Label:
|
572
458
|
> > > > Disabled State
|
573
459
|
> >
|
574
460
|
> > <!-- -->
|
575
|
-
> >
|
576
461
|
> > > Center Aligned Six Wide Column:
|
577
462
|
> > > ##### Preview:Center Aligned
|
578
463
|
> > > __Disabled Button|Icon:User,Followed__
|
579
464
|
> >
|
580
465
|
> > <!-- -->
|
581
|
-
> >
|
582
466
|
> > > Ten Wide Column:
|
583
467
|
> > > ##### Markdown Syntax
|
584
468
|
> > > > Inverted Very Padded Segment:
|
585
469
|
> > > > ```__Disabled Button|Icon:User,Followed__```
|
586
470
|
>
|
587
471
|
> <!-- -->
|
588
|
-
>
|
589
472
|
> > Basic Segment:
|
590
473
|
> > #### Loading::loading
|
591
474
|
> > "A button can show a loading indicator"
|
592
475
|
>
|
593
476
|
> <!-- -->
|
594
|
-
>
|
595
477
|
> > Divided Segment Grid:
|
596
478
|
> > > Attached Segment:
|
597
479
|
> > > > Top Attached Label:
|
598
480
|
> > > > Loading State
|
599
481
|
> >
|
600
482
|
> > <!-- -->
|
601
|
-
> >
|
602
483
|
> > > Center Aligned Six Wide Column:
|
603
484
|
> > > ##### Preview:Center Aligned
|
604
485
|
> > > __Loading Button|Loading__
|
@@ -607,7 +488,6 @@
|
|
607
488
|
> > > __Secondary Loading Button|Loading__
|
608
489
|
> >
|
609
490
|
> > <!-- -->
|
610
|
-
> >
|
611
491
|
> > > Ten Wide Column:
|
612
492
|
> > > ##### Markdown Syntax
|
613
493
|
> > > > Inverted Very Padded Segment:
|
@@ -617,25 +497,21 @@
|
|
617
497
|
> > > > ``` __Secondary Loading Button|Loading__ ```
|
618
498
|
>
|
619
499
|
> <!-- -->
|
620
|
-
>
|
621
500
|
> > Basic Segment:
|
622
501
|
> > ## Variations:Dividing Left Aligned:variations
|
623
502
|
>
|
624
503
|
> <!-- -->
|
625
|
-
>
|
626
504
|
> > Basic Segment:
|
627
505
|
> > #### Social::social
|
628
506
|
> > "A button can be formatted to link to a social website"
|
629
507
|
>
|
630
508
|
> <!-- -->
|
631
|
-
>
|
632
509
|
> > Divided Segment Grid:
|
633
510
|
> > > Attached Segment:
|
634
511
|
> > > > Top Attached Label:
|
635
512
|
> > > > Social
|
636
513
|
> >
|
637
514
|
> > <!-- -->
|
638
|
-
> >
|
639
515
|
> > > Center Aligned Six Wide Column:
|
640
516
|
> > > ##### Preview:Center Aligned
|
641
517
|
> > > __Facebook Button|Icon:Facebook, Facebook__
|
@@ -647,7 +523,6 @@
|
|
647
523
|
> > > __YouTube Button|Icon:YouTube, YouTube__
|
648
524
|
> >
|
649
525
|
> > <!-- -->
|
650
|
-
> >
|
651
526
|
> > > Ten Wide Column:
|
652
527
|
> > > ##### Markdown Syntax
|
653
528
|
> > > > Inverted Very Padded Segment:
|
@@ -660,20 +535,17 @@
|
|
660
535
|
> > > > ``` __YouTube Button|Icon:YouTube, YouTube__ ``` <br />
|
661
536
|
>
|
662
537
|
> <!-- -->
|
663
|
-
>
|
664
538
|
> > Basic Segment:
|
665
539
|
> > #### Size::size
|
666
540
|
> > "A button can have different sizes"
|
667
541
|
>
|
668
542
|
> <!-- -->
|
669
|
-
>
|
670
543
|
> > Divided Segment Grid:
|
671
544
|
> > > Attached Segment:
|
672
545
|
> > > > Top Attached Label:
|
673
546
|
> > > > Size
|
674
547
|
> >
|
675
548
|
> > <!-- -->
|
676
|
-
> >
|
677
549
|
> > > Center Aligned Six Wide Column:
|
678
550
|
> > > ##### Preview:Center Aligned
|
679
551
|
> > > __Mini Button|Mini__
|
@@ -686,7 +558,6 @@
|
|
686
558
|
> > > __Massive Button|Massive__
|
687
559
|
> >
|
688
560
|
> > <!-- -->
|
689
|
-
> >
|
690
561
|
> > > Ten Wide Column:
|
691
562
|
> > > ##### Markdown Syntax
|
692
563
|
> > > > Inverted Very Padded Segment:
|
@@ -700,20 +571,17 @@
|
|
700
571
|
> > > > ``` __Massive Button|Massive__ ```
|
701
572
|
>
|
702
573
|
> <!-- -->
|
703
|
-
>
|
704
574
|
> > Basic Segment:
|
705
575
|
> > #### Colored::colored
|
706
576
|
> > "A button can have different colors"
|
707
577
|
>
|
708
578
|
> <!-- -->
|
709
|
-
>
|
710
579
|
> > Divided Segment Grid:
|
711
580
|
> > > Attached Segment:
|
712
581
|
> > > > Top Attached Label:
|
713
582
|
> > > > Colored
|
714
583
|
> >
|
715
584
|
> > <!-- -->
|
716
|
-
> >
|
717
585
|
> > > Center Aligned Six Wide Column:
|
718
586
|
> > > ##### Preview:Center Aligned
|
719
587
|
> > > __Red Button|Red__
|
@@ -731,7 +599,6 @@
|
|
731
599
|
> > > __Black Button|Black__
|
732
600
|
> >
|
733
601
|
> > <!-- -->
|
734
|
-
> >
|
735
602
|
> > > Ten Wide Column:
|
736
603
|
> > > ##### Markdown Syntax
|
737
604
|
> > > > Inverted Very Padded Segment:
|
@@ -750,20 +617,17 @@
|
|
750
617
|
> > > > ``` __Black Button|Black__ ```
|
751
618
|
>
|
752
619
|
> <!-- -->
|
753
|
-
>
|
754
620
|
> > Basic Segment:
|
755
621
|
> > #### Compact::compact
|
756
622
|
> > "A button can reduce its padding to fit into tighter spaces"
|
757
623
|
>
|
758
624
|
> <!-- -->
|
759
|
-
>
|
760
625
|
> > Divided Segment Grid:
|
761
626
|
> > > Attached Segment:
|
762
627
|
> > > > Top Attached Label:
|
763
628
|
> > > > Compact
|
764
629
|
> >
|
765
630
|
> > <!-- -->
|
766
|
-
> >
|
767
631
|
> > > Center Aligned Six Wide Column:
|
768
632
|
> > > ##### Preview:Center Aligned
|
769
633
|
> > > __Compact Button|Hold__
|
@@ -771,7 +635,6 @@
|
|
771
635
|
> > > __Compact Labeled Icon Button|Icon:Pause, Pause__
|
772
636
|
> >
|
773
637
|
> > <!-- -->
|
774
|
-
> >
|
775
638
|
> > > Ten Wide Column:
|
776
639
|
> > > ##### Markdown Syntax
|
777
640
|
> > > > Inverted Very Padded Segment:
|
@@ -780,27 +643,23 @@
|
|
780
643
|
> > > > ``` __Compact Labeled Icon Button|Icon:Pause, Pause__ ```
|
781
644
|
>
|
782
645
|
> <!-- -->
|
783
|
-
>
|
784
646
|
> > Basic Segment:
|
785
647
|
> > #### Positive::positive
|
786
648
|
> > "A button can hint towards a positive consequence"
|
787
649
|
>
|
788
650
|
> <!-- -->
|
789
|
-
>
|
790
651
|
> > Divided Segment Grid:
|
791
652
|
> > > Attached Segment:
|
792
653
|
> > > > Top Attached Label:
|
793
654
|
> > > > Positive
|
794
655
|
> >
|
795
656
|
> > <!-- -->
|
796
|
-
> >
|
797
657
|
> > > Center Aligned Six Wide Column:
|
798
658
|
> > > ##### Preview:Center Aligned
|
799
659
|
> > > __Positive Button|Positive Button__
|
800
660
|
> > > __Negative Button|Negative Button__
|
801
661
|
> >
|
802
662
|
> > <!-- -->
|
803
|
-
> >
|
804
663
|
> > > Ten Wide Column:
|
805
664
|
> > > ##### Markdown Syntax
|
806
665
|
> > > > Inverted Very Padded Segment:
|
@@ -808,98 +667,83 @@
|
|
808
667
|
> > > > ``` __Negative Button|Negative Button__ ``` <br />
|
809
668
|
>
|
810
669
|
> <!-- -->
|
811
|
-
>
|
812
670
|
> > Basic Segment:
|
813
671
|
> > #### Negative::negative
|
814
672
|
> > "A button can hint towards a negative consequence"
|
815
673
|
>
|
816
674
|
> <!-- -->
|
817
|
-
>
|
818
675
|
> > Divided Segment Grid:
|
819
676
|
> > > Attached Segment:
|
820
677
|
> > > > Top Attached Label:
|
821
678
|
> > > > Negative
|
822
679
|
> >
|
823
680
|
> > <!-- -->
|
824
|
-
> >
|
825
681
|
> > > Center Aligned Six Wide Column:
|
826
682
|
> > > ##### Preview:Center Aligned
|
827
683
|
> > > __Negative Button|Negative Button__
|
828
684
|
> >
|
829
685
|
> > <!-- -->
|
830
|
-
> >
|
831
686
|
> > > Ten Wide Column:
|
832
687
|
> > > ##### Markdown Syntax
|
833
688
|
> > > > Inverted Very Padded Segment:
|
834
689
|
> > > > ``` __Negative Button|Negative Button__ ``` <br />
|
835
690
|
>
|
836
691
|
> <!-- -->
|
837
|
-
>
|
838
692
|
> > Basic Segment:
|
839
693
|
> > #### Fluid::fluid
|
840
694
|
> > "A button can take the width of its container"
|
841
695
|
>
|
842
696
|
> <!-- -->
|
843
|
-
>
|
844
697
|
> > Divided Segment Grid:
|
845
698
|
> > > Attached Segment:
|
846
699
|
> > > > Top Attached Label:
|
847
700
|
> > > > Fluid
|
848
701
|
> >
|
849
702
|
> > <!-- -->
|
850
|
-
> >
|
851
703
|
> > > Center Aligned Six Wide Column:
|
852
704
|
> > > ##### Preview:Center Aligned
|
853
705
|
> > > __Fluid Button|Fluid Button__
|
854
706
|
> >
|
855
707
|
> > <!-- -->
|
856
|
-
> >
|
857
708
|
> > > Ten Wide Column:
|
858
709
|
> > > ##### Markdown Syntax
|
859
710
|
> > > > Inverted Very Padded Segment:
|
860
711
|
> > > > ``` __Fluid Button|Fluid Button__ ``` <br />
|
861
712
|
>
|
862
713
|
> <!-- -->
|
863
|
-
>
|
864
714
|
> > Basic Segment:
|
865
715
|
> > #### Circular::circular
|
866
716
|
> > "A button can be circular"
|
867
717
|
>
|
868
718
|
> <!-- -->
|
869
|
-
>
|
870
719
|
> > Divided Segment Grid:
|
871
720
|
> > > Attached Segment:
|
872
721
|
> > > > Top Attached Label:
|
873
722
|
> > > > Circular
|
874
723
|
> >
|
875
724
|
> > <!-- -->
|
876
|
-
> >
|
877
725
|
> > > Center Aligned Six Wide Column:
|
878
726
|
> > > ##### Preview:Center Aligned
|
879
727
|
> > > __Circular Icon Button|Icon:Settings__
|
880
728
|
> >
|
881
729
|
> > <!-- -->
|
882
|
-
> >
|
883
730
|
> > > Ten Wide Column:
|
884
731
|
> > > ##### Markdown Syntax
|
885
732
|
> > > > Inverted Very Padded Segment:
|
886
733
|
> > > > ``` __Circular Icon Button|Icon:Settings__ ``` <br />
|
887
734
|
>
|
888
735
|
> <!-- -->
|
889
|
-
>
|
890
736
|
> > Basic Segment:
|
891
737
|
> > #### Vertically Attached::vertically-attached
|
892
738
|
> > "A button can be attached to the top or bottom of other content"
|
893
739
|
>
|
894
740
|
> <!-- -->
|
895
|
-
>
|
896
741
|
> > Divided Segment Grid:
|
897
742
|
> > > Attached Segment:
|
898
743
|
> > > > Top Attached Label:
|
899
744
|
> > > > Vertically Attached
|
900
745
|
> >
|
901
746
|
> > <!-- -->
|
902
|
-
> >
|
903
747
|
> > > Center Aligned Six Wide Column:
|
904
748
|
> > > ##### Preview:Center Aligned
|
905
749
|
> > > __Top Attached Focusable Button|Top__
|
@@ -910,7 +754,6 @@
|
|
910
754
|
> > > __Bottom Attached Focusable Button|Bottom__
|
911
755
|
> >
|
912
756
|
> > <!-- -->
|
913
|
-
> >
|
914
757
|
> > > Ten Wide Column:
|
915
758
|
> > > ##### Markdown Syntax
|
916
759
|
> > > > Inverted Very Padded Segment:
|
@@ -922,7 +765,6 @@
|
|
922
765
|
> > > > ``` __Bottom Attached Focusable Button|Bottom__ ``` <br />
|
923
766
|
> >
|
924
767
|
> > <!-- -->
|
925
|
-
> >
|
926
768
|
> > > Center Aligned Six Wide Column:
|
927
769
|
> > > ##### Preview:Center Aligned
|
928
770
|
> > > > Two Top Attached Buttons:
|
@@ -930,18 +772,15 @@
|
|
930
772
|
> > > > __Button|Two__
|
931
773
|
> > >
|
932
774
|
> > > <!-- -->
|
933
|
-
> > >
|
934
775
|
> > > > Attached Segment:
|
935
776
|
> > > > " "
|
936
777
|
> > >
|
937
778
|
> > > <!-- -->
|
938
|
-
> > >
|
939
779
|
> > > > Two Bottom Attached Buttons:
|
940
780
|
> > > > __Button|One__
|
941
781
|
> > > > __Button|Two__
|
942
782
|
> >
|
943
783
|
> > <!-- -->
|
944
|
-
> >
|
945
784
|
> > > Ten Wide Column:
|
946
785
|
> > > ##### Markdown Syntax
|
947
786
|
> > > > Inverted Very Padded Segment:
|
@@ -959,32 +798,25 @@
|
|
959
798
|
> > > > ```> Two Bottom Attached Buttons:``` <br />
|
960
799
|
> > > > ```> __Button|One__ ``` <br />
|
961
800
|
> > > > ```> __Button|Two__ ``` <br />
|
962
|
-
> >
|
963
|
-
> > <!-- -->
|
964
|
-
> >
|
965
801
|
>
|
966
802
|
> <!-- -->
|
967
|
-
>
|
968
803
|
> > Basic Segment:
|
969
804
|
> > #### Horizontally Attached::horizontally-attached
|
970
805
|
> > "A button can be attached to the left or right of other content"
|
971
806
|
>
|
972
807
|
> <!-- -->
|
973
|
-
>
|
974
808
|
> > Divided Segment Grid:
|
975
809
|
> > > Attached Segment:
|
976
810
|
> > > > Top Attached Label:
|
977
811
|
> > > > Horizontally Attached
|
978
812
|
> >
|
979
813
|
> > <!-- -->
|
980
|
-
> >
|
981
814
|
> > > Six Wide Column:
|
982
815
|
> > > ##### Preview:Center Aligned
|
983
816
|
> > > __Left Attached Button|Left__
|
984
817
|
> > > __Right Attached Button|Right__
|
985
818
|
> >
|
986
819
|
> > <!-- -->
|
987
|
-
> >
|
988
820
|
> > > Ten Wide Column:
|
989
821
|
> > > ##### Markdown Syntax
|
990
822
|
> > > > Inverted Very Padded Segment:
|
@@ -992,25 +824,21 @@
|
|
992
824
|
> > > > ``` > __Right Attached Button|Right__ ```
|
993
825
|
>
|
994
826
|
> <!-- -->
|
995
|
-
>
|
996
827
|
> > Basic Segment:
|
997
828
|
> > ## Group Variations:Dividing Left Aligned:group-variations
|
998
829
|
>
|
999
830
|
> <!-- -->
|
1000
|
-
>
|
1001
831
|
> > Basic Segment:
|
1002
832
|
> > #### Vertical Buttons::vertical-buttons
|
1003
833
|
> > "Groups can be formatted to appear vertically"
|
1004
834
|
>
|
1005
835
|
> <!-- -->
|
1006
|
-
>
|
1007
836
|
> > Divided Segment Grid:
|
1008
837
|
> > > Attached Segment:
|
1009
838
|
> > > > Top Attached Label:
|
1010
839
|
> > > > Vertical Buttons
|
1011
840
|
> >
|
1012
841
|
> > <!-- -->
|
1013
|
-
> >
|
1014
842
|
> > > Center Aligned Six Wide Column:
|
1015
843
|
> > > ##### Preview:Center Aligned
|
1016
844
|
> > > > Vertical Buttons:
|
@@ -1020,7 +848,6 @@
|
|
1020
848
|
> > > > __Button|Photos__
|
1021
849
|
> >
|
1022
850
|
> > <!-- -->
|
1023
|
-
> >
|
1024
851
|
> > > Ten Wide Column:
|
1025
852
|
> > > ##### Markdown Syntax
|
1026
853
|
> > > > Inverted Very Padded Segment:
|
@@ -1031,20 +858,17 @@
|
|
1031
858
|
> > > > ``` > __Button|Photos__ ```
|
1032
859
|
>
|
1033
860
|
> <!-- -->
|
1034
|
-
>
|
1035
861
|
> > Basic Segment:
|
1036
862
|
> > #### Icon Buttons::icon-buttons
|
1037
863
|
> > "Groups can be formatted as icons"
|
1038
864
|
>
|
1039
865
|
> <!-- -->
|
1040
|
-
>
|
1041
866
|
> > Divided Segment Grid:
|
1042
867
|
> > > Attached Segment:
|
1043
868
|
> > > > Top Attached Label:
|
1044
869
|
> > > > Icon Buttons
|
1045
870
|
> >
|
1046
871
|
> > <!-- -->
|
1047
|
-
> >
|
1048
872
|
> > > Center Aligned Six Wide Column:
|
1049
873
|
> > > ##### Preview:Center Aligned
|
1050
874
|
> > > > Icon Buttons:
|
@@ -1053,7 +877,6 @@
|
|
1053
877
|
> > > > __Button|Icon:Shuffle__
|
1054
878
|
> >
|
1055
879
|
> > <!-- -->
|
1056
|
-
> >
|
1057
880
|
> > > Ten Wide Column:
|
1058
881
|
> > > ##### Markdown Syntax
|
1059
882
|
> > > > Inverted Very Padded Segment:
|
@@ -1063,20 +886,17 @@
|
|
1063
886
|
> > > > ``` > __Button|Icon:Shuffle__ ```
|
1064
887
|
>
|
1065
888
|
> <!-- -->
|
1066
|
-
>
|
1067
889
|
> > Basic Segment:
|
1068
890
|
> > #### Labeled Icon Buttons::labeled-icon-buttons
|
1069
891
|
> > "Groups can be formatted as labeled icons"
|
1070
892
|
>
|
1071
893
|
> <!-- -->
|
1072
|
-
>
|
1073
894
|
> > Divided Segment Grid:
|
1074
895
|
> > > Attached Segment:
|
1075
896
|
> > > > Top Attached Label:
|
1076
897
|
> > > > Labeled Icon Buttons
|
1077
898
|
> >
|
1078
899
|
> > <!-- -->
|
1079
|
-
> >
|
1080
900
|
> > > Center Aligned Six Wide Column:
|
1081
901
|
> > > ##### Preview:Center Aligned
|
1082
902
|
> > > > Vertical Labeled Icon Buttons:
|
@@ -1085,7 +905,6 @@
|
|
1085
905
|
> > > > __Button|Icon:Shuffle, Shuffle__
|
1086
906
|
> >
|
1087
907
|
> > <!-- -->
|
1088
|
-
> >
|
1089
908
|
> > > Ten Wide Column:
|
1090
909
|
> > > ##### Markdown Syntax
|
1091
910
|
> > > > Inverted Very Padded Segment:
|
@@ -1095,20 +914,17 @@
|
|
1095
914
|
> > > > ``` > __Button|Icon:Shuffle, Shuffle__ ```
|
1096
915
|
>
|
1097
916
|
> <!-- -->
|
1098
|
-
>
|
1099
917
|
> > Basic Segment:
|
1100
918
|
> > #### Mixed Group::mixed-group
|
1101
919
|
> > "Groups can be formatted to use multiple button types together"
|
1102
920
|
>
|
1103
921
|
> <!-- -->
|
1104
|
-
>
|
1105
922
|
> > Divided Segment Grid:
|
1106
923
|
> > > Attached Segment:
|
1107
924
|
> > > > Top Attached Label:
|
1108
925
|
> > > > Mixed Group
|
1109
926
|
> >
|
1110
927
|
> > <!-- -->
|
1111
|
-
> >
|
1112
928
|
> > > Center Aligned Six Wide Column:
|
1113
929
|
> > > ##### Preview:Center Aligned
|
1114
930
|
> > > > Buttons:
|
@@ -1117,7 +933,6 @@
|
|
1117
933
|
> > > > __Right Labeled Icon Button|Icon:Right Chevron, Forward__
|
1118
934
|
> >
|
1119
935
|
> > <!-- -->
|
1120
|
-
> >
|
1121
936
|
> > > Ten Wide Column:
|
1122
937
|
> > > ##### Markdown Syntax
|
1123
938
|
> > > > Inverted Very Padded Segment:
|
@@ -1127,20 +942,17 @@
|
|
1127
942
|
> > > > ``` > __Right Labeled Icon Button|Icon:Right Chevron, Forward__ ```
|
1128
943
|
>
|
1129
944
|
> <!-- -->
|
1130
|
-
>
|
1131
945
|
> > Basic Segment:
|
1132
946
|
> > #### Equal Width::equal-width
|
1133
947
|
> > "Groups can have their widths divided evenly"
|
1134
948
|
>
|
1135
949
|
> <!-- -->
|
1136
|
-
>
|
1137
950
|
> > Divided Segment Grid:
|
1138
951
|
> > > Attached Segment:
|
1139
952
|
> > > > Top Attached Label:
|
1140
953
|
> > > > Equal Width
|
1141
954
|
> >
|
1142
955
|
> > <!-- -->
|
1143
|
-
> >
|
1144
956
|
> > > Eight Wide Column:
|
1145
957
|
> > > ##### Preview:Center Aligned
|
1146
958
|
> > > > Five Buttons:
|
@@ -1151,14 +963,12 @@
|
|
1151
963
|
> > > > __Button|Support__
|
1152
964
|
> > >
|
1153
965
|
> > > <!-- -->
|
1154
|
-
> > >
|
1155
966
|
> > > > Three Buttons:
|
1156
967
|
> > > > __Button|Overview__
|
1157
968
|
> > > > __Button|Specs__
|
1158
969
|
> > > > __Button|Support__
|
1159
970
|
> >
|
1160
971
|
> > <!-- -->
|
1161
|
-
> >
|
1162
972
|
> > > Eight Wide Column:
|
1163
973
|
> > > ##### Markdown Syntax
|
1164
974
|
> > > > Inverted Very Padded Segment:
|
@@ -1177,20 +987,17 @@
|
|
1177
987
|
> > > > ``` > __Button|Support__ ```
|
1178
988
|
>
|
1179
989
|
> <!-- -->
|
1180
|
-
>
|
1181
990
|
> > Basic Segment:
|
1182
991
|
> > #### Colored Buttons::colored-buttons
|
1183
992
|
> > "Groups can have a shared color"
|
1184
993
|
>
|
1185
994
|
> <!-- -->
|
1186
|
-
>
|
1187
995
|
> > Divided Segment Grid:
|
1188
996
|
> > > Attached Segment:
|
1189
997
|
> > > > Top Attached Label:
|
1190
998
|
> > > > Colored Buttons
|
1191
999
|
> >
|
1192
1000
|
> > <!-- -->
|
1193
|
-
> >
|
1194
1001
|
> > > Center Aligned Six Wide Column:
|
1195
1002
|
> > > ##### Preview:Center Aligned
|
1196
1003
|
> > > > Blue Buttons:
|
@@ -1199,7 +1006,6 @@
|
|
1199
1006
|
> > > > __Button|Three__
|
1200
1007
|
> >
|
1201
1008
|
> > <!-- -->
|
1202
|
-
> >
|
1203
1009
|
> > > Ten Wide Column:
|
1204
1010
|
> > > ##### Markdown Syntax
|
1205
1011
|
> > > > Inverted Very Padded Segment:
|
@@ -1209,20 +1015,17 @@
|
|
1209
1015
|
> > > > ``` > __Button|Three__ ```
|
1210
1016
|
>
|
1211
1017
|
> <!-- -->
|
1212
|
-
>
|
1213
1018
|
> > Basic Segment:
|
1214
1019
|
> > #### Basic Buttons::basic-buttons
|
1215
1020
|
> > "A button group can be less pronounced"
|
1216
1021
|
>
|
1217
1022
|
> <!-- -->
|
1218
|
-
>
|
1219
1023
|
> > Divided Segment Grid:
|
1220
1024
|
> > > Attached Segment:
|
1221
1025
|
> > > > Top Attached Label:
|
1222
1026
|
> > > > Basic Buttons
|
1223
1027
|
> >
|
1224
1028
|
> > <!-- -->
|
1225
|
-
> >
|
1226
1029
|
> > > Six Wide Column:
|
1227
1030
|
> > > ##### Preview:Center Aligned
|
1228
1031
|
> > > > Basic Buttons:
|
@@ -1238,7 +1041,6 @@
|
|
1238
1041
|
> > > > __Button|Three__
|
1239
1042
|
> >
|
1240
1043
|
> > <!-- -->
|
1241
|
-
> >
|
1242
1044
|
> > > Ten Wide Column:
|
1243
1045
|
> > > ##### Markdown Syntax
|
1244
1046
|
> > > > Inverted Very Padded Segment:
|
@@ -1255,7 +1057,6 @@
|
|
1255
1057
|
> > > > ``` > __Button|Three__ ```
|
1256
1058
|
> >
|
1257
1059
|
> > <!-- -->
|
1258
|
-
> >
|
1259
1060
|
> > > Six Wide Column:
|
1260
1061
|
> > > ##### Preview:Center Aligned
|
1261
1062
|
> > > > Buttons:
|
@@ -1264,7 +1065,6 @@
|
|
1264
1065
|
> > > > __Green Basic Button|Three__
|
1265
1066
|
> >
|
1266
1067
|
> > <!-- -->
|
1267
|
-
> >
|
1268
1068
|
> > > Ten Wide Column:
|
1269
1069
|
> > > ##### Markdown Syntax
|
1270
1070
|
> > > > Inverted Very Padded Segment:
|
@@ -1274,20 +1074,17 @@
|
|
1274
1074
|
> > > > ``` > __Green Basic Button|Three__ ```
|
1275
1075
|
>
|
1276
1076
|
> <!-- -->
|
1277
|
-
>
|
1278
1077
|
> > Basic Segment:
|
1279
1078
|
> > #### Group Sizes::group-sizes
|
1280
1079
|
> > "Groups can have a shared color"
|
1281
1080
|
>
|
1282
1081
|
> <!-- -->
|
1283
|
-
>
|
1284
1082
|
> > Divided Segment Grid:
|
1285
1083
|
> > > Attached Segment:
|
1286
1084
|
> > > > Top Attached Label:
|
1287
1085
|
> > > > Group Sizes
|
1288
1086
|
> >
|
1289
1087
|
> > <!-- -->
|
1290
|
-
> >
|
1291
1088
|
> > > Center Aligned Six Wide Column:
|
1292
1089
|
> > > ##### Preview:Center Aligned
|
1293
1090
|
> > > > Large Buttons:
|
@@ -1296,7 +1093,6 @@
|
|
1296
1093
|
> > > > __Button|Three__
|
1297
1094
|
> >
|
1298
1095
|
> > <!-- -->
|
1299
|
-
> >
|
1300
1096
|
> > > Ten Wide Column:
|
1301
1097
|
> > > ##### Markdown Syntax
|
1302
1098
|
> > > > Inverted Very Padded Segment:
|
@@ -1306,7 +1102,6 @@
|
|
1306
1102
|
> > > > ``` > __Button|Three__ ```
|
1307
1103
|
> >
|
1308
1104
|
> > <!-- -->
|
1309
|
-
> >
|
1310
1105
|
> > > Center Aligned Six Wide Column:
|
1311
1106
|
> > > ##### Preview:Center Aligned
|
1312
1107
|
> > > > Small Basic Icon Buttons:
|
@@ -1316,7 +1111,6 @@
|
|
1316
1111
|
> > > > __Button|Icon:Download__
|
1317
1112
|
> >
|
1318
1113
|
> > <!-- -->
|
1319
|
-
> >
|
1320
1114
|
> > > Ten Wide Column:
|
1321
1115
|
> > > ##### Markdown Syntax
|
1322
1116
|
> > > > Inverted Very Padded Segment:
|
@@ -1327,7 +1121,6 @@
|
|
1327
1121
|
> > > > ``` > __Button|Icon:Download__ ``` <br />
|
1328
1122
|
> >
|
1329
1123
|
> > <!-- -->
|
1330
|
-
> >
|
1331
1124
|
> > > Center Aligned Six Wide Column:
|
1332
1125
|
> > > ##### Preview:Center Aligned
|
1333
1126
|
> > > > Large Buttons:
|
@@ -1336,7 +1129,6 @@
|
|
1336
1129
|
> > > > __Button|Two__
|
1337
1130
|
> >
|
1338
1131
|
> > <!-- -->
|
1339
|
-
> >
|
1340
1132
|
> > > Ten Wide Column:
|
1341
1133
|
> > > ##### Markdown Syntax
|
1342
1134
|
> > > > Inverted Very Padded Segment:
|