baseline-scss 0.3.0 → 0.3.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9755d89b7b2d330d040774fd5989a2238d978db2abf8e8c101a4022d6f92d877
4
- data.tar.gz: 9dfc6ae6d7ac0567c0429e2504dff8f7dc72b672c2757c5f2ccaa53a5a4261b1
3
+ metadata.gz: e48b5f45c2753571692f1e89ad8c0c475d1cb1ee410de5db9b0dabd440876237
4
+ data.tar.gz: 8699e04814f358a44d953ffc7f709de4a848ccbd7e5376bd93a0616ce62741f9
5
5
  SHA512:
6
- metadata.gz: 5e039450b77684a327d072edbd14ba6aa3eda1a0abd5b15d7b4f15ca36823579141894d2aeed93aeaaadd47e514206a8671ee69b4c761cb4b1332defe47dc670
7
- data.tar.gz: 26c8ace3bfc321f7324025f9f2b94e7c0c5ca5ad200165eceedb262b503f690019e7d1874d3f724ef05560437ecce3c93a9ac6019144e7d3120a446631092dba
6
+ metadata.gz: 9de06aebbebb8951a25502ada6a24962e73714fb40e5f1a26d18edba482ed10702d7b705bcc7e8096ae3c2f095b57a7a64e80b214d42cc04dc9f1f4dee3dd455
7
+ data.tar.gz: c2fa489c3acbb8ec16f0a247a89c517e492d4d80c289f3544181af88a281b3812b2eea1865a1f34e2e6e9f31704703f356d1ab4c3d174e543d680749a021fb2c
@@ -1,3 +1,3 @@
1
1
  module BaselineScss
2
- VERSION = '0.3.0'.freeze
2
+ VERSION = '0.3.1'.freeze
3
3
  end
data/src/_reboot.scss CHANGED
@@ -23,7 +23,7 @@
23
23
  @include outline();
24
24
  }
25
25
  // Don't outline elements that programmatically receive focus but wouldn't normally show an outline.
26
- [tabindex="-1"]:focus:not(:focus-visible) {
26
+ [tabindex='-1']:focus:not(:focus-visible) {
27
27
  outline: 0 !important;
28
28
  }
29
29
 
@@ -119,12 +119,26 @@ textarea {
119
119
  }
120
120
  }
121
121
 
122
- [role="button"] {
122
+ [role='button'] {
123
123
  cursor: pointer; // Set the cursor for non-`<button>` buttons.
124
124
  }
125
125
 
126
- [type="search"] {
126
+ [type='search'] {
127
127
  outline-offset: -.2rem;
128
+
129
+ &::-ms-clear,
130
+ &::-ms-reveal {
131
+ display: none;
132
+ height: 0;
133
+ width : 0;
134
+ }
135
+
136
+ &::-webkit-search-decoration,
137
+ &::-webkit-search-cancel-button,
138
+ &::-webkit-search-results-button,
139
+ &::-webkit-search-results-decoration {
140
+ display: none;
141
+ }
128
142
  }
129
143
 
130
144
  output {
@@ -162,15 +176,6 @@ textarea {
162
176
  padding: 0;
163
177
  }
164
178
 
165
- // Lists
166
- dt {
167
- font-weight: bold;
168
- }
169
-
170
- dd {
171
- margin-left: 0;
172
- }
173
-
174
179
  // Multimedia
175
180
  audio,
176
181
  canvas,
@@ -10,6 +10,14 @@ dl dl {
10
10
  margin-left: var(--dl_margin_l);
11
11
  }
12
12
 
13
+ dt {
14
+ font-weight: var(--font_weight_bold);
15
+ }
16
+
17
+ dd {
18
+ margin-left: 0;
19
+ }
20
+
13
21
  ol, ul {
14
22
  padding-left: var(--list_padding_l);
15
23
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: baseline-scss
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Susco
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-16 00:00:00.000000000 Z
11
+ date: 2023-02-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake