@deque/cauldron-styles 3.0.1-canary.dda42da8 → 3.0.1-canary.e98b9d24

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.
Files changed (2) hide show
  1. package/dist/index.css +11 -2
  2. package/package.json +1 -1
package/dist/index.css CHANGED
@@ -122,6 +122,11 @@
122
122
 
123
123
  .cauldron--theme-dark {
124
124
  --workspace-background-color: var(--dark-workspace-color);
125
+ color-scheme: dark;
126
+ }
127
+
128
+ .cauldron--theme-light {
129
+ color-scheme: light;
125
130
  }
126
131
 
127
132
  html {
@@ -210,7 +215,7 @@ p {
210
215
  padding: var(--layout-padding) var(--layout-padding) 0 var(--layout-padding);
211
216
  position: fixed;
212
217
  overflow-x: hidden;
213
- overflow-y: scroll;
218
+ overflow-y: auto;
214
219
  -webkit-overflow-scrolling: touch;
215
220
  right: 0;
216
221
  bottom: 0;
@@ -230,7 +235,7 @@ p {
230
235
 
231
236
  .Layout .Main:focus {
232
237
  outline: 0;
233
- border-left-color: var(--top-bar-background-color);
238
+ border-left-color: var(--gray-90);
234
239
  }
235
240
 
236
241
  /* the left-bar style focus indication */
@@ -294,6 +299,10 @@ p {
294
299
  color: var(--white);
295
300
  }
296
301
 
302
+ .cauldron--theme-dark .Layout .Main:focus {
303
+ border-left-color: var(--white);
304
+ }
305
+
297
306
  :root {
298
307
  --alert-warning-background-color: #d93251;
299
308
  --alert-warning-header-text-color: #fff;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deque/cauldron-styles",
3
- "version": "3.0.1-canary.dda42da8",
3
+ "version": "3.0.1-canary.e98b9d24",
4
4
  "license": "MPL-2.0",
5
5
  "description": "deque cauldron pattern library styles",
6
6
  "repository": "https://github.com/dequelabs/cauldron",