dlegr250_material_design 0.3.60 → 0.3.61

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: 9224df7a49b01470f9b4df41a0688e8299908d94
4
- data.tar.gz: 29fcdffc12f3efd842b92304636f34afa328f880
3
+ metadata.gz: 0d3bab326954116701bccc4e1df19fa7d62cde65
4
+ data.tar.gz: df31d2a30f6e3ceb94e813eeed36338ace4b0dc2
5
5
  SHA512:
6
- metadata.gz: b1c9d2de800f348cd4db834211b4f83bcc1fd85bbc8a4d7f643981608445c4c6401c690bf0fcac77587f7a4bdf5f32b91c68d56b0227118a416221f3169e3796
7
- data.tar.gz: fab3ef440a946861f00c5c3528d9b3a64b0cda487fa172ed8d10fdbeb048ac2f3d3bea65ff332d462ef7705d5d449a23faafb57b0c5f3eed833908c9f146bbdb
6
+ metadata.gz: 47fbdcaacb28b4b11a534e0df2e62dfb3d306aa783864456bfa5bb0a87ccb5b3f428cdd717f031ca14e0a4f65119a4e02969571d9bf9168adda45a0dd37c9048
7
+ data.tar.gz: e7b3b4e518c38de9df8aeca6846ce46840f569bd858babe3e42065d2450b4efaf4b15695137c0e5bf51fc89034ad9a9b046c479d2b1cc4f880ed6d46f4521112
@@ -1,3 +1,3 @@
1
1
  module Dlegr250MaterialDesign
2
- VERSION = "0.3.60"
2
+ VERSION = "0.3.61"
3
3
  end
@@ -129,6 +129,7 @@ $colors: (
129
129
  "light-purple" : lighten(#673ab7, 47%),
130
130
  "indigo" : #3f51b5,
131
131
  "light-blue" : #03a9f4,
132
+ "github-light-blue" : #f2f8fa,
132
133
  "cyan" : #00bcd4,
133
134
  "teal" : #009688,
134
135
  "green" : #4caf50,
@@ -0,0 +1,64 @@
1
+ //======================================================================
2
+ // EXAMPLE:
3
+ // <div class="dl dl-responsive">
4
+ // <div class="dl-row">
5
+ // <div class="dl-dt">Term</div>
6
+ // <div class="dl-dd">Description...</div>
7
+ // </div>
8
+ // </div>
9
+ //======================================================================
10
+
11
+ // Description lists using custom DIV elements
12
+ // Note that native DL/DD/DT elements have forced browser styles
13
+ //----------------------------------------------------------------------
14
+
15
+ .dl-title {
16
+ border-bottom: 1px solid color("divider");
17
+ font-weight: bold;
18
+ margin-bottom: $spacing-xsmall;
19
+ padding-bottom: $spacing-xsmall;
20
+ }
21
+
22
+ .dl-row {
23
+ padding: $spacing-small 0;
24
+ }
25
+
26
+ .dl .dl-row:first-child {
27
+ padding-top: 0;
28
+ }
29
+
30
+ .dl .dl-row:last-child {
31
+ padding-bottom: 0;
32
+ }
33
+
34
+ .dl-dt {
35
+ color: color("helper");
36
+ display: block;
37
+
38
+ &:after {
39
+ content: ": ";
40
+ }
41
+ }
42
+
43
+ .dl-dd {
44
+ display: block;
45
+ padding-top: $spacing-xsmall;
46
+ }
47
+
48
+ @media (min-width: $medium-width) {
49
+ .dl-responsive {
50
+ .dl-row {
51
+ padding: 2px 0;
52
+ }
53
+
54
+ .dl-dt {
55
+ display: inline-block;
56
+ padding-right: $spacing-small;
57
+ width: 150px;
58
+ }
59
+
60
+ .dl-dd {
61
+ display: inline-block;
62
+ }
63
+ }
64
+ }
@@ -214,3 +214,23 @@ ol {
214
214
  }
215
215
  }
216
216
  }
217
+
218
+ // Links in list items
219
+ //----------------------------------------------------------------------
220
+
221
+ .list-item-primary-link {
222
+ color: color("text");
223
+ font-weight: bold;
224
+
225
+ &:hover {
226
+ color: color("primary");
227
+ }
228
+ }
229
+
230
+ .list-item-primary-subtext-link {
231
+ color: color("text");
232
+
233
+ &:hover {
234
+ color: color("primary");
235
+ }
236
+ }
@@ -44,7 +44,8 @@
44
44
  @import "components/overlay";
45
45
  @import "components/panels";
46
46
  @import "components/lists";
47
- @import "components/definition_lists";
47
+ @import "components/definition_lists"; // DEPRECATE SOON
48
+ @import "components/description_lists";
48
49
  @import "components/tooltips";
49
50
  @import "components/grids";
50
51
  @import "components/tables";
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.3.60
4
+ version: 0.3.61
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel LeGrand
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-09-14 00:00:00.000000000 Z
11
+ date: 2016-09-15 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
@@ -64,6 +64,7 @@ files:
64
64
  - vendor/assets/stylesheets/components/cards.scss
65
65
  - vendor/assets/stylesheets/components/circles.scss
66
66
  - vendor/assets/stylesheets/components/definition_lists.scss
67
+ - vendor/assets/stylesheets/components/description_lists.scss
67
68
  - vendor/assets/stylesheets/components/dialogs.scss
68
69
  - vendor/assets/stylesheets/components/dividers.scss
69
70
  - vendor/assets/stylesheets/components/forms/fields.scss