@primer/css 18.2.0-rc.cc99e801 → 19.0.0-rc.1bd2ddff

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 (89) hide show
  1. package/CHANGELOG.md +21 -1
  2. package/base/normalize.scss +1 -1
  3. package/box/box-overlay.scss +40 -0
  4. package/box/index.scss +1 -0
  5. package/color-modes/index.scss +1 -0
  6. package/color-modes/themes/dark.scss +2 -2
  7. package/color-modes/themes/dark_colorblind.scss +2 -2
  8. package/color-modes/themes/dark_dimmed.scss +2 -2
  9. package/color-modes/themes/dark_high_contrast.scss +2 -2
  10. package/color-modes/themes/light.scss +2 -2
  11. package/color-modes/themes/light_colorblind.scss +2 -2
  12. package/color-modes/themes/light_high_contrast.scss +7 -0
  13. package/deprecations.json +4 -0
  14. package/dist/actionlist.css.map +1 -1
  15. package/dist/alerts.css.map +1 -1
  16. package/dist/autocomplete.css.map +1 -1
  17. package/dist/avatars.css.map +1 -1
  18. package/dist/base.css +1 -1
  19. package/dist/base.css.map +1 -1
  20. package/dist/blankslate.css.map +1 -1
  21. package/dist/box.css +1 -1
  22. package/dist/box.css.map +1 -1
  23. package/dist/branch-name.css.map +1 -1
  24. package/dist/breadcrumb.css.map +1 -1
  25. package/dist/buttons.css.map +1 -1
  26. package/dist/color-modes.css +1 -1
  27. package/dist/color-modes.css.map +1 -1
  28. package/dist/core.css +1 -1
  29. package/dist/core.css.map +1 -1
  30. package/dist/deprecations.json +4 -0
  31. package/dist/dropdown.css.map +1 -1
  32. package/dist/forms.css.map +1 -1
  33. package/dist/header.css.map +1 -1
  34. package/dist/labels.css +1 -1
  35. package/dist/labels.css.map +1 -1
  36. package/dist/layout.css +1 -1
  37. package/dist/layout.css.map +1 -1
  38. package/dist/links.css.map +1 -1
  39. package/dist/loaders.css.map +1 -1
  40. package/dist/markdown.css.map +1 -1
  41. package/dist/marketing-buttons.css +1 -1
  42. package/dist/marketing-buttons.css.map +1 -1
  43. package/dist/marketing-type.css.map +1 -1
  44. package/dist/marketing-utilities.css.map +1 -1
  45. package/dist/marketing.css +1 -1
  46. package/dist/marketing.css.map +1 -1
  47. package/dist/meta.json +46 -59
  48. package/dist/navigation.css.map +1 -1
  49. package/dist/pagination.css.map +1 -1
  50. package/dist/popover.css.map +1 -1
  51. package/dist/primer.css +4 -4
  52. package/dist/primer.css.map +1 -1
  53. package/dist/product.css +1 -1
  54. package/dist/product.css.map +1 -1
  55. package/dist/progress.css.map +1 -1
  56. package/dist/select-menu.css.map +1 -1
  57. package/dist/stats/base.json +1 -1
  58. package/dist/stats/box.json +1 -1
  59. package/dist/stats/color-modes.json +1 -1
  60. package/dist/stats/core.json +1 -1
  61. package/dist/stats/labels.json +1 -1
  62. package/dist/stats/layout.json +1 -1
  63. package/dist/stats/marketing-buttons.json +1 -1
  64. package/dist/stats/marketing.json +1 -1
  65. package/dist/stats/primer.json +1 -1
  66. package/dist/stats/product.json +1 -1
  67. package/dist/subhead.css.map +1 -1
  68. package/dist/timeline.css.map +1 -1
  69. package/dist/toasts.css.map +1 -1
  70. package/dist/tooltips.css.map +1 -1
  71. package/dist/truncate.css.map +1 -1
  72. package/dist/utilities.css.map +1 -1
  73. package/dist/variables.json +62 -62
  74. package/index.scss +4 -4
  75. package/labels/labels.scss +0 -1
  76. package/marketing/buttons/button.scss +95 -53
  77. package/marketing/buttons/index.scss +2 -2
  78. package/marketing/support/index.scss +2 -3
  79. package/marketing/support/variables.scss +4 -5
  80. package/marketing/type/index.scss +2 -2
  81. package/marketing/type/typography.scss +23 -23
  82. package/marketing/utilities/index.scss +5 -5
  83. package/marketing/utilities/layout.scss +1 -1
  84. package/package.json +9 -9
  85. package/support/mixins/layout.scss +5 -5
  86. package/support/mixins/misc.scss +1 -1
  87. package/support/variables/layout.scss +7 -9
  88. package/support/variables/typography.scss +1 -1
  89. package/marketing/support/mixins.scss +0 -66
@@ -10,7 +10,6 @@
10
10
  .label, // TODO: Deprecte
11
11
  .Label {
12
12
  @include labels-base;
13
- background-color: transparent !important; // TODO: Remove again
14
13
  border-color: var(--color-border-default);
15
14
 
16
15
  &:hover {
@@ -2,95 +2,137 @@
2
2
  position: relative;
3
3
  z-index: 1;
4
4
  display: inline-block;
5
- appearance: none !important;
6
5
  // stylelint-disable-next-line primer/spacing
7
6
  padding: 0.9rem 1.5rem 1.1rem;
8
7
  // stylelint-disable-next-line primer/typography
9
8
  font-size: 1rem;
10
9
  font-weight: $font-weight-bold;
11
10
  line-height: 1;
11
+ color: var(--color-canvas-default);
12
+ text-align: center;
12
13
  white-space: nowrap;
13
14
  vertical-align: middle;
14
15
  user-select: none;
16
+ background: linear-gradient(180deg, rgba(255 255 255 / 0.15) 0%, rgba(255 255 255 / 0) 100%), var(--color-mktg-btn-bg) !important;
15
17
  border: 0;
16
18
  // stylelint-disable-next-line primer/borders
17
19
  border-radius: 0.375rem;
18
-
19
- @include btn-solid-mktg(
20
- var(--color-mktg-btn-text),
21
- var(--color-mktg-btn-bg-top),
22
- var(--color-mktg-btn-bg-bottom),
23
- var(--color-mktg-btn-bg-overlay-top),
24
- var(--color-mktg-btn-bg-overlay-bottom),
25
- );
20
+ transition: box-shadow 0.2s;
21
+ appearance: none !important;
26
22
 
27
23
  &::before {
28
- background-blend-mode: overlay, normal;
29
24
  position: absolute;
30
25
  top: 0;
31
26
  right: 0;
32
27
  bottom: 0;
33
28
  left: 0;
34
29
  z-index: -1;
35
- content: "";
36
- // stylelint-disable-next-line primer/borders
37
- border-radius: 0.375rem;
30
+ content: '';
31
+ // stylelint-disable-next-line primer/colors
32
+ background: linear-gradient(180deg, rgba(255 255 255 / 0.15) 0%, rgba(255 255 255 / 0) 100%) !important;
33
+ border-radius: inherit;
38
34
  opacity: 0;
39
- transition: opacity 0.4s;
35
+ opacity: 0;
36
+ transition: opacity 0.2s;
37
+ background-blend-mode: normal;
40
38
  }
41
39
 
42
40
  &:hover {
43
- text-decoration: none;
41
+ box-shadow: var(--color-mktg-btn-shadow-hover) !important;
42
+ }
44
43
 
44
+ &:focus,
45
+ &.focus {
46
+ outline: 0;
47
+ box-shadow: var(--color-mktg-btn-shadow-focus), var(--color-mktg-btn-shadow-hover) !important;
48
+ }
49
+
50
+ &:hover,
51
+ &:focus,
52
+ &.focus {
45
53
  &::before {
46
54
  opacity: 1;
47
- transition: opacity 0.4s;
55
+ }
56
+
57
+ &:disabled {
58
+ box-shadow: none !important;
48
59
  }
49
60
  }
50
- }
51
61
 
52
- .btn-primary-mktg {
53
- @include btn-solid-mktg(
54
- var(--color-mktg-btn-primary-text),
55
- var(--color-mktg-btn-primary-bg-top),
56
- var(--color-mktg-btn-primary-bg-bottom),
57
- var(--color-mktg-btn-primary-bg-overlay-top),
58
- var(--color-mktg-btn-primary-bg-overlay-bottom),
59
- );
62
+ &:active {
63
+ outline: none;
64
+ // stylelint-disable-next-line primer/box-shadow
65
+ box-shadow: 0 0 0 transparent;
66
+
67
+ &::before {
68
+ opacity: 0.5 !important;
69
+ }
70
+ }
60
71
  }
61
72
 
62
- .btn-enterprise-mktg {
63
- @include btn-solid-mktg(
64
- var(--color-mktg-btn-enterprise-text),
65
- var(--color-mktg-btn-enterprise-bg-top),
66
- var(--color-mktg-btn-enterprise-bg-bottom),
67
- var(--color-mktg-btn-enterprise-bg-overlay-top),
68
- var(--color-mktg-btn-enterprise-bg-overlay-bottom),
69
- );
73
+ .btn-muted-mktg {
74
+ color: var(--color-fg-default) !important;
75
+ background: none !important;
76
+ box-shadow: var(--color-mktg-btn-shadow-outline);
77
+
78
+ &::before {
79
+ display: none;
80
+ }
81
+
82
+ &:hover {
83
+ box-shadow: var(--color-mktg-btn-shadow-hover-muted) !important;
84
+ }
85
+
86
+ &:focus,
87
+ &.focus {
88
+ box-shadow: var(--color-mktg-btn-shadow-hover-muted), var(--color-mktg-btn-shadow-focus) !important;
89
+ }
90
+
91
+ &:active {
92
+ // stylelint-disable-next-line primer/box-shadow
93
+ box-shadow: var(--color-fg-default) 0 0 0 3px inset !important;
94
+ }
95
+
96
+ &:disabled {
97
+ // stylelint-disable-next-line primer/box-shadow
98
+ box-shadow: var(--color-fg-subtle) 0 0 0 1px inset !important;
99
+ }
70
100
  }
71
101
 
72
- .btn-outline-mktg {
73
- @include btn-outline-mktg(
74
- var(--color-mktg-btn-outline-text),
75
- var(--color-mktg-btn-outline-hover-text),
76
- var(--color-mktg-btn-outline-border),
77
- var(--color-mktg-btn-outline-hover-border),
78
- var(--color-mktg-btn-outline-focus-border),
79
- var(--color-mktg-btn-outline-focus-border-inset)
80
- );
81
- transition: box-shadow 0.4s, color 0.4s;
102
+ .btn-subtle-mktg {
103
+ color: var(--color-fg-default) !important;
104
+ background: none !important;
105
+ box-shadow: none !important;
106
+
107
+ &::before {
108
+ background: none !important;
109
+ }
110
+
111
+ &:hover {
112
+ box-shadow: var(--color-mktg-btn-shadow-hover-muted) !important;
113
+ }
114
+
115
+ &:focus,
116
+ .focus {
117
+ box-shadow: var(--color-mktg-btn-shadow-hover-muted), var(--color-mktg-btn-shadow-focus) !important;
118
+ }
82
119
  }
83
120
 
84
- .btn-transparent {
85
- @include btn-outline-mktg(
86
- var(--color-mktg-btn-dark-text),
87
- var(--color-mktg-btn-dark-hover-text),
88
- var(--color-mktg-btn-dark-border),
89
- var(--color-mktg-btn-dark-hover-border),
90
- var(--color-mktg-btn-dark-focus-border),
91
- var(--color-mktg-btn-dark-focus-border-inset)
92
- );
93
- transition: box-shadow 0.4s, color 0.4s;
121
+ .btn-signup-mktg {
122
+ // stylelint-disable-next-line primer/colors
123
+ color: #fff;
124
+ // stylelint-disable-next-line primer/colors
125
+ background: linear-gradient(180deg, rgba(52, 183, 89, 0.15) 0%, rgba(46, 164, 79, 0) 100%), rgb(46, 164, 79) !important;
126
+
127
+ &::before {
128
+ // stylelint-disable-next-line primer/colors
129
+ background: linear-gradient(180deg, rgba(52, 183, 89, 0.15) 0%, rgba(46, 164, 79, 0) 100%) !important;
130
+ }
131
+
132
+ &:focus {
133
+ // stylelint-disable-next-line primer/box-shadow
134
+ box-shadow: rgba(46, 164, 79, 0.45) 0 0 0 4px !important;
135
+ }
94
136
  }
95
137
 
96
138
  // Size modifiers
@@ -1,3 +1,3 @@
1
1
  // support files
2
- @import "../support/index.scss";
3
- @import "./button.scss";
2
+ @import '../support/index.scss';
3
+ @import './button.scss';
@@ -1,3 +1,2 @@
1
- @import "../../support/index.scss";
2
- @import "./mixins.scss";
3
- @import "./variables.scss";
1
+ @import '../../support/index.scss';
2
+ @import './variables.scss';
@@ -1,6 +1,5 @@
1
- // stylelint-disable unit-no-unknown
2
1
  // Typography
3
- $marketing-font-path: "/fonts/" !default;
2
+ $marketing-font-path: '/fonts/' !default;
4
3
 
5
4
  $font-mktg: $body-font !default;
6
5
  $font-weight-medium: 450 !default;
@@ -122,7 +121,7 @@ $transition-time: 0.4s !default;
122
121
  $ease-mktg: cubic-bezier(0.16, 1, 0.3, 1) !default;
123
122
 
124
123
  $marketing-position-variants: (
125
- "": "",
126
- md: "-md",
127
- lg: "-lg",
124
+ '': '',
125
+ md: '-md',
126
+ lg: '-lg',
128
127
  ) !default;
@@ -1,3 +1,3 @@
1
1
  // support files
2
- @import "../support/index.scss";
3
- @import "./typography.scss";
2
+ @import '../support/index.scss';
3
+ @import './typography.scss';
@@ -19,20 +19,20 @@
19
19
  $pairing-md: map-get($mktg-header-pairings, nth($sizes, 2));
20
20
  $pairing-lg: map-get($mktg-header-pairings, nth($sizes, 3));
21
21
 
22
- font-size: map-get($pairing, "size") !important;
23
- line-height: map-get($pairing, "lh") !important;
24
- @if (map-get($pairing, "size") >= $mktg-header-weight-threshold) { font-weight: $mktg-header-weight-large !important; }
22
+ font-size: map-get($pairing, 'size') !important;
23
+ line-height: map-get($pairing, 'lh') !important;
24
+ @if (map-get($pairing, 'size') >= $mktg-header-weight-threshold) { font-weight: $mktg-header-weight-large !important; }
25
25
 
26
26
  @if (nth($sizes, 1) != nth($sizes, 2)) {
27
27
  @include breakpoint(md) {
28
- font-size: map-get($pairing-md, "size") !important;
29
- line-height: map-get($pairing-md, "lh") !important;
28
+ font-size: map-get($pairing-md, 'size') !important;
29
+ line-height: map-get($pairing-md, 'lh') !important;
30
30
 
31
- @if (map-get($pairing-md, "size") >= $mktg-header-spacing-threshold and map-get($pairing, "size") < $mktg-header-spacing-threshold) {
31
+ @if (map-get($pairing-md, 'size') >= $mktg-header-spacing-threshold and map-get($pairing, 'size') < $mktg-header-spacing-threshold) {
32
32
  letter-spacing: $mktg-header-spacing-large !important;
33
33
  }
34
34
 
35
- @if (map-get($pairing-md, "size") >= $mktg-header-weight-threshold and map-get($pairing, "size") < $mktg-header-weight-threshold) {
35
+ @if (map-get($pairing-md, 'size') >= $mktg-header-weight-threshold and map-get($pairing, 'size') < $mktg-header-weight-threshold) {
36
36
  font-weight: $mktg-header-weight-large !important;
37
37
  }
38
38
  }
@@ -40,14 +40,14 @@
40
40
 
41
41
  @if (nth($sizes, 2) != nth($sizes, 3)) {
42
42
  @include breakpoint(lg) {
43
- font-size: map-get($pairing-lg, "size") !important;
44
- line-height: map-get($pairing-lg, "lh") !important;
43
+ font-size: map-get($pairing-lg, 'size') !important;
44
+ line-height: map-get($pairing-lg, 'lh') !important;
45
45
 
46
- @if (map-get($pairing-lg, "size") >= $mktg-header-spacing-threshold and map-get($pairing-md, "size") < $mktg-header-spacing-threshold) {
46
+ @if (map-get($pairing-lg, 'size') >= $mktg-header-spacing-threshold and map-get($pairing-md, 'size') < $mktg-header-spacing-threshold) {
47
47
  letter-spacing: $mktg-header-spacing-large !important;
48
48
  }
49
49
 
50
- @if (map-get($pairing-lg, "size") >= $mktg-header-weight-threshold and map-get($pairing-md, "size") < $mktg-header-weight-threshold) {
50
+ @if (map-get($pairing-lg, 'size') >= $mktg-header-weight-threshold and map-get($pairing-md, 'size') < $mktg-header-weight-threshold) {
51
51
  font-weight: $mktg-header-weight-large !important;
52
52
  }
53
53
  }
@@ -73,21 +73,21 @@
73
73
  $pairing-md: map-get($mktg-body-pairings, nth($sizes, 2));
74
74
  $pairing-lg: map-get($mktg-body-pairings, nth($sizes, 3));
75
75
 
76
- font-size: map-get($pairing, "size") !important;
77
- line-height: map-get($pairing, "lh") !important;
78
- @if (map-get($pairing, "size") >= $mktg-body-spacing-threshold) { letter-spacing: $mktg-body-spacing-large !important; }
79
- @if (map-get($pairing, "size") >= $mktg-body-weight-threshold) { font-weight: $font-weight-semibold; }
76
+ font-size: map-get($pairing, 'size') !important;
77
+ line-height: map-get($pairing, 'lh') !important;
78
+ @if (map-get($pairing, 'size') >= $mktg-body-spacing-threshold) { letter-spacing: $mktg-body-spacing-large !important; }
79
+ @if (map-get($pairing, 'size') >= $mktg-body-weight-threshold) { font-weight: $font-weight-semibold; }
80
80
 
81
81
  @if (nth($sizes, 1) != nth($sizes, 2)) {
82
82
  @include breakpoint(md) {
83
- font-size: map-get($pairing-md, "size") !important;
84
- line-height: map-get($pairing-md, "lh") !important;
83
+ font-size: map-get($pairing-md, 'size') !important;
84
+ line-height: map-get($pairing-md, 'lh') !important;
85
85
 
86
- @if (map-get($pairing-md, "size") >= $mktg-body-spacing-threshold and map-get($pairing, "size") < $mktg-body-spacing-threshold) {
86
+ @if (map-get($pairing-md, 'size') >= $mktg-body-spacing-threshold and map-get($pairing, 'size') < $mktg-body-spacing-threshold) {
87
87
  letter-spacing: $mktg-body-spacing-large !important;
88
88
  }
89
89
 
90
- @if (map-get($pairing-md, "size") >= $mktg-body-weight-threshold and map-get($pairing, "size") < $mktg-body-weight-threshold) {
90
+ @if (map-get($pairing-md, 'size') >= $mktg-body-weight-threshold and map-get($pairing, 'size') < $mktg-body-weight-threshold) {
91
91
  font-weight: $font-weight-medium;
92
92
  }
93
93
  }
@@ -95,14 +95,14 @@
95
95
 
96
96
  @if (nth($sizes, 2) != nth($sizes, 3)) {
97
97
  @include breakpoint(lg) {
98
- font-size: map-get($pairing-lg, "size") !important;
99
- line-height: map-get($pairing-lg, "lh") !important;
98
+ font-size: map-get($pairing-lg, 'size') !important;
99
+ line-height: map-get($pairing-lg, 'lh') !important;
100
100
 
101
- @if (map-get($pairing-lg, "size") >= $mktg-body-spacing-threshold and map-get($pairing-md, "size") < $mktg-body-spacing-threshold) {
101
+ @if (map-get($pairing-lg, 'size') >= $mktg-body-spacing-threshold and map-get($pairing-md, 'size') < $mktg-body-spacing-threshold) {
102
102
  letter-spacing: $mktg-body-spacing-large !important;
103
103
  }
104
104
 
105
- @if (map-get($pairing-lg, "size") >= $mktg-body-weight-threshold and map-get($pairing-md, "size") < $mktg-body-weight-threshold) {
105
+ @if (map-get($pairing-lg, 'size') >= $mktg-body-weight-threshold and map-get($pairing-md, 'size') < $mktg-body-weight-threshold) {
106
106
  font-weight: $font-weight-medium;
107
107
  }
108
108
  }
@@ -1,6 +1,6 @@
1
- @import "../support/index.scss";
1
+ @import '../support/index.scss';
2
2
  // utilities
3
- @import "./animations.scss";
4
- @import "./borders.scss";
5
- @import "./filters.scss";
6
- @import "./layout.scss";
3
+ @import './animations.scss';
4
+ @import './borders.scss';
5
+ @import './filters.scss';
6
+ @import './layout.scss';
@@ -6,7 +6,7 @@
6
6
  @each $breakpoint, $variant in $marketing-position-variants {
7
7
  @include breakpoint($breakpoint) {
8
8
  @each $scale, $size in $spacer-map-extended {
9
- @if ($size != 0 or $variant != "") {
9
+ @if ($size != 0 or $variant != '') {
10
10
  .top#{$variant}-#{$scale} { top: $size !important; }
11
11
  .right#{$variant}-#{$scale} { right: $size !important; }
12
12
  .bottom#{$variant}-#{$scale} { bottom: $size !important; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@primer/css",
3
- "version": "18.2.0-rc.cc99e801",
3
+ "version": "19.0.0-rc.1bd2ddff",
4
4
  "description": "The CSS implementation of GitHub's Primer Design System",
5
5
  "homepage": "https://primer.style/css",
6
6
  "author": "GitHub, Inc.",
@@ -24,7 +24,7 @@
24
24
  ],
25
25
  "scripts": {
26
26
  "dist": "script/dist.js",
27
- "stylelint": "stylelint --quiet src/**/*.scss",
27
+ "stylelint": "stylelint --quiet 'src/**/*.scss'",
28
28
  "eslint": "eslint deprecations.js __tests__ script",
29
29
  "prepublishOnly": "script/prepublish",
30
30
  "start": "yarn dev",
@@ -35,19 +35,19 @@
35
35
  "storybook": "cd docs && yarn && yarn storybook"
36
36
  },
37
37
  "dependencies": {
38
- "@primer/primitives": "^6.1.0"
38
+ "@primer/primitives": "^7.1.0"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@changesets/changelog-github": "0.4.1",
42
- "@changesets/cli": "2.17.0",
42
+ "@changesets/cli": "2.18.0",
43
43
  "@github/prettier-config": "0.0.4",
44
44
  "@koddsson/postcss-sass": "5.0.0",
45
45
  "@primer/stylelint-config": "12.1.0",
46
46
  "autoprefixer": "10.4.0",
47
47
  "cssstats": "4.0.2",
48
- "eslint": "8.1.0",
49
- "eslint-plugin-github": "4.3.3",
50
- "eslint-plugin-jest": "25.2.2",
48
+ "eslint": "8.2.0",
49
+ "eslint-plugin-github": "4.3.4",
50
+ "eslint-plugin-jest": "25.2.4",
51
51
  "eslint-plugin-prettier": "4.0.0",
52
52
  "filesize": "8.0.6",
53
53
  "front-matter": "4.0.2",
@@ -63,9 +63,9 @@
63
63
  "postcss-simple-vars": "6.0.3",
64
64
  "prettier": "2.4.1",
65
65
  "semver": "7.3.5",
66
- "stylelint": "14.0.1",
66
+ "stylelint": "14.1.0",
67
67
  "stylelint-scss": "4.0.0",
68
- "table": "6.7.2"
68
+ "table": "6.7.3"
69
69
  },
70
70
  "jest": {
71
71
  "testEnvironment": "node",
@@ -1,7 +1,7 @@
1
1
  // Responsive media queries
2
2
 
3
3
  @mixin breakpoint($breakpoint) {
4
- @if $breakpoint == "" {
4
+ @if $breakpoint == '' {
5
5
  @content;
6
6
  }
7
7
 
@@ -19,8 +19,8 @@
19
19
 
20
20
  // If the key doesn't exist in the map
21
21
  @else {
22
- @warn "Unfortunately, no value could be retrieved from `#{$breakpoint}`. "
23
- + "Please make sure it is defined in `$breakpoints` map.";
22
+ @warn 'Unfortunately, no value could be retrieved from `#{$breakpoint}`. '
23
+ + 'Please make sure it is defined in `$breakpoints` map.';
24
24
  }
25
25
  }
26
26
  }
@@ -47,12 +47,12 @@
47
47
  @mixin clearfix {
48
48
  &::before {
49
49
  display: table;
50
- content: "";
50
+ content: '';
51
51
  }
52
52
 
53
53
  &::after {
54
54
  display: table;
55
55
  clear: both;
56
- content: "";
56
+ content: '';
57
57
  }
58
58
  }
@@ -10,7 +10,7 @@
10
10
  width: 8px;
11
11
  height: 16px;
12
12
  pointer-events: none;
13
- content: " ";
13
+ content: ' ';
14
14
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
15
15
  }
16
16
 
@@ -150,11 +150,11 @@ $breakpoints: (
150
150
  // breakpoints and create both responsive and non-responsive classes in one
151
151
  // loop:
152
152
  $responsive-variants: (
153
- "": "",
154
- sm: "-sm",
155
- md: "-md",
156
- lg: "-lg",
157
- xl: "-xl",
153
+ '': '',
154
+ sm: '-sm',
155
+ md: '-md',
156
+ lg: '-lg',
157
+ xl: '-xl',
158
158
  ) !default;
159
159
 
160
160
  // responive utility position values
@@ -169,14 +169,12 @@ $responsive-positions: (
169
169
  $sidebar-width: (
170
170
  sm: 220px,
171
171
  md: 256px,
172
- lg: 296px,
173
- xl: 320px
172
+ lg: 296px
174
173
  ) !default;
175
174
 
176
175
  $sidebar-narrow-width: (
177
176
  md: 240px,
178
- lg: 256px,
179
- xl: 296px
177
+ lg: 256px
180
178
  ) !default;
181
179
 
182
180
  $sidebar-wide-width: (
@@ -32,7 +32,7 @@ $lh-condensed: 1.25 !default;
32
32
  $lh-default: 1.5 !default;
33
33
 
34
34
  // Font stacks
35
- $body-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji" !default;
35
+ $body-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji' !default;
36
36
 
37
37
  // Monospace font stack
38
38
  // Note: SFMono-Regular needs to come before SF Mono to fix an older version of the font in Chrome
@@ -1,66 +0,0 @@
1
- @mixin btn-solid-mktg($color, $bg, $bg2, $bg3, $bg4) {
2
- color: $color;
3
- background-color: $bg2;
4
- background-image: linear-gradient(-180deg, $bg 0%, $bg2 100%);
5
-
6
- &::before {
7
- background-image: linear-gradient(-180deg, $bg3 0%, $bg4 100%);
8
- }
9
-
10
- &:hover,
11
- &.hover,
12
- &:active,
13
- &.selected,
14
- &[aria-selected=true],
15
- [open] > & {
16
- background-color: $bg2;
17
- background-image: linear-gradient(-180deg, $bg 0%, $bg2 100%);
18
- }
19
-
20
- &:focus,
21
- &.focus {
22
- outline: 0;
23
- box-shadow: 0 0 0 0.2em rgba($bg2, 0.4);
24
- }
25
-
26
- &:disabled,
27
- &.disabled,
28
- &[aria-disabled=true] {
29
- pointer-events: none;
30
- cursor: default;
31
- opacity: 0.5;
32
- }
33
- }
34
-
35
- @mixin btn-outline-mktg($color, $color2, $border, $borderHover, $borderFocus, $borderFocusInset) {
36
- color: $color;
37
- background: none;
38
- box-shadow: 0 0 0 1px $border inset;
39
-
40
- &::before {
41
- display: none;
42
- }
43
-
44
- &:hover,
45
- &.hover,
46
- &:active,
47
- &.selected,
48
- &[aria-selected=true],
49
- [open] > & {
50
- color: $color2;
51
- background: none;
52
- box-shadow: 0 0 0 2px $borderHover inset;
53
- }
54
-
55
- &:focus,
56
- &.focus {
57
- outline: 0;
58
- box-shadow: 0 0 0 2px $borderFocus inset, 0 0 0 4px $borderFocusInset;
59
- }
60
-
61
- &:disabled,
62
- &.disabled,
63
- &[aria-disabled=true] {
64
- opacity: 0.5;
65
- }
66
- }