q2-tecton-theme 1.19.1 → 1.21.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "q2-tecton-theme",
3
- "version": "1.19.1",
3
+ "version": "1.21.0",
4
4
  "description": "Default theme for tecton",
5
5
  "main": "./dist/q2-tecton-theme.css",
6
6
  "publishConfig": {
@@ -21,5 +21,5 @@
21
21
  "rollup-plugin-scss": "^3.0.0",
22
22
  "rollup-plugin-serve": "^2.0.1"
23
23
  },
24
- "gitHead": "e5d3146aa5c51414bdcb60647ce2ff6aca8ba9ac"
24
+ "gitHead": "069e74b96c5bb7919b896f89ed7165624339a80c"
25
25
  }
@@ -40,6 +40,8 @@
40
40
  --t-base: #ffffff;
41
41
  --t-text: #4d4d4d;
42
42
  --t-textA: rgba(77, 77, 77, 0.77);
43
+ --t-a11y-gray-color-AA: #949494;
44
+ --t-a11y-active-gray-color-AA: #404040;
43
45
  --t-primary-text: #ffffff;
44
46
  --t-secondary-text: #141414;
45
47
  --t-tertiary-text: #141414;
@@ -50,7 +52,7 @@
50
52
  --t-gray-5: #404040;
51
53
  --t-gray-6: #4d4d4d;
52
54
  --t-gray-7: #666666;
53
- --t-gray-8: gray;
55
+ --t-gray-8: #808080;
54
56
  --t-gray-9: #999999;
55
57
  --t-gray-10: #b3b3b3;
56
58
  --t-gray-11: #cccccc;
@@ -12,7 +12,7 @@
12
12
  @mixin h1() {
13
13
  font-weight: var(--app-h1-font-weight, 400);
14
14
  font-size: var(--app-h1-font-size-small, 25px);
15
- letter-spacing: var(--app-h1-letter-spacing);
15
+ letter-spacing: var(--app-h1-letter-spacing, normal);
16
16
  @include breakpoint(sm) {
17
17
  font-size: var(--app-h1-font-size, 29px);
18
18
  }
@@ -28,15 +28,15 @@
28
28
  @mixin h3() {
29
29
  font-size: var(--app-h3-font-size, 17px);
30
30
  font-weight: var(--app-h3-font-weight, 600);
31
- text-transform: var(--app-h3-text-transform);
32
- letter-spacing: var(--app-h3-letter-spacing);
31
+ text-transform: var(--app-h3-text-transform, none);
32
+ letter-spacing: var(--app-h3-letter-spacing, normal);
33
33
  }
34
34
 
35
35
  @mixin h4() {
36
36
  font-size: var(--app-h4-font-size, 14px);
37
37
  font-weight: var(--app-h4-font-weight, 600);
38
- text-transform: var(--app-h4-text-transform);
39
- letter-spacing: var(--app-h4-letter-spacing);
38
+ text-transform: var(--app-h4-text-transform, none);
39
+ letter-spacing: var(--app-h4-letter-spacing, normal);
40
40
  }
41
41
 
42
42
  h1,
@@ -88,10 +88,11 @@ h6,
88
88
  p {
89
89
  font-size: var(--app-font-size, 14px);
90
90
  font-weight: 400;
91
- line-height: 1.5;
91
+ line-height: var(--app-line-height, 1.428571429em);
92
92
  }
93
93
 
94
94
  small,
95
+ .small,
95
96
  .small-copy {
96
97
  font-size: var(--app-font-size-small, 12px);
97
98
  font-weight: 400;
@@ -108,8 +109,3 @@ small,
108
109
  .bold {
109
110
  font-weight: 700;
110
111
  }
111
-
112
- .empty-state,
113
- .no-history {
114
- font-style: italic;
115
- }