bootstrap-bookingsync-sass 0.0.17 → 0.0.18
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.md +8 -0
- data/assets/javascripts/bookingsync/stackable.js +49 -0
- data/assets/javascripts/bootstrap-bookingsync-sprockets.js +1 -0
- data/assets/stylesheets/_bootstrap-bookingsync.scss +1 -0
- data/assets/stylesheets/bookingsync/_colors.scss +1 -0
- data/assets/stylesheets/bookingsync/_dropdown.scss +8 -0
- data/assets/stylesheets/bookingsync/_sheet.scss +58 -1
- data/assets/stylesheets/bookingsync/_variables.scss +30 -12
- data/docs/content/assets/stylesheets/_base.scss +6 -5
- data/docs/content/assets/stylesheets/_callout.scss +10 -1
- data/docs/content/components.html +7 -7
- data/docs/content/components/chosen.md +28 -22
- data/docs/content/components/dropdown.md +45 -0
- data/docs/content/components/menu.md +186 -103
- data/docs/content/components/sheet.md +256 -4
- data/docs/content/components/switch.md +15 -7
- data/docs/content/css.html +44 -18
- data/docs/content/css/forms.md +732 -590
- data/docs/content/css/helpers.md +37 -27
- data/lib/bootstrap/bookingsync/version.rb +1 -1
- metadata +5 -2
data/docs/content/css/helpers.md
CHANGED
@@ -1,19 +1,28 @@
|
|
1
1
|
# Helper classes
|
2
2
|
|
3
|
-
|
3
|
+
<div class="example">
|
4
|
+
<div class="sheet-header">
|
5
|
+
<h3 id="helper-example-vertical-alignment">Vertical alignment</h3>
|
6
|
+
</div>
|
4
7
|
|
5
|
-
Vertical align inline elements having different line height
|
8
|
+
<p>Vertical align inline elements having different line height.</p>
|
6
9
|
|
7
|
-
<div class="
|
8
|
-
|
9
|
-
<
|
10
|
-
</
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
10
|
+
<div class="bs-callout bs-callout-warning">
|
11
|
+
<h4>Vertical alignment inside block elements</h4>
|
12
|
+
<p>This helper classes will not vertically align content inside block elements.</p>
|
13
|
+
</div>
|
14
|
+
|
15
|
+
<div class="bs-example bs-sheet" data-example-id="helper-example-vertical-alignment">
|
16
|
+
<h1>
|
17
|
+
<small class="valign-top">Top</small> aligned text.
|
18
|
+
</h1>
|
19
|
+
<h1>
|
20
|
+
<small class="valign-middle">Middle</small> aligned text.
|
21
|
+
</h1>
|
22
|
+
<h1>
|
23
|
+
<small class="valign-bottom">Bottom</small> aligned text.
|
24
|
+
</h1>
|
25
|
+
</div>
|
17
26
|
</div>
|
18
27
|
~~~ html
|
19
28
|
<h1><small class="valign-top">Top</small> aligned text.</h1>
|
@@ -21,17 +30,23 @@ Vertical align inline elements having different line height.
|
|
21
30
|
<h1><small class="valign-bottom">Bottom</small> aligned text.</h1>
|
22
31
|
~~~
|
23
32
|
|
24
|
-
Vertical align elements inside table cells.
|
25
|
-
|
26
33
|
<div class="example">
|
27
|
-
<
|
28
|
-
<
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
34
|
+
<div class="sheet-header">
|
35
|
+
<h3 id="forms-example-vertical-table-alignment">Vertical table alignment</h3>
|
36
|
+
</div>
|
37
|
+
|
38
|
+
<p>Vertical align elements inside table cells.</p>
|
39
|
+
|
40
|
+
<div class="bs-example bs-sheet" data-example-id="forms-example-vertical-table-alignment">
|
41
|
+
<table class="table">
|
42
|
+
<tr>
|
43
|
+
<th>Example<br/>row</th>
|
44
|
+
<td class="valign-top">Top</td>
|
45
|
+
<td class="valign-middle">Middle</td>
|
46
|
+
<td class="valign-bottom">Bottom</td>
|
47
|
+
</tr>
|
48
|
+
</table>
|
49
|
+
</div>
|
35
50
|
</div>
|
36
51
|
~~~ html
|
37
52
|
<table>
|
@@ -42,8 +57,3 @@ Vertical align elements inside table cells.
|
|
42
57
|
</tr>
|
43
58
|
</table>
|
44
59
|
~~~
|
45
|
-
|
46
|
-
<div class="bs-callout bs-callout-warning">
|
47
|
-
<h4>Vertical alignment inside block elements</h4>
|
48
|
-
<p>This helper classes will not vertically align content inside block elements.</p>
|
49
|
-
</div>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bootstrap-bookingsync-sass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.18
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sebastien Grosjean
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-05-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bootstrap-sass
|
@@ -42,12 +42,14 @@ files:
|
|
42
42
|
- assets/fonts/bookingsync/bookingsync-smiles.woff
|
43
43
|
- assets/fonts/bookingsync/bookingsync-smiles.woff2
|
44
44
|
- assets/javascripts/bookingsync/form.js
|
45
|
+
- assets/javascripts/bookingsync/stackable.js
|
45
46
|
- assets/javascripts/bookingsync/switch.js
|
46
47
|
- assets/javascripts/bootstrap-bookingsync-sprockets.js
|
47
48
|
- assets/stylesheets/_bootstrap-bookingsync-sprockets.scss
|
48
49
|
- assets/stylesheets/_bootstrap-bookingsync.scss
|
49
50
|
- assets/stylesheets/bookingsync/_chosen.scss
|
50
51
|
- assets/stylesheets/bookingsync/_colors.scss
|
52
|
+
- assets/stylesheets/bookingsync/_dropdown.scss
|
51
53
|
- assets/stylesheets/bookingsync/_form.scss
|
52
54
|
- assets/stylesheets/bookingsync/_layout.scss
|
53
55
|
- assets/stylesheets/bookingsync/_menu.scss
|
@@ -75,6 +77,7 @@ files:
|
|
75
77
|
- docs/content/assets/stylesheets/application.scss
|
76
78
|
- docs/content/components.html
|
77
79
|
- docs/content/components/chosen.md
|
80
|
+
- docs/content/components/dropdown.md
|
78
81
|
- docs/content/components/menu.md
|
79
82
|
- docs/content/components/sheet.md
|
80
83
|
- docs/content/components/switch.md
|