@bi-digital/css 0.0.0-experimental-160e3ca → 0.0.0-experimental-822fd72

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.
@@ -89,6 +89,10 @@
89
89
  display: grid;
90
90
  }
91
91
 
92
+ .bi-field:has(.bi-input:-webkit-any([type="radio"], [type="checkbox"]))[data-fullwidth="true"] {
93
+ width: 100%;
94
+ }
95
+
92
96
  .bi-field:has(.bi-input:-webkit-any([type="radio"], [type="checkbox"])) > * {
93
97
  grid-column: content;
94
98
  margin-top: 0;
@@ -160,6 +164,10 @@
160
164
  display: grid;
161
165
  }
162
166
 
167
+ .bi-field:has(.bi-input:is([type="radio"], [type="checkbox"]))[data-fullwidth="true"] {
168
+ width: 100%;
169
+ }
170
+
163
171
  .bi-field:has(.bi-input:is([type="radio"], [type="checkbox"])) > * {
164
172
  grid-column: content;
165
173
  margin-top: 0;
@@ -31,6 +31,8 @@
31
31
  background: var(--bic-filter-group-background-color);
32
32
  cursor: pointer;
33
33
  border-radius: var(--bi-radius-small) var(--bi-radius-small) 0 0;
34
+ -webkit-user-select: none;
35
+ user-select: none;
34
36
  flex-direction: row;
35
37
  display: flex;
36
38
  }
@@ -64,7 +66,7 @@
64
66
 
65
67
  .bi-filter-group > div {
66
68
  gap: var(--bi-scale-2x);
67
- padding: var(--bi-scale-3x) 0 var(--bi-scale-8x);
69
+ padding: var(--bi-scale-2x) 0 var(--bi-scale-8x);
68
70
  flex-direction: column;
69
71
  display: none;
70
72
  }
@@ -73,10 +75,14 @@
73
75
  width: 100%;
74
76
  }
75
77
 
78
+ .bi-filter-group:last-of-type > div {
79
+ padding: var(--bi-scale-2x) 0;
80
+ }
81
+
76
82
  .bi-filter-group[data-expanded="true"] > button {
77
83
  --bic-filter-group-background-color: var(--bic-filter-group-background-color-expanded);
78
84
  border-radius: var(--bi-radius-small);
79
- border-bottom: none;
85
+ border-bottom-color: #0000;
80
86
  }
81
87
 
82
88
  .bi-filter-group[data-expanded="true"] > div {
@@ -91,6 +91,12 @@
91
91
  display: flex;
92
92
  }
93
93
 
94
+ @media not (min-width: 600px) {
95
+ .bi-footer .bi-footer--accreditations {
96
+ gap: var(--bi-scale-1x);
97
+ }
98
+ }
99
+
94
100
  .bi-footer .bi-footer--accreditations .bi-footer--aacsb {
95
101
  background-position: center;
96
102
  background-repeat: no-repeat;
@@ -44,6 +44,10 @@
44
44
  --bic-link-color: var(--bi-neutral-5);
45
45
  }
46
46
 
47
+ .bi-link[data-underline="hover"]:not(:hover) {
48
+ text-decoration: none;
49
+ }
50
+
47
51
  .bi-link:visited {
48
52
  color: var(--bic-link-color);
49
53
  }
@@ -35,7 +35,7 @@
35
35
  }
36
36
 
37
37
  .bi-navbar[data-fixed="true"] > header {
38
- z-index: 100;
38
+ z-index: 110;
39
39
  position: fixed;
40
40
  top: 0;
41
41
  left: 0;
@@ -1,5 +1,5 @@
1
1
  .bi-sticky-header {
2
- z-index: 101;
2
+ z-index: 100;
3
3
  position: -webkit-sticky;
4
4
  position: sticky;
5
5
  }
@@ -23,7 +23,7 @@
23
23
  }
24
24
 
25
25
  .bi-sub-navbar--wrapper .bi-sub-navbar[data-fixed="true"] {
26
- z-index: 101;
26
+ z-index: 120;
27
27
  position: fixed;
28
28
  }
29
29
 
@@ -1445,6 +1445,10 @@ body:has(.bi-dialog:modal) {
1445
1445
  display: grid;
1446
1446
  }
1447
1447
 
1448
+ .bi-field:has(.bi-input:-webkit-any([type="radio"], [type="checkbox"]))[data-fullwidth="true"] {
1449
+ width: 100%;
1450
+ }
1451
+
1448
1452
  .bi-field:has(.bi-input:-webkit-any([type="radio"], [type="checkbox"])) > * {
1449
1453
  grid-column: content;
1450
1454
  margin-top: 0;
@@ -1516,6 +1520,10 @@ body:has(.bi-dialog:modal) {
1516
1520
  display: grid;
1517
1521
  }
1518
1522
 
1523
+ .bi-field:has(.bi-input:is([type="radio"], [type="checkbox"]))[data-fullwidth="true"] {
1524
+ width: 100%;
1525
+ }
1526
+
1519
1527
  .bi-field:has(.bi-input:is([type="radio"], [type="checkbox"])) > * {
1520
1528
  grid-column: content;
1521
1529
  margin-top: 0;
@@ -1752,6 +1760,8 @@ body:has(.bi-dialog:modal) {
1752
1760
  background: var(--bic-filter-group-background-color);
1753
1761
  cursor: pointer;
1754
1762
  border-radius: var(--bi-radius-small) var(--bi-radius-small) 0 0;
1763
+ -webkit-user-select: none;
1764
+ user-select: none;
1755
1765
  flex-direction: row;
1756
1766
  display: flex;
1757
1767
  }
@@ -1785,7 +1795,7 @@ body:has(.bi-dialog:modal) {
1785
1795
 
1786
1796
  .bi-filter-group > div {
1787
1797
  gap: var(--bi-scale-2x);
1788
- padding: var(--bi-scale-3x) 0 var(--bi-scale-8x);
1798
+ padding: var(--bi-scale-2x) 0 var(--bi-scale-8x);
1789
1799
  flex-direction: column;
1790
1800
  display: none;
1791
1801
  }
@@ -1794,10 +1804,14 @@ body:has(.bi-dialog:modal) {
1794
1804
  width: 100%;
1795
1805
  }
1796
1806
 
1807
+ .bi-filter-group:last-of-type > div {
1808
+ padding: var(--bi-scale-2x) 0;
1809
+ }
1810
+
1797
1811
  .bi-filter-group[data-expanded="true"] > button {
1798
1812
  --bic-filter-group-background-color: var(--bic-filter-group-background-color-expanded);
1799
1813
  border-radius: var(--bi-radius-small);
1800
- border-bottom: none;
1814
+ border-bottom-color: #0000;
1801
1815
  }
1802
1816
 
1803
1817
  .bi-filter-group[data-expanded="true"] > div {
@@ -1897,6 +1911,12 @@ body:has(.bi-dialog:modal) {
1897
1911
  display: flex;
1898
1912
  }
1899
1913
 
1914
+ @media not (min-width: 600px) {
1915
+ .bi-footer .bi-footer--accreditations {
1916
+ gap: var(--bi-scale-1x);
1917
+ }
1918
+ }
1919
+
1900
1920
  .bi-footer .bi-footer--accreditations .bi-footer--aacsb {
1901
1921
  background-position: center;
1902
1922
  background-repeat: no-repeat;
@@ -2381,6 +2401,10 @@ body:has(.bi-dialog:modal) {
2381
2401
  --bic-link-color: var(--bi-neutral-5);
2382
2402
  }
2383
2403
 
2404
+ .bi-link[data-underline="hover"]:not(:hover) {
2405
+ text-decoration: none;
2406
+ }
2407
+
2384
2408
  .bi-link:visited {
2385
2409
  color: var(--bic-link-color);
2386
2410
  }
@@ -2512,7 +2536,7 @@ body:has(.bi-dialog:modal) {
2512
2536
  }
2513
2537
 
2514
2538
  .bi-navbar[data-fixed="true"] > header {
2515
- z-index: 100;
2539
+ z-index: 110;
2516
2540
  position: fixed;
2517
2541
  top: 0;
2518
2542
  left: 0;
@@ -2544,7 +2568,7 @@ body:has(.bi-dialog:modal) {
2544
2568
  }
2545
2569
 
2546
2570
  .bi-sub-navbar--wrapper .bi-sub-navbar[data-fixed="true"] {
2547
- z-index: 101;
2571
+ z-index: 120;
2548
2572
  position: fixed;
2549
2573
  }
2550
2574
 
@@ -2776,7 +2800,7 @@ body:has(.bi-dialog:modal) {
2776
2800
  }
2777
2801
 
2778
2802
  .bi-sticky-header {
2779
- z-index: 101;
2803
+ z-index: 100;
2780
2804
  position: -webkit-sticky;
2781
2805
  position: sticky;
2782
2806
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bi-digital/css",
3
- "version": "0.0.0-experimental-160e3ca",
3
+ "version": "0.0.0-experimental-822fd72",
4
4
  "description": "CSS for the BI Design System",
5
5
  "author": "BI Digital",
6
6
  "license": "ISC",
@@ -23,7 +23,7 @@
23
23
  "lightningcss": "^1.30.1",
24
24
  "modern-normalize": "^3.0.1",
25
25
  "rimraf": "^6.0.1",
26
- "@bi-digital/tokens": "0.0.0-experimental-160e3ca"
26
+ "@bi-digital/tokens": "0.0.0-experimental-822fd72"
27
27
  },
28
28
  "scripts": {
29
29
  "build": "rimraf dist && node config.js",