colorgy_style 0.0.0.1 → 0.0.0.2
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/README.md +1 -1
- data/assets/javascripts/colorgy/addons/holder.js +1 -0
- data/assets/javascripts/colorgy/components/alert.js +9 -0
- data/assets/javascripts/colorgy/components/dropdown.js +8 -0
- data/assets/javascripts/colorgy/flash.js +86 -0
- data/assets/javascripts/colorgy/lib/interactiveStyle.js +5 -0
- data/assets/javascripts/colorgy/lib/jquery.getOrAddChild.js +12 -0
- data/assets/javascripts/colorgy/main.js +3 -0
- data/assets/javascripts/vendor/holder.js +2471 -0
- data/assets/javascripts/vendor/toastr.js +442 -0
- data/assets/stylesheets/colorgy/components/_alert.scss +40 -0
- data/assets/stylesheets/colorgy/components/_badge.scss +9 -0
- data/assets/stylesheets/colorgy/components/_breadcrumb.scss +9 -0
- data/assets/stylesheets/colorgy/components/_button.scss +50 -7
- data/assets/stylesheets/colorgy/components/_button_group.scss +33 -0
- data/assets/stylesheets/colorgy/components/_dropdown.scss +18 -0
- data/assets/stylesheets/colorgy/components/_input_group.scss +23 -0
- data/assets/stylesheets/colorgy/components/_label.scss +39 -0
- data/assets/stylesheets/colorgy/components/_list_group.scss +9 -0
- data/assets/stylesheets/colorgy/components/_media.scss +9 -0
- data/assets/stylesheets/colorgy/components/_nav.scss +33 -0
- data/assets/stylesheets/colorgy/components/_navbar.scss +23 -0
- data/assets/stylesheets/colorgy/components/_page_header.scss +11 -0
- data/assets/stylesheets/colorgy/components/_pager.scss +9 -0
- data/assets/stylesheets/colorgy/components/_pagination.scss +23 -0
- data/assets/stylesheets/colorgy/components/_panel.scss +39 -0
- data/assets/stylesheets/colorgy/components/_progress_bar.scss +41 -0
- data/assets/stylesheets/colorgy/components/_thumbnail.scss +9 -0
- data/assets/stylesheets/colorgy/components/_toast.scss +352 -0
- data/assets/stylesheets/colorgy/components/_well.scss +23 -0
- data/assets/stylesheets/colorgy/core/_base.scss +1 -1
- data/assets/stylesheets/colorgy/core/_config.scss +1 -1
- data/assets/stylesheets/colorgy/core/_grid.scss +1 -1
- data/assets/stylesheets/colorgy/core/_tools.scss +9 -0
- data/assets/stylesheets/colorgy/layouts/_default.scss +3 -0
- data/assets/stylesheets/colorgy/main.scss +3 -1
- data/assets/stylesheets/colorgy/structures/_jumbotron.scss +9 -0
- data/assets/stylesheets/vendor/animate.scss +3272 -0
- data/lib/colorgy_style/version.rb +1 -1
- data/styleguide/index.html.haml +40 -1
- data/styleguide/javascripts/body.js +7 -1
- data/styleguide/styleblocks/_alert.html.erb +3 -0
- data/styleguide/styleblocks/_badge.html.erb +5 -0
- data/styleguide/styleblocks/_breadcrumb.html.erb +5 -0
- data/styleguide/styleblocks/_button.html.erb +6 -6
- data/styleguide/styleblocks/_button_group.html.erb +41 -0
- data/styleguide/styleblocks/_dropdown.html.erb +65 -0
- data/styleguide/styleblocks/_input_group.html.erb +131 -0
- data/styleguide/styleblocks/_label.html.erb +7 -0
- data/styleguide/styleblocks/_list_group.html.erb +31 -0
- data/styleguide/styleblocks/_media.html.erb +60 -0
- data/styleguide/styleblocks/_nav.html.erb +18 -0
- data/styleguide/styleblocks/_navbar.html.erb +53 -0
- data/styleguide/styleblocks/_page_header.html.erb +3 -0
- data/styleguide/styleblocks/_pager.html.erb +6 -0
- data/styleguide/styleblocks/_pagination.html.erb +19 -0
- data/styleguide/styleblocks/_panel.html.erb +100 -0
- data/styleguide/styleblocks/_progress_bar.html.erb +12 -0
- data/styleguide/styleblocks/_thumbnail.html.erb +56 -0
- data/styleguide/styleblocks/_toast.html.erb +35 -0
- data/styleguide/styleblocks/_well.html.erb +1 -0
- data/styleguide/stylesheets/styleguide/styles.scss +14 -0
- metadata +53 -4
- data/assets/stylesheets/colorgy/components/.keep +0 -0
- data/assets/stylesheets/colorgy/structures/.keep +0 -0
@@ -0,0 +1,18 @@
|
|
1
|
+
<ul class="nav$modifier_class">
|
2
|
+
<li role="presentation" class="active"><a href="#">Home</a></li>
|
3
|
+
<li role="presentation"><a href="#">Profile</a></li>
|
4
|
+
<li role="presentation"><a href="#">Messages</a></li>
|
5
|
+
<li role="presentation" class="disabled"><a href="#">Disabled link</a></li>
|
6
|
+
<li role="presentation" class="dropdown">
|
7
|
+
<a class="dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-expanded="false">
|
8
|
+
Dropdown <span class="caret"></span>
|
9
|
+
</a>
|
10
|
+
<ul class="dropdown-menu" role="menu">
|
11
|
+
<li><a href="#">Action</a></li>
|
12
|
+
<li><a href="#">Another action</a></li>
|
13
|
+
<li><a href="#">Something else here</a></li>
|
14
|
+
<li class="divider"></li>
|
15
|
+
<li><a href="#">Separated link</a></li>
|
16
|
+
</ul>
|
17
|
+
</li>
|
18
|
+
</ul>
|
@@ -0,0 +1,53 @@
|
|
1
|
+
<nav class="navbar$modifier_class">
|
2
|
+
<div class="container-fluid">
|
3
|
+
<!-- Brand and toggle get grouped for better mobile display -->
|
4
|
+
<div class="navbar-header">
|
5
|
+
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
|
6
|
+
<span class="sr-only">Toggle navigation</span>
|
7
|
+
<span class="icon-bar"></span>
|
8
|
+
<span class="icon-bar"></span>
|
9
|
+
<span class="icon-bar"></span>
|
10
|
+
</button>
|
11
|
+
<a class="navbar-brand" href="#">Brand</a>
|
12
|
+
</div>
|
13
|
+
|
14
|
+
<!-- Collect the nav links, forms, and other content for toggling -->
|
15
|
+
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
|
16
|
+
<ul class="nav navbar-nav">
|
17
|
+
<li class="active"><a href="#">Link <span class="sr-only">(current)</span></a></li>
|
18
|
+
<li><a href="#">Link</a></li>
|
19
|
+
<li class="dropdown">
|
20
|
+
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">Dropdown <span class="caret"></span></a>
|
21
|
+
<ul class="dropdown-menu" role="menu">
|
22
|
+
<li><a href="#">Action</a></li>
|
23
|
+
<li><a href="#">Another action</a></li>
|
24
|
+
<li><a href="#">Something else here</a></li>
|
25
|
+
<li class="divider"></li>
|
26
|
+
<li><a href="#">Separated link</a></li>
|
27
|
+
<li class="divider"></li>
|
28
|
+
<li><a href="#">One more separated link</a></li>
|
29
|
+
</ul>
|
30
|
+
</li>
|
31
|
+
</ul>
|
32
|
+
<form class="navbar-form navbar-left" role="search">
|
33
|
+
<div class="form-group">
|
34
|
+
<input type="text" class="form-control" placeholder="Search">
|
35
|
+
</div>
|
36
|
+
<button type="submit" class="btn btn-default">Submit</button>
|
37
|
+
</form>
|
38
|
+
<ul class="nav navbar-nav navbar-right">
|
39
|
+
<li><a href="#">Link</a></li>
|
40
|
+
<li class="dropdown">
|
41
|
+
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">Dropdown <span class="caret"></span></a>
|
42
|
+
<ul class="dropdown-menu" role="menu">
|
43
|
+
<li><a href="#">Action</a></li>
|
44
|
+
<li><a href="#">Another action</a></li>
|
45
|
+
<li><a href="#">Something else here</a></li>
|
46
|
+
<li class="divider"></li>
|
47
|
+
<li><a href="#">Separated link</a></li>
|
48
|
+
</ul>
|
49
|
+
</li>
|
50
|
+
</ul>
|
51
|
+
</div><!-- /.navbar-collapse -->
|
52
|
+
</div><!-- /.container-fluid -->
|
53
|
+
</nav>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<nav>
|
2
|
+
<ul class="pagination$modifier_class">
|
3
|
+
<li class="disabled">
|
4
|
+
<a href="#" aria-label="Previous">
|
5
|
+
<span aria-hidden="true">«</span>
|
6
|
+
</a>
|
7
|
+
</li>
|
8
|
+
<li class="active"><a href="#">1</a></li>
|
9
|
+
<li><a href="#">2</a></li>
|
10
|
+
<li><a href="#">3</a></li>
|
11
|
+
<li><a href="#">4</a></li>
|
12
|
+
<li><a href="#">5</a></li>
|
13
|
+
<li>
|
14
|
+
<a href="#" aria-label="Next">
|
15
|
+
<span aria-hidden="true">»</span>
|
16
|
+
</a>
|
17
|
+
</li>
|
18
|
+
</ul>
|
19
|
+
</nav>
|
@@ -0,0 +1,100 @@
|
|
1
|
+
<div class="panel$modifier_class">
|
2
|
+
<div class="panel-body">
|
3
|
+
Basic panel example
|
4
|
+
</div>
|
5
|
+
</div>
|
6
|
+
|
7
|
+
<div class="row">
|
8
|
+
<div class="col-lg-6">
|
9
|
+
<!-- Panel with heading -->
|
10
|
+
<div class="panel$modifier_class">
|
11
|
+
<div class="panel-heading">Panel heading without title</div>
|
12
|
+
<div class="panel-body">
|
13
|
+
Panel content
|
14
|
+
</div>
|
15
|
+
</div>
|
16
|
+
|
17
|
+
<div class="panel$modifier_class">
|
18
|
+
<div class="panel-heading">
|
19
|
+
<h3 class="panel-title">Panel title</h3>
|
20
|
+
</div>
|
21
|
+
<div class="panel-body">
|
22
|
+
Panel content
|
23
|
+
</div>
|
24
|
+
</div>
|
25
|
+
|
26
|
+
</div><!-- /.col-lg-6 -->
|
27
|
+
<div class="col-lg-6">
|
28
|
+
<!-- Panel with footer -->
|
29
|
+
<div class="panel$modifier_class">
|
30
|
+
<div class="panel-body">
|
31
|
+
Panel content
|
32
|
+
</div>
|
33
|
+
<div class="panel-footer">Panel footer</div>
|
34
|
+
</div>
|
35
|
+
</div><!-- /.col-lg-6 -->
|
36
|
+
</div>
|
37
|
+
|
38
|
+
<div class="row">
|
39
|
+
<div class="col-lg-6">
|
40
|
+
<!-- Panel with tables -->
|
41
|
+
<div class="panel$modifier_class">
|
42
|
+
<!-- Default panel contents -->
|
43
|
+
<div class="panel-heading">Panel heading</div>
|
44
|
+
<div class="panel-body">
|
45
|
+
<p>Some default panel content here. Nulla vitae elit libero, a pharetra augue. Aenean lacinia bibendum nulla sed consectetur. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Nullam id dolor id nibh ultricies vehicula ut id elit.</p>
|
46
|
+
</div>
|
47
|
+
|
48
|
+
<!-- Table -->
|
49
|
+
<table class="table">
|
50
|
+
<thead>
|
51
|
+
<tr>
|
52
|
+
<th>#</th>
|
53
|
+
<th>First Name</th>
|
54
|
+
<th>Last Name</th>
|
55
|
+
<th>Username</th>
|
56
|
+
</tr>
|
57
|
+
</thead>
|
58
|
+
<tbody>
|
59
|
+
<tr>
|
60
|
+
<th scope="row">1</th>
|
61
|
+
<td>Mark</td>
|
62
|
+
<td>Otto</td>
|
63
|
+
<td>@mdo</td>
|
64
|
+
</tr>
|
65
|
+
<tr>
|
66
|
+
<th scope="row">2</th>
|
67
|
+
<td>Jacob</td>
|
68
|
+
<td>Thornton</td>
|
69
|
+
<td>@fat</td>
|
70
|
+
</tr>
|
71
|
+
<tr>
|
72
|
+
<th scope="row">3</th>
|
73
|
+
<td>Larry</td>
|
74
|
+
<td>the Bird</td>
|
75
|
+
<td>@twitter</td>
|
76
|
+
</tr>
|
77
|
+
</tbody>
|
78
|
+
</table>
|
79
|
+
</div>
|
80
|
+
</div><!-- /.col-lg-6 -->
|
81
|
+
<div class="col-lg-6">
|
82
|
+
<!-- Panel with list groups -->
|
83
|
+
<div class="panel$modifier_class">
|
84
|
+
<!-- Default panel contents -->
|
85
|
+
<div class="panel-heading">Panel heading</div>
|
86
|
+
<div class="panel-body">
|
87
|
+
<p>...</p>
|
88
|
+
</div>
|
89
|
+
|
90
|
+
<!-- List group -->
|
91
|
+
<ul class="list-group">
|
92
|
+
<li class="list-group-item">Cras justo odio</li>
|
93
|
+
<li class="list-group-item">Dapibus ac facilisis in</li>
|
94
|
+
<li class="list-group-item">Morbi leo risus</li>
|
95
|
+
<li class="list-group-item">Porta ac consectetur ac</li>
|
96
|
+
<li class="list-group-item">Vestibulum at eros</li>
|
97
|
+
</ul>
|
98
|
+
</div>
|
99
|
+
</div><!-- /.col-lg-6 -->
|
100
|
+
</div>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<div class="progress">
|
2
|
+
<div class="progress-bar$modifier_class" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 70%;">
|
3
|
+
<span class="sr-only">70% Complete</span>
|
4
|
+
</div>
|
5
|
+
</div>
|
6
|
+
|
7
|
+
<!-- With label -->
|
8
|
+
<div class="progress">
|
9
|
+
<div class="progress-bar$modifier_class" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
|
10
|
+
60%
|
11
|
+
</div>
|
12
|
+
</div>
|
@@ -0,0 +1,56 @@
|
|
1
|
+
<div class="row">
|
2
|
+
<div class="col-xs-6 col-md-3">
|
3
|
+
<a href="#" class="thumbnail$modifier_class">
|
4
|
+
<img data-src="holder.js/100%x180">
|
5
|
+
</a>
|
6
|
+
</div>
|
7
|
+
<div class="col-xs-6 col-md-3">
|
8
|
+
<a href="#" class="thumbnail$modifier_class">
|
9
|
+
<img data-src="holder.js/100%x180">
|
10
|
+
</a>
|
11
|
+
</div>
|
12
|
+
<div class="col-xs-6 col-md-3">
|
13
|
+
<a href="#" class="thumbnail$modifier_class">
|
14
|
+
<img data-src="holder.js/100%x180">
|
15
|
+
</a>
|
16
|
+
</div>
|
17
|
+
<div class="col-xs-6 col-md-3">
|
18
|
+
<a href="#" class="thumbnail$modifier_class">
|
19
|
+
<img data-src="holder.js/100%x180">
|
20
|
+
</a>
|
21
|
+
</div>
|
22
|
+
</div>
|
23
|
+
|
24
|
+
<!-- Custom content -->
|
25
|
+
<div class="row">
|
26
|
+
<div class="col-sm-6 col-md-4">
|
27
|
+
<div class="thumbnail$modifier_class">
|
28
|
+
<img data-src="holder.js/100%x200">
|
29
|
+
<div class="caption">
|
30
|
+
<h3 id="thumbnail-label">Thumbnail label<a class="anchorjs-link" href="#thumbnail-label"><span class="anchorjs-icon"></span></a></h3>
|
31
|
+
<p>Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.</p>
|
32
|
+
<p><a href="#" class="btn btn-primary" role="button">Button</a> <a href="#" class="btn btn-default" role="button">Button</a></p>
|
33
|
+
</div>
|
34
|
+
</div>
|
35
|
+
</div>
|
36
|
+
<div class="col-sm-6 col-md-4">
|
37
|
+
<div class="thumbnail$modifier_class">
|
38
|
+
<img data-src="holder.js/100%x200">
|
39
|
+
<div class="caption">
|
40
|
+
<h3 id="thumbnail-label">Thumbnail label<a class="anchorjs-link" href="#thumbnail-label"><span class="anchorjs-icon"></span></a></h3>
|
41
|
+
<p>Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.</p>
|
42
|
+
<p><a href="#" class="btn btn-primary" role="button">Button</a> <a href="#" class="btn btn-default" role="button">Button</a></p>
|
43
|
+
</div>
|
44
|
+
</div>
|
45
|
+
</div>
|
46
|
+
<div class="col-sm-6 col-md-4">
|
47
|
+
<div class="thumbnail$modifier_class">
|
48
|
+
<img data-src="holder.js/100%x200">
|
49
|
+
<div class="caption">
|
50
|
+
<h3 id="thumbnail-label">Thumbnail label<a class="anchorjs-link" href="#thumbnail-label"><span class="anchorjs-icon"></span></a></h3>
|
51
|
+
<p>Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.</p>
|
52
|
+
<p><a href="#" class="btn btn-primary" role="button">Button</a> <a href="#" class="btn btn-default" role="button">Button</a></p>
|
53
|
+
</div>
|
54
|
+
</div>
|
55
|
+
</div>
|
56
|
+
</div>
|
@@ -0,0 +1,35 @@
|
|
1
|
+
<div class="toast$modifier_class">
|
2
|
+
<div class="toast-content">
|
3
|
+
<div class="toast-message">Inconceivable!</div>
|
4
|
+
</div>
|
5
|
+
</div>
|
6
|
+
|
7
|
+
<!-- Toast with a title -->
|
8
|
+
<div class="toast$modifier_class">
|
9
|
+
<div class="toast-content">
|
10
|
+
<div class="toast-title">CodeSeven</div>
|
11
|
+
<div class="toast-message">Have fun storming the castle!</div>
|
12
|
+
</div>
|
13
|
+
</div>
|
14
|
+
|
15
|
+
<!-- Toast with actions -->
|
16
|
+
<div class="toast$modifier_class">
|
17
|
+
<div class="toast-content">
|
18
|
+
<div class="toast-message">It will be done</div>
|
19
|
+
</div>
|
20
|
+
<div class="toast-actions">
|
21
|
+
<button type="button" class="btn primary">Cancel</button>
|
22
|
+
</div>
|
23
|
+
</div>
|
24
|
+
|
25
|
+
<!-- Toast with two actions -->
|
26
|
+
<div class="toast$modifier_class">
|
27
|
+
<div class="toast-content">
|
28
|
+
<div class="toast-title">CodeSeven</div>
|
29
|
+
<div class="toast-message">Have fun storming the castle!</div>
|
30
|
+
</div>
|
31
|
+
<div class="toast-actions">
|
32
|
+
<a class="btn">Close me</a>
|
33
|
+
<button type="button" class="btn">Surprise me</button>
|
34
|
+
</div>
|
35
|
+
</div>
|
@@ -0,0 +1 @@
|
|
1
|
+
<div class="well$modifier_class">Look, I'm in a well!</div>
|
@@ -48,6 +48,20 @@
|
|
48
48
|
position: relative;
|
49
49
|
padding: em(12);
|
50
50
|
|
51
|
+
> .sg-example,
|
52
|
+
> * {
|
53
|
+
margin-bottom: em(12);
|
54
|
+
margin-right: em(4);
|
55
|
+
}
|
56
|
+
|
57
|
+
> hr {
|
58
|
+
margin: 0;
|
59
|
+
margin-top: em(10);
|
60
|
+
margin-bottom: em(10);
|
61
|
+
border: 0;
|
62
|
+
border-top: 1px solid #eeeeee;
|
63
|
+
}
|
64
|
+
|
51
65
|
+ .styleguide-element {
|
52
66
|
margin-top: em(2);
|
53
67
|
padding-top: em(10);
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: colorgy_style
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.0.
|
4
|
+
version: 0.0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Neson
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-06-
|
11
|
+
date: 2015-06-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -237,10 +237,17 @@ files:
|
|
237
237
|
- assets/fonts/colorgy/.keep
|
238
238
|
- assets/images/colorgy/.keep
|
239
239
|
- assets/javascripts/colorgy.js
|
240
|
+
- assets/javascripts/colorgy/addons/holder.js
|
241
|
+
- assets/javascripts/colorgy/components/alert.js
|
242
|
+
- assets/javascripts/colorgy/components/dropdown.js
|
243
|
+
- assets/javascripts/colorgy/flash.js
|
244
|
+
- assets/javascripts/colorgy/lib/interactiveStyle.js
|
245
|
+
- assets/javascripts/colorgy/lib/jquery.getOrAddChild.js
|
240
246
|
- assets/javascripts/colorgy/main.js
|
241
247
|
- assets/javascripts/colorgy/modernizr.js
|
242
248
|
- assets/javascripts/colorgy/modernizr/classifier.coffee
|
243
249
|
- assets/javascripts/vendor/es5-shim.js
|
250
|
+
- assets/javascripts/vendor/holder.js
|
244
251
|
- assets/javascripts/vendor/modernizr.js
|
245
252
|
- assets/javascripts/vendor/modernizr/feature-detects/a-download.js
|
246
253
|
- assets/javascripts/vendor/modernizr/feature-detects/audio-audiodata-api.js
|
@@ -345,17 +352,39 @@ files:
|
|
345
352
|
- assets/javascripts/vendor/modernizr/feature-detects/workers-blobworkers.js
|
346
353
|
- assets/javascripts/vendor/modernizr/feature-detects/workers-dataworkers.js
|
347
354
|
- assets/javascripts/vendor/modernizr/feature-detects/workers-sharedworkers.js
|
355
|
+
- assets/javascripts/vendor/toastr.js
|
348
356
|
- assets/stylesheets/colorgy.scss
|
349
|
-
- assets/stylesheets/colorgy/components
|
357
|
+
- assets/stylesheets/colorgy/components/_alert.scss
|
358
|
+
- assets/stylesheets/colorgy/components/_badge.scss
|
359
|
+
- assets/stylesheets/colorgy/components/_breadcrumb.scss
|
350
360
|
- assets/stylesheets/colorgy/components/_button.scss
|
361
|
+
- assets/stylesheets/colorgy/components/_button_group.scss
|
362
|
+
- assets/stylesheets/colorgy/components/_dropdown.scss
|
363
|
+
- assets/stylesheets/colorgy/components/_input_group.scss
|
364
|
+
- assets/stylesheets/colorgy/components/_label.scss
|
365
|
+
- assets/stylesheets/colorgy/components/_list_group.scss
|
366
|
+
- assets/stylesheets/colorgy/components/_media.scss
|
367
|
+
- assets/stylesheets/colorgy/components/_nav.scss
|
368
|
+
- assets/stylesheets/colorgy/components/_navbar.scss
|
369
|
+
- assets/stylesheets/colorgy/components/_page_header.scss
|
370
|
+
- assets/stylesheets/colorgy/components/_pager.scss
|
371
|
+
- assets/stylesheets/colorgy/components/_pagination.scss
|
372
|
+
- assets/stylesheets/colorgy/components/_panel.scss
|
373
|
+
- assets/stylesheets/colorgy/components/_progress_bar.scss
|
374
|
+
- assets/stylesheets/colorgy/components/_thumbnail.scss
|
375
|
+
- assets/stylesheets/colorgy/components/_toast.scss
|
376
|
+
- assets/stylesheets/colorgy/components/_well.scss
|
351
377
|
- assets/stylesheets/colorgy/core/_base.scss
|
352
378
|
- assets/stylesheets/colorgy/core/_config.scss
|
353
379
|
- assets/stylesheets/colorgy/core/_fonts.scss
|
354
380
|
- assets/stylesheets/colorgy/core/_grid.scss
|
355
381
|
- assets/stylesheets/colorgy/core/_helpers.scss
|
382
|
+
- assets/stylesheets/colorgy/core/_tools.scss
|
356
383
|
- assets/stylesheets/colorgy/layouts/.keep
|
384
|
+
- assets/stylesheets/colorgy/layouts/_default.scss
|
357
385
|
- assets/stylesheets/colorgy/main.scss
|
358
|
-
- assets/stylesheets/colorgy/structures
|
386
|
+
- assets/stylesheets/colorgy/structures/_jumbotron.scss
|
387
|
+
- assets/stylesheets/vendor/animate.scss
|
359
388
|
- bin/console
|
360
389
|
- bin/server
|
361
390
|
- bin/setup
|
@@ -372,7 +401,26 @@ files:
|
|
372
401
|
- styleguide/layouts/default.erb
|
373
402
|
- styleguide/layouts/layout.erb
|
374
403
|
- styleguide/styleblocks/.keep
|
404
|
+
- styleguide/styleblocks/_alert.html.erb
|
405
|
+
- styleguide/styleblocks/_badge.html.erb
|
406
|
+
- styleguide/styleblocks/_breadcrumb.html.erb
|
375
407
|
- styleguide/styleblocks/_button.html.erb
|
408
|
+
- styleguide/styleblocks/_button_group.html.erb
|
409
|
+
- styleguide/styleblocks/_dropdown.html.erb
|
410
|
+
- styleguide/styleblocks/_input_group.html.erb
|
411
|
+
- styleguide/styleblocks/_label.html.erb
|
412
|
+
- styleguide/styleblocks/_list_group.html.erb
|
413
|
+
- styleguide/styleblocks/_media.html.erb
|
414
|
+
- styleguide/styleblocks/_nav.html.erb
|
415
|
+
- styleguide/styleblocks/_navbar.html.erb
|
416
|
+
- styleguide/styleblocks/_page_header.html.erb
|
417
|
+
- styleguide/styleblocks/_pager.html.erb
|
418
|
+
- styleguide/styleblocks/_pagination.html.erb
|
419
|
+
- styleguide/styleblocks/_panel.html.erb
|
420
|
+
- styleguide/styleblocks/_progress_bar.html.erb
|
421
|
+
- styleguide/styleblocks/_thumbnail.html.erb
|
422
|
+
- styleguide/styleblocks/_toast.html.erb
|
423
|
+
- styleguide/styleblocks/_well.html.erb
|
376
424
|
- styleguide/stylesheets/all.css
|
377
425
|
- styleguide/stylesheets/styleguide/_prism.css
|
378
426
|
- styleguide/stylesheets/styleguide/styles.scss
|
@@ -400,3 +448,4 @@ signing_key:
|
|
400
448
|
specification_version: 4
|
401
449
|
summary: The front-end bundle and style guide for Colorgy.
|
402
450
|
test_files: []
|
451
|
+
has_rdoc:
|
File without changes
|