@utrecht/component-library-css 1.0.0-alpha.332 → 1.0.0-alpha.333

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 +40 -1
  2. package/package.json +2 -2
package/dist/index.css CHANGED
@@ -2601,8 +2601,15 @@ however browsers don't seem to have implemented great looking supixel tweening y
2601
2601
  * @license EUPL-1.2
2602
2602
  * Copyright (c) 2021 Gemeente Utrecht
2603
2603
  */
2604
+ /**
2605
+ * @license EUPL-1.2
2606
+ * Copyright (c) 2021 Gemeente Utrecht
2607
+ * Copyright (c) 2021 Robbert Broersma
2608
+ */
2609
+ /* stylelint-disable-next-line block-no-empty */
2604
2610
  .utrecht-link-social {
2605
2611
  --utrecht-icon-size: var(--utrecht-link-social-icon-size);
2612
+ --utrecht-icon-color: currentColor;
2606
2613
  align-items: center;
2607
2614
  background-color: var(--utrecht-link-social-background-color);
2608
2615
  border-color: var(--utrecht-link-social-border-color);
@@ -2613,14 +2620,46 @@ however browsers don't seem to have implemented great looking supixel tweening y
2613
2620
  display: inline-flex;
2614
2621
  height: var(--utrecht-link-social-size);
2615
2622
  justify-content: center;
2616
- text-align: center;
2617
2623
  width: var(--utrecht-link-social-size);
2618
2624
  }
2619
2625
 
2626
+ .utrecht-link-social:hover {
2627
+ transform: scale(var(--utrecht-link-social-hover-scale));
2628
+ }
2629
+
2630
+ .utrecht-link-social:focus-visible {
2631
+ box-shadow: 0 0 0 var(--utrecht-focus-box-shadow-spread-radius, 0) var(--utrecht-focus-box-shadow-color, transparent);
2632
+ outline-color: var(--utrecht-focus-outline-color, transparent);
2633
+ outline-offset: var(--utrecht-focus-outline-offset, 0);
2634
+ outline-style: var(--utrecht-focus-outline-style, solid);
2635
+ outline-width: var(--utrecht-focus-outline-width, 0);
2636
+ }
2637
+
2620
2638
  .utrecht-link-social--distanced {
2621
2639
  margin-inline-start: var(--utrecht-link-social-margin-inline-start);
2622
2640
  }
2623
2641
 
2642
+ /**
2643
+ * @license EUPL-1.2
2644
+ * Copyright (c) 2021 The Knights Who Say NIH! B.V.
2645
+ * Copyright (c) 2021 Gemeente Utrecht
2646
+ */
2647
+ .utrecht-list-social {
2648
+ display: flex;
2649
+ margin-block-end: var(--utrecht-list-social-margin-block-end);
2650
+ margin-block-start: var(--utrecht-list-social-margin-block-start);
2651
+ padding-inline-end: var(--utrecht-list-social-padding-inline-end);
2652
+ padding-inline-start: var(--utrecht-list-social-padding-inline-start);
2653
+ }
2654
+
2655
+ .utrecht-list-social__item {
2656
+ list-style-type: none;
2657
+ margin-inline-end: var(--utrecht-list-social-item-margin-inline-end);
2658
+ }
2659
+ .utrecht-list-social__item:last-child {
2660
+ margin-inline-end: 0;
2661
+ }
2662
+
2624
2663
  /**
2625
2664
  * @license EUPL-1.2
2626
2665
  * Copyright (c) 2021 The Knights Who Say NIH! B.V.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.0-alpha.332",
2
+ "version": "1.0.0-alpha.333",
3
3
  "author": "Community for NL Design System",
4
4
  "description": "Component library bundle for the Municipality of Utrecht based on the NL Design System architecture",
5
5
  "license": "EUPL-1.2",
@@ -26,5 +26,5 @@
26
26
  "clean": "rimraf dist/"
27
27
  },
28
28
  "main": "dist/index.css",
29
- "gitHead": "f4b233616da6c7fcf43a46a9908f6b56141c3424"
29
+ "gitHead": "daeb79236feddd37dcc9147d34b96955577cee90"
30
30
  }