@microsoft/atlas-css 3.63.0 → 3.65.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": "@microsoft/atlas-css",
3
- "version": "3.63.0",
3
+ "version": "3.65.0",
4
4
  "description": "Styles backing the Atlas Design System used by Microsoft's Developer Relations.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -3,7 +3,7 @@
3
3
  $quarter-widescreen: math.div($breakpoint-widescreen, 4);
4
4
  $half-widescreen: math.div($breakpoint-widescreen, 2);
5
5
  $three-quarters-widescreen: math.div($breakpoint-widescreen, 4) * 3;
6
- $default-flyout-width-desktop: 360px;
6
+ $default-flyout-width-desktop: 320px;
7
7
  $default-flyout-width-widescreen: 480px;
8
8
 
9
9
  :root {
@@ -38,6 +38,8 @@ $tag-border-color-primary: $primary-background-glow-high-contrast !default;
38
38
  $tag-interactive-divider-color-primary: $primary-box-shadow !default;
39
39
  $tag-interactive-color-primary-hover: $primary-dark-hover !default;
40
40
 
41
+ $tag-suggestion-radius: 8px !default;
42
+
41
43
  .tag {
42
44
  display: inline-flex;
43
45
  align-items: center;
@@ -210,3 +212,13 @@ $tag-interactive-color-primary-hover: $primary-dark-hover !default;
210
212
  }
211
213
  }
212
214
  }
215
+
216
+ .tag.tag-suggestion {
217
+ border-radius: $tag-suggestion-radius;
218
+
219
+ &:hover,
220
+ &.is-hovered {
221
+ background-color: $primary-background;
222
+ color: $primary-dark;
223
+ }
224
+ }