sass-zero 0.0.39 → 0.0.40

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
  SHA256:
3
- metadata.gz: 3fad3bc286fc20abe0b9cdc927e140aeb64783dcc4a63821d2aa7a639b5aee25
4
- data.tar.gz: 9331bd31086517f71e6b608422fd13de0895e7a93d8b6c7b8f1c63c227cbfdee
3
+ metadata.gz: 4c1618f19a592e556e232f98069655ba71d5627c3b9a329412eec047515fb0ce
4
+ data.tar.gz: '085a4f0596a1b83213ebb14faf1575574ffcc985a497002f1d753b9e1ee556c1'
5
5
  SHA512:
6
- metadata.gz: 92abdda324b6fc82bff7be29bb6d9496bec0e77ce31d66faa8ae88e58a546bc6f58fbc5f79c3afa8c48888055dd9d33d8d28d6e8154cdc18f6bf91b7b7a5d9e3
7
- data.tar.gz: f2af2f664a855e868d9b10dce45eb0fd9402859b3c361d30711a0f5f96ef62f876c2ee7db1ad24b3d1920f975c3daea2308937de0b5ffe72a862bf61c9f0cf0a
6
+ metadata.gz: 422213f88a6e53076c21fab195d233b1ac131d02235e7229d01fd04804195bfc3cc45299c5ed178c24c5a6cce914d475264c75cd4ab919c3e2b5238ac9cc31a2
7
+ data.tar.gz: 28a3d5da494a2dd64a5ae588a397ee3cd21303ca5600267b774140009ea02f58fac16a9f868a53aed07d84e8678ff22f5f19a6cd90650c1b9c35a27b6f99c542
@@ -22,7 +22,7 @@
22
22
 
23
23
  <hr>
24
24
 
25
- <form class="push-md--bottom">
25
+ <form class="push-lg--bottom">
26
26
  <div class="push-md--bottom">
27
27
  <label for="nameField">Name</label>
28
28
  <input type="text" placeholder="CJ Patoilo" id="nameField" class="input">
@@ -26,7 +26,7 @@ blockquote {
26
26
  padding: $size-2 $size-4;
27
27
  cursor: pointer;
28
28
 
29
- &:disabled, &.disabled {
29
+ &:disabled {
30
30
  pointer-events: none;
31
31
  opacity: $opacity-50;
32
32
  }
@@ -65,8 +65,8 @@ pre {
65
65
 
66
66
  & > code {
67
67
  border-radius: $rounded-none;
68
- display: block;
69
- padding: $size-2 $size-3;
68
+ display: block;
69
+ padding: $size-2 $size-3;
70
70
  white-space: pre;
71
71
  }
72
72
  }
@@ -83,7 +83,7 @@ hr {
83
83
  width: $size-full;
84
84
 
85
85
  &--select {
86
- background-image: url('data:image/svg+xml,<svg viewBox="0 0 20 20" fill="silver" xmlns="http://www.w3.org/2000/svg"><path d="M10 3a1 1 0 01.707.293l3 3a1 1 0 01-1.414 1.414L10 5.414 7.707 7.707a1 1 0 01-1.414-1.414l3-3A1 1 0 0110 3zm-3.707 9.293a1 1 0 011.414 0L10 14.586l2.293-2.293a1 1 0 011.414 1.414l-3 3a1 1 0 01-1.414 0l-3-3a1 1 0 010-1.414z"></path></svg>');
86
+ background-image: url('data:image/svg+xml,<svg viewBox="0 0 20 20" fill="silver" xmlns="http://www.w3.org/2000/svg"><path d="M10 3a1 1 0 01.707.293l3 3a1 1 0 01-1.414 1.414L10 5.414 7.707 7.707a1 1 0 01-1.414-1.414l3-3A1 1 0 0110 3zm-3.707 9.293a1 1 0 011.414 0L10 14.586l2.293-2.293a1 1 0 011.414 1.414l-3 3a1 1 0 01-1.414 0l-3-3a1 1 0 010-1.414z"></path></svg>');
87
87
  background-position: right $size-2 center;
88
88
  background-repeat: no-repeat;
89
89
  background-size: auto $size-5;
@@ -117,7 +117,7 @@ hr {
117
117
  &:focus { @include focus; }
118
118
  }
119
119
 
120
- label, legend {
120
+ label, legend, dt {
121
121
  display: inline-block;
122
122
  margin-bottom: $size-1;
123
123
  }
@@ -135,19 +135,15 @@ ol {
135
135
  }
136
136
 
137
137
  h1, h2, h3, h4, h5, h6, .hdg {
138
- margin-bottom: $size-2;
139
- }
140
-
141
- dd {
142
- margin-bottom: $size-2;
138
+ margin-bottom: $size-4;
143
139
  }
144
140
 
145
141
  fieldset, .input {
146
- margin-bottom: $size-4;
142
+ margin-bottom: $size-6;
147
143
  }
148
144
 
149
145
  blockquote, figure, p, pre, table, ul, ol, dl {
150
- margin-bottom: $size-4;
146
+ margin-bottom: $size-6;
151
147
  }
152
148
 
153
149
  table {
@@ -1,10 +1,20 @@
1
1
  @import "sass-zero/variables/breakpoints";
2
+ @import "sass-zero/variables/effects";
2
3
  @import "sass-zero/mixins";
3
4
 
4
5
  .u-full-width {
5
6
  width: 100%;
6
7
  }
7
8
 
9
+ .u-min-width {
10
+ min-width: 0;
11
+ }
12
+
13
+ .u-disabled {
14
+ pointer-events: none;
15
+ opacity: $opacity-50;
16
+ }
17
+
8
18
  .u-unscrollable {
9
19
  overflow: hidden;
10
20
  }
@@ -27,7 +37,7 @@
27
37
 
28
38
  .u-centered {
29
39
  margin-right: auto;
30
- margin-left: auto;
40
+ margin-left: auto;
31
41
  }
32
42
 
33
43
  .u-clearfix {
@@ -1,4 +1,5 @@
1
1
  @import "sass-zero/variables/spacing";
2
+ @import "sass-zero/mixins";
2
3
 
3
4
  .list--unindented {
4
5
  padding-left: $size-8;
@@ -8,8 +9,16 @@
8
9
  list-style: none;
9
10
  }
10
11
 
11
- .list--inline li {
12
- margin-bottom: $size-0;
13
- margin-right: $size-2;
12
+ .list--spaced {
13
+ @include space-y($size-2);
14
+ }
15
+
16
+ .list--ruled > li {
17
+ padding: $size-3 $size-4;
18
+ border-top-width: $border;
19
+ }
20
+
21
+ .list--inline > li {
22
+ margin-right: $size-2;
14
23
  display: inline-block;
15
24
  }
@@ -106,3 +106,14 @@
106
106
  .align--right {
107
107
  text-align: right;
108
108
  }
109
+
110
+ .decorated {
111
+ color: $blue-800;
112
+ text-decoration: underline;
113
+ }
114
+
115
+ .decorated--subtle {
116
+ color: $gray-700;
117
+ font-weight: $font-normal;
118
+ &:hover { text-decoration: underline; }
119
+ }
@@ -1,5 +1,5 @@
1
1
  module Sass
2
2
  module Zero
3
- VERSION = "0.0.39"
3
+ VERSION = "0.0.40"
4
4
  end
5
5
  end
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sass-zero",
3
- "version": "0.0.39",
3
+ "version": "0.0.40",
4
4
  "description": "A CSS framework for rapid UI development based on tailwindcss, miligram and BEM.",
5
5
  "homepage": "https://github.com/lazaronixon/sass-zero",
6
6
  "repository": "lazaronixon/sass-zero",
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sass-zero
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.39
4
+ version: 0.0.40
5
5
  platform: ruby
6
6
  authors:
7
7
  - lazaronixon
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-17 00:00:00.000000000 Z
11
+ date: 2020-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: autoprefixer-rails