@deque/cauldron-styles 5.0.0 → 5.1.0-canary.1b78de48

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 +84 -23
  2. package/package.json +2 -2
package/dist/index.css CHANGED
@@ -8,6 +8,7 @@
8
8
  /* color palette */
9
9
  --white: #ffffff;
10
10
  --dark-workspace-color: #53636e;
11
+ --stroke-light: #b3bfc6;
11
12
  --stroke-dark: #5d676f;
12
13
  --gray-10: #fdfdfe;
13
14
  --gray-20: #f2f2f2;
@@ -36,7 +37,7 @@
36
37
  --accent-primary-active: #316091;
37
38
  --accent-secondary: var(--gray-20);
38
39
  --accent-secondary-active: var(--gray-30);
39
- --focus-light: #c11bde;
40
+ --focus-light: #b51ad1;
40
41
  --focus-dark: #eb94ff;
41
42
  --issue-critical: var(--accent-danger);
42
43
  --issue-serious: var(--accent-warning);
@@ -50,6 +51,9 @@
50
51
  --header-text-color: var(--gray-80);
51
52
  --header-text-color-dark: var(--gray-90);
52
53
 
54
+ /* background colours */
55
+ --background-light: #f0f2f5;
56
+
53
57
  /* accents */
54
58
  --error: var(--accent-error);
55
59
  --disabled: var(--gray-40);
@@ -66,6 +70,7 @@
66
70
 
67
71
  /* spacing (padding/margin) */
68
72
  --space-smallest: 8px;
73
+ --space-smaller: 12px;
69
74
  --space-small: 16px;
70
75
  --space-medium: 18px;
71
76
  --space-large: 24px;
@@ -81,6 +86,7 @@
81
86
  --text-size-larger: 56px;
82
87
  --text-size-large: 45px;
83
88
  --text-size-large-medium: 34px;
89
+ --text-size-medium-large: 32px;
84
90
  --text-size-medium: 24px;
85
91
  --text-small-medium: 20px;
86
92
  --text-size-normal: 18px;
@@ -88,6 +94,9 @@
88
94
  --text-size-smaller: 13px;
89
95
  --text-size-smallest: 12px;
90
96
 
97
+ /* fonts */
98
+ --base-font-family: 'Roboto', Helvetica, Arial, sans-serif;
99
+
91
100
  /* font weight */
92
101
  --font-weight-thin: 100;
93
102
  --font-weight-light: 300;
@@ -96,6 +105,9 @@
96
105
  --font-weight-bold: 700;
97
106
  --font-weight-ultra-bold: 900;
98
107
 
108
+ /* icon sizes */
109
+ --icon-size: 24px;
110
+
99
111
  /* dimensions */
100
112
  --border-width: 6px;
101
113
  --layout-padding: 9px;
@@ -151,7 +163,7 @@ html {
151
163
  }
152
164
 
153
165
  body {
154
- font-family: 'Roboto', Helvetica, Arial, sans-serif;
166
+ font-family: var(--base-font-family);
155
167
  font-style: normal;
156
168
  font-weight: 400;
157
169
  color: var(--text-color-base);
@@ -187,6 +199,11 @@ ul {
187
199
  padding: 0;
188
200
  }
189
201
 
202
+ button {
203
+ font-family: var(--base-font-family);
204
+ font-weight: 500;
205
+ }
206
+
190
207
  button,
191
208
  [role='button'] {
192
209
  display: inline-block;
@@ -936,8 +953,8 @@ a.IconButton {
936
953
  }
937
954
 
938
955
  .Dialog__close svg {
939
- height: 24px;
940
- width: 24px;
956
+ height: var(--icon-size);
957
+ width: var(--icon-size);
941
958
  }
942
959
 
943
960
  .Dialog__content {
@@ -1199,8 +1216,8 @@ a.IconButton {
1199
1216
  .Pointout__dismiss .Icon svg,
1200
1217
  .Pointout__next .Icon svg,
1201
1218
  .Pointout__previous .Icon svg {
1202
- height: 24px;
1203
- width: 24px;
1219
+ height: var(--icon-size);
1220
+ width: var(--icon-size);
1204
1221
  }
1205
1222
 
1206
1223
  .Pointout__dismiss:hover {
@@ -1823,7 +1840,7 @@ textarea.Field--has-error:focus:hover,
1823
1840
 
1824
1841
  :root {
1825
1842
  --link-text-color: var(--gray-90);
1826
- --link-text-color-hover: var(--accent-primary);
1843
+ --link-text-color-hover: #3873a3;
1827
1844
  --link-text-color-light: rgba(60, 122, 174, 0.1);
1828
1845
  }
1829
1846
 
@@ -1856,7 +1873,7 @@ p .Link {
1856
1873
  margin: 0 2px;
1857
1874
  display: inline;
1858
1875
  text-decoration: underline;
1859
- color: var(--gray-90);
1876
+ color: var(--link-text-color);
1860
1877
  font-weight: var(--font-weight-normal);
1861
1878
  }
1862
1879
 
@@ -1944,7 +1961,8 @@ p .Link {
1944
1961
  }
1945
1962
 
1946
1963
  .OptionsMenu__list-item:focus {
1947
- box-shadow: inset 0 0 0 2px var(--focus);
1964
+ box-shadow: inset 0 0 0 1px var(--options-menu-hover-background-color),
1965
+ inset 0 0 0 3px var(--focus);
1948
1966
  }
1949
1967
 
1950
1968
  .OptionsMenu__list-item[aria-disabled='true'] {
@@ -2024,7 +2042,8 @@ p .Link {
2024
2042
 
2025
2043
  .Field__select--wrapper {
2026
2044
  position: relative;
2027
- min-width: var(--select-width);
2045
+ width: var(--select-width);
2046
+ max-width: 100%;
2028
2047
  }
2029
2048
 
2030
2049
  .arrow-down {
@@ -2403,6 +2422,8 @@ p .Link {
2403
2422
  .Toast {
2404
2423
  top: var(--top-bar-height);
2405
2424
  position: fixed;
2425
+ right: 0;
2426
+ left: 0;
2406
2427
  color: #0b0e11;
2407
2428
  font-size: var(--text-size-small);
2408
2429
  z-index: var(--z-index-toast);
@@ -2410,8 +2431,11 @@ p .Link {
2410
2431
  box-sizing: border-box;
2411
2432
  display: flex;
2412
2433
  padding: 4px 15px;
2413
- right: 0;
2414
- left: 0;
2434
+ }
2435
+
2436
+ .Toast.Toast--non-dismissible {
2437
+ position: static;
2438
+ margin-bottom: var(--space-small);
2415
2439
  }
2416
2440
 
2417
2441
  .TopBar--thin .Toast {
@@ -2519,6 +2543,8 @@ p .Link {
2519
2543
  border-radius: 3px;
2520
2544
  z-index: var(--z-index-tooltip);
2521
2545
  text-align: center;
2546
+ max-width: calc(100vw - 16px);
2547
+ word-break: break-word;
2522
2548
  }
2523
2549
 
2524
2550
  .Tooltip--hidden {
@@ -3078,12 +3104,26 @@ button.TooltipTabstop {
3078
3104
 
3079
3105
  .Code.hljs {
3080
3106
  display: block;
3081
- overflow-x: auto;
3082
3107
  padding: 0.5em;
3083
3108
  background: var(--gray-20);
3084
3109
  color: var(--gray-90);
3085
3110
  border: 1px solid var(--gray-40);
3086
3111
  color: var(--accent-primary-active);
3112
+ word-break: anywhere;
3113
+ }
3114
+
3115
+ .Code--scrollable {
3116
+ overflow-x: auto;
3117
+ }
3118
+
3119
+ .Code code {
3120
+ /* important needed to override inline styles */
3121
+ white-space: break-spaces !important;
3122
+ }
3123
+
3124
+ .Code--scrollable code {
3125
+ /* important needed to override inline styles */
3126
+ white-space: pre !important;
3087
3127
  }
3088
3128
 
3089
3129
  .Code .hljs-comment {
@@ -3388,11 +3428,10 @@ button.TooltipTabstop {
3388
3428
  font-size: var(--text-size-smaller);
3389
3429
  border: 1px solid var(--tag-border-color);
3390
3430
  border-radius: 11px;
3391
- display: flex;
3431
+ display: inline-flex;
3392
3432
  justify-content: center;
3393
3433
  align-items: center;
3394
3434
  padding: 2px 8px;
3395
- width: 90px;
3396
3435
  font-weight: var(--font-weight-medium);
3397
3436
  }
3398
3437
 
@@ -3470,7 +3509,6 @@ button.TooltipTabstop {
3470
3509
  outline-offset: unset;
3471
3510
  }
3472
3511
 
3473
- .TableHeader,
3474
3512
  .TableHeader--sort-ascending,
3475
3513
  .TableHeader--sort-descending {
3476
3514
  background: var(--table-header-sorting-background-color);
@@ -3623,6 +3661,7 @@ button.TooltipTabstop {
3623
3661
  color: var(--data-list-value-text-color);
3624
3662
  background-color: var(--data-list-value-background-color);
3625
3663
  font-weight: var(--font-weight-normal);
3664
+ word-break: break-word;
3626
3665
  }
3627
3666
 
3628
3667
  .DescriptionList__term,
@@ -3781,10 +3820,11 @@ button.TooltipTabstop {
3781
3820
  --panel-border-color: var(--gray-40);
3782
3821
  --panel-background-color: var(--white);
3783
3822
  --panel-heading-color: var(--gray-90);
3823
+ --panel-padding: var(--space-small);
3784
3824
  }
3785
3825
 
3786
3826
  .Panel {
3787
- padding: var(--space-small);
3827
+ padding: var(--panel-padding);
3788
3828
  border: 1px solid var(--panel-border-color);
3789
3829
  border-radius: 3px;
3790
3830
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
@@ -3813,7 +3853,7 @@ fieldset.Panel {
3813
3853
  }
3814
3854
 
3815
3855
  .Panel--collapsed {
3816
- padding: 12px;
3856
+ --panel-padding: 12px;
3817
3857
  }
3818
3858
 
3819
3859
  .Panel--collapsed .Panel__Heading {
@@ -3937,6 +3977,18 @@ fieldset.Panel {
3937
3977
  transition: background-color 0.3s ease;
3938
3978
  }
3939
3979
 
3980
+ .NavBar > ul > .NavItem {
3981
+ font-weight: var(--font-weight-normal);
3982
+ }
3983
+
3984
+ .NavBar > ul > .NavItem--active {
3985
+ font-weight: var(--font-weight-medium);
3986
+ }
3987
+
3988
+ .NavBar > ul > .NavItem a {
3989
+ font-weight: inherit;
3990
+ }
3991
+
3940
3992
  .NavBar > ul > li:first-child:not(.NavBar__trigger) {
3941
3993
  border-left: 1px solid var(--top-nav-box-shadow-color);
3942
3994
  }
@@ -4165,7 +4217,8 @@ fieldset.Panel {
4165
4217
  }
4166
4218
 
4167
4219
  .Breadcrumb ol {
4168
- display: flex;
4220
+ display: block;
4221
+ word-break: break-all;
4169
4222
  align-items: center;
4170
4223
  list-style-type: none;
4171
4224
  padding: 0;
@@ -4180,11 +4233,13 @@ fieldset.Panel {
4180
4233
  .Breadcrumb__Link {
4181
4234
  font-weight: 400;
4182
4235
  padding: 0;
4236
+ display: inline;
4183
4237
  }
4184
4238
 
4185
4239
  .Breadcrumb__Item {
4186
4240
  font-weight: 500;
4187
4241
  color: var(--link-text-color);
4242
+ display: inline;
4188
4243
  }
4189
4244
 
4190
4245
  :root {
@@ -4222,13 +4277,15 @@ fieldset.Panel {
4222
4277
  }
4223
4278
 
4224
4279
  .TwoColumnPanel__Header {
4225
- padding: 0 var(--space-small);
4280
+ /* The -2px is to account for the borders that are outside of the element and will make it line up with the left panel when there's only one line of text */
4281
+ padding: calc(var(--space-small) - 2px);
4226
4282
  border-bottom: 1px solid var(--two-column-panel-border-color);
4227
- height: var(--two-column-panel-header-height);
4228
- line-height: var(--two-column-panel-header-height);
4283
+ min-height: var(--two-column-panel-header-height);
4229
4284
  font-weight: 500;
4230
4285
  color: var(--two-column-panel-header-text-color);
4231
4286
  flex: 1;
4287
+ display: flex;
4288
+ align-items: center;
4232
4289
  }
4233
4290
 
4234
4291
  .TwoColumnPanel__Left {
@@ -4365,12 +4422,16 @@ fieldset.Panel {
4365
4422
  margin-bottom: 0;
4366
4423
  }
4367
4424
 
4425
+ .TwoColumnPanel__ButtonToggle {
4426
+ display: flex;
4427
+ }
4428
+
4368
4429
  .TwoColumnPanel__ButtonToggle button,
4369
4430
  .TwoColumnPanel__Close button {
4370
4431
  background-color: transparent;
4371
4432
  border: none;
4372
4433
  border-bottom: 1px solid var(--two-column-panel-border-color);
4373
- height: var(--two-column-panel-header-height);
4434
+ min-height: var(--two-column-panel-header-height);
4374
4435
  width: var(--two-column-panel-header-height);
4375
4436
  }
4376
4437
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deque/cauldron-styles",
3
- "version": "5.0.0",
3
+ "version": "5.1.0-canary.1b78de48",
4
4
  "license": "MPL-2.0",
5
5
  "description": "deque cauldron pattern library styles",
6
6
  "repository": "https://github.com/dequelabs/cauldron",
@@ -22,4 +22,4 @@
22
22
  "postcss-cli": "^7.1.1",
23
23
  "postcss-import": "^12.0.1"
24
24
  }
25
- }
25
+ }