dlegr250_material_design 0.4.79 → 0.4.80
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/dlegr250_material_design/version.rb +1 -1
- data/vendor/assets/stylesheets/base/variables.scss +1 -0
- data/vendor/assets/stylesheets/components/progress_bar.scss +9 -0
- data/vendor/assets/stylesheets/dlegr250_material_design.scss +1 -1
- data/vendor/assets/stylesheets/layouts/application/appbar.scss +3 -0
- metadata +3 -3
- data/vendor/assets/stylesheets/components/definition_lists.scss +0 -44
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 95732c9d6a30576edec4e7b828dd6213af668916
|
4
|
+
data.tar.gz: 1e871e7c30f5dd7489efd8477d6f3170f70c192e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e8eaa26154ae780f88aa42140dfdee54ac2709cdeeb1d0c9c25cd4ff0c2886e63e71c799fdf3cbfcaa18b1681bea05d67aae7fb13386a51ebbc70ed61a563d85
|
7
|
+
data.tar.gz: e6390265c763e8b8f1cabb2e8886f8aa015377c6354683e9cf5fda24a18dd8e5ff9e3cf86f1b7a7d71187eb37b2f9923d9e7272c3ae467756e74e6e755d66047
|
@@ -0,0 +1,9 @@
|
|
1
|
+
//======================================================================
|
2
|
+
// Turbolinks adds a progress bar; at very top of application.
|
3
|
+
//======================================================================
|
4
|
+
|
5
|
+
.turbolinks-progress-bar {
|
6
|
+
background-color: darken(color("primary"), 20%) !important;
|
7
|
+
height: 5px !important;
|
8
|
+
visibility: visible;
|
9
|
+
}
|
@@ -47,8 +47,8 @@
|
|
47
47
|
@import "components/dialogs";
|
48
48
|
@import "components/overlay";
|
49
49
|
@import "components/panels";
|
50
|
+
@import "components/progress_bar";
|
50
51
|
@import "components/lists";
|
51
|
-
@import "components/definition_lists"; // DEPRECATE SOON
|
52
52
|
@import "components/description_lists";
|
53
53
|
@import "components/tooltips";
|
54
54
|
@import "components/grids";
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dlegr250_material_design
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.80
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel LeGrand
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-01-
|
11
|
+
date: 2017-01-24 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: 'WARNING: ALPHA CODE, NOT PRODUCTION READY. ACTIVELY UNDER DEVELOPMENT
|
14
14
|
AS OF AUG 2016. Implement Google Material Design spec with modern browsers in mind
|
@@ -66,7 +66,6 @@ files:
|
|
66
66
|
- vendor/assets/stylesheets/components/buttons.scss
|
67
67
|
- vendor/assets/stylesheets/components/cards.scss
|
68
68
|
- vendor/assets/stylesheets/components/circles.scss
|
69
|
-
- vendor/assets/stylesheets/components/definition_lists.scss
|
70
69
|
- vendor/assets/stylesheets/components/description_lists.scss
|
71
70
|
- vendor/assets/stylesheets/components/dialogs.scss
|
72
71
|
- vendor/assets/stylesheets/components/dividers.scss
|
@@ -87,6 +86,7 @@ files:
|
|
87
86
|
- vendor/assets/stylesheets/components/menus.scss
|
88
87
|
- vendor/assets/stylesheets/components/overlay.scss
|
89
88
|
- vendor/assets/stylesheets/components/panels.scss
|
89
|
+
- vendor/assets/stylesheets/components/progress_bar.scss
|
90
90
|
- vendor/assets/stylesheets/components/snackbars.scss
|
91
91
|
- vendor/assets/stylesheets/components/spinners.scss
|
92
92
|
- vendor/assets/stylesheets/components/subheaders.scss
|
@@ -1,44 +0,0 @@
|
|
1
|
-
//======================================================================
|
2
|
-
// EXAMPLE:
|
3
|
-
//======================================================================
|
4
|
-
|
5
|
-
// Definition list
|
6
|
-
//----------------------------------------------------------------------
|
7
|
-
|
8
|
-
.definition-list {
|
9
|
-
width: 100%;
|
10
|
-
|
11
|
-
caption {
|
12
|
-
border-bottom: 2px solid color("text");
|
13
|
-
font-weight: bold;
|
14
|
-
padding: $spacing-xsmall 0;
|
15
|
-
text-align: left;
|
16
|
-
}
|
17
|
-
|
18
|
-
tr {
|
19
|
-
border-bottom: 1px solid color("divider");
|
20
|
-
}
|
21
|
-
}
|
22
|
-
|
23
|
-
// Definition list - children
|
24
|
-
//----------------------------------------------------------------------
|
25
|
-
|
26
|
-
.definition-list-term,
|
27
|
-
.definition-list-description {
|
28
|
-
padding: $spacing-xsmall 0;
|
29
|
-
vertical-align: top;
|
30
|
-
}
|
31
|
-
|
32
|
-
// Definition list - term
|
33
|
-
//----------------------------------------------------------------------
|
34
|
-
|
35
|
-
.definition-list-term {
|
36
|
-
color: color("helper");
|
37
|
-
padding-right: $spacing-small;
|
38
|
-
}
|
39
|
-
|
40
|
-
// Definition list - description
|
41
|
-
//----------------------------------------------------------------------
|
42
|
-
|
43
|
-
.definition-list-description {
|
44
|
-
}
|