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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f22669fa7dd5a8be3608d9b3317d3f97d7784e28
4
- data.tar.gz: c34d495ab5d6e9ba199944b9160a6a607a7d613a
3
+ metadata.gz: 95732c9d6a30576edec4e7b828dd6213af668916
4
+ data.tar.gz: 1e871e7c30f5dd7489efd8477d6f3170f70c192e
5
5
  SHA512:
6
- metadata.gz: 7b7ec5f9e64f5675328aa73a9b8e028c3b4db586590e8aed76084db5f993e3ac8184a610bda4b3f385f38d2117be4f0526bb783739c938432d6a99ed46758ee4
7
- data.tar.gz: 4a19154359c3adf508d3be92df9c14b3b365a7f6ebdee3d573d5f2a8300425e680dcfc9f5e7c05d3c66c83b4b3c0a9a55f2bec037f739d25e00ecf1a16013b05
6
+ metadata.gz: e8eaa26154ae780f88aa42140dfdee54ac2709cdeeb1d0c9c25cd4ff0c2886e63e71c799fdf3cbfcaa18b1681bea05d67aae7fb13386a51ebbc70ed61a563d85
7
+ data.tar.gz: e6390265c763e8b8f1cabb2e8886f8aa015377c6354683e9cf5fda24a18dd8e5ff9e3cf86f1b7a7d71187eb37b2f9923d9e7272c3ae467756e74e6e755d66047
@@ -1,3 +1,3 @@
1
1
  module Dlegr250MaterialDesign
2
- VERSION = "0.4.79"
2
+ VERSION = "0.4.80"
3
3
  end
@@ -152,6 +152,7 @@ $colors: (
152
152
  "text" : rgb(51, 51, 51),
153
153
  "divider" : rgba(0, 0, 0, 0.12),
154
154
  "hover" : #f3f3f3,
155
+ "light-hover" : lighten(#f3f3f3, 2%),
155
156
  "snackbar" : #323232
156
157
  );
157
158
 
@@ -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";
@@ -50,9 +50,12 @@
50
50
  }
51
51
  }
52
52
 
53
+ // Above and below main text
54
+ .appbar-supertitle,
53
55
  .appbar-subtitle {
54
56
  color: $appbar-subtitle-color;
55
57
  font-size: $font-size-normal;
58
+ @include flex-parent-row;
56
59
  }
57
60
 
58
61
  // appbar - actions
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.79
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-20 00:00:00.000000000 Z
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
- }