1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
(** CSS rule extraction from Tailwind utilities.
Converts modifier structures into CSS rules, handling all modifier types:
pseudo-classes, media queries, container queries, etc. *)
module Css = Cascade.Css
open Output
let string_of_breakpoint = function
| `Sm -> "sm"
| `Md -> "md"
| `Lg -> "lg"
| `Xl -> "xl"
| `Xl_2 -> "2xl"
let escape_class_name name =
let rendered = Css.Selector.to_string (Css.Selector.class_ name) in
if String.starts_with ~prefix:"." rendered then
String.sub rendered 1 (String.length rendered - 1)
else rendered
module Rules_selector = struct
let replace_class_with ~old_class ~replacement =
Css.Selector.map (function
| Css.Selector.Class cls when String.equal cls old_class -> replacement
| other -> other)
let replace_class_in_selector ~old_class ~new_class =
replace_class_with ~old_class ~replacement:(Css.Selector.Class new_class)
let modified_base_selector base_class =
let derived cls =
String.equal cls base_class
|| String.ends_with ~suffix:(":" ^ base_class) cls
&& String.length cls > String.length base_class + 1
in
let rec find sel =
match sel with
| Css.Selector.Class cls when derived cls -> Some cls
| Css.Selector.Compound sels
| Css.Selector.List sels
| Css.Selector.Is sels
| Css.Selector.Where sels
| Css.Selector.Not sels
| Css.Selector.Has sels ->
List.find_map find sels
| Css.Selector.Combined (a, _, b) -> (
match find a with Some _ as r -> r | None -> find b)
| Css.Selector.Relative (_, b) -> find b
| _ -> None
in
Option.value (find modified_base_selector) ~default:base_class
let rec is_complex_selector = function
| Css.Selector.Combined _ -> true
| Css.Selector.Compound sels | Css.Selector.List sels ->
List.exists is_complex_selector sels
| _ -> false
let rec append_to_end rest = function
| Css.Selector.Compound sels -> Css.Selector.Compound (sels @ rest)
| Css.Selector.Combined (a, comb, b) ->
Css.Selector.Combined (a, comb, append_to_end rest b)
| Css.Selector.Relative (comb, sel) ->
Css.Selector.Relative (comb, append_to_end rest sel)
| Css.Selector.List sels ->
Css.Selector.List (List.map (append_to_end rest) sels)
| simple -> Css.Selector.Compound (simple :: rest)
let is_class cls = function
| Css.Selector.Class c -> String.equal c cls
| _ -> false
let transform_selector_with_modifier modified_base_selector base_class
modified_class selector =
let replace_in_children =
replace_class_in_selector ~old_class:base_class ~new_class:modified_class
in
let substitute ~enclose =
if enclose && is_complex_selector modified_base_selector then
Css.Selector.is_ [ modified_base_selector ]
else modified_base_selector
in
let rec transform ~enclose ~descendant = function
| Css.Selector.Class cls when String.equal cls base_class ->
substitute ~enclose
| Css.Selector.Combined (base_sel, combinator, complex_sel) ->
Css.Selector.Combined
( transform ~enclose ~descendant base_sel,
combinator,
transform ~enclose:true ~descendant:true complex_sel )
| Css.Selector.Compound selectors
when List.exists (is_class base_class) selectors ->
let rest =
List.filter (fun sel -> not (is_class base_class sel)) selectors
|> List.map (transform ~enclose:true ~descendant)
in
append_to_end rest modified_base_selector
| Css.Selector.Compound selectors ->
Css.Selector.Compound
(List.map (transform ~enclose:true ~descendant) selectors)
| Css.Selector.List selectors ->
Css.Selector.List
(List.map (transform ~enclose ~descendant) selectors)
| Css.Selector.Is selectors ->
Css.Selector.Is
(List.map (transform ~enclose:false ~descendant:false) selectors)
| Css.Selector.Where selectors when not descendant ->
Css.Selector.Where
(List.map (transform ~enclose:false ~descendant) selectors)
| Css.Selector.Where _ as sel -> replace_in_children sel
| Css.Selector.Relative (comb, sel) ->
Css.Selector.Relative
(comb, transform ~enclose:true ~descendant:true sel)
| other -> other
in
transform ~enclose:false ~descendant:false selector
end
let breakpoint_rem = function
| `Sm -> 40.
| `Md -> 48.
| `Lg -> 64.
| `Xl -> 80.
| `Xl_2 -> 96.
let () =
List.iter
(fun bp ->
Scheme.register_default_token
("breakpoint-" ^ string_of_breakpoint bp)
(Css.Pp.to_string Css.pp_length (Css.Rem (breakpoint_rem bp))))
[ `Sm; `Md; `Lg; `Xl; `Xl_2 ]
let media_min_width_px px = Css.media_min_width_length (Css.Px px)
let media_min_width_rem rem = Css.media_min_width_length (Css.Rem rem)
let media_not_min_width_px px = Css.media_not_min_width_length (Css.Px px)
let media_not_min_width_rem rem = Css.media_not_min_width_length (Css.Rem rem)
let media_feature name ident =
Css.Media.Cond
(Css.Media.Feature (Css.Media.Plain (name, Css.Media.Ident ident)))
let hover_media = media_feature Css.Media.Hover Css.Media.Hover
let print_media =
Css.Media.Type { prefix = None; type_ = Css.Media.Print; trailing = None }
let negate_media = function
| Css.Media.Cond condition ->
Css.Media.Type
{
prefix = Some Css.Media.Not;
type_ = Css.Media.All;
trailing = Some condition;
}
| Css.Media.Type ({ prefix = Some Css.Media.Not; _ } as media) ->
Css.Media.Type { media with prefix = None }
| Css.Media.Type media ->
Css.Media.Type { media with prefix = Some Css.Media.Not }
| Css.Media.List _ as media ->
Css.Media.of_string ("not " ^ Css.Media.to_string media)
(** Get the media condition for a breakpoint, using the scheme override when
available, otherwise the default rem value. *)
let breakpoint_condition ?theme bp =
let name = string_of_breakpoint bp in
match Scheme.breakpoint_length (Scheme.or_default theme) name with
| Some length -> Css.media_min_width_length length
| None -> media_min_width_rem (breakpoint_rem bp)
(** Get the negated media condition for max-* breakpoints. *)
let breakpoint_not_condition ?theme bp =
let name = string_of_breakpoint bp in
match Scheme.breakpoint_length (Scheme.or_default theme) name with
| Some length -> Css.media_not_min_width_length length
| None -> media_not_min_width_rem (breakpoint_rem bp)
let custom_breakpoint_length ?theme name =
match Scheme.breakpoint_length (Scheme.or_default theme) name with
| Some length -> length
| None -> failwith ("unknown custom breakpoint: " ^ name)
let responsive_breakpoint_prefix prefix breakpoint =
prefix ^ "-" ^ string_of_breakpoint breakpoint
(** Get the media condition and class prefix for a responsive modifier. *)
let responsive_modifier_condition ?theme = function
| Style.Responsive bp ->
let prefix = string_of_breakpoint bp in
(breakpoint_condition ?theme bp, prefix)
| Style.Min_responsive bp ->
let prefix = responsive_breakpoint_prefix "min" bp in
(breakpoint_condition ?theme bp, prefix)
| Style.Max_responsive bp ->
let prefix = responsive_breakpoint_prefix "max" bp in
(breakpoint_not_condition ?theme bp, prefix)
| Style.Min_arbitrary w -> (media_min_width_px w.px, "min-[" ^ w.text ^ "]")
| Style.Max_arbitrary w ->
(media_not_min_width_px w.px, "max-[" ^ w.text ^ "]")
| Style.Min_arbitrary_length l ->
(Css.media_min_width_length l.len, "min-[" ^ l.text ^ "]")
| Style.Max_arbitrary_length l ->
(Css.media_not_min_width_length l.len, "max-[" ^ l.text ^ "]")
| Style.Custom_responsive name ->
(Css.media_min_width_length (custom_breakpoint_length ?theme name), name)
| Style.Min_custom name ->
( Css.media_min_width_length (custom_breakpoint_length ?theme name),
"min-" ^ name )
| Style.Max_custom name ->
( Css.media_not_min_width_length (custom_breakpoint_length ?theme name),
"max-" ^ name )
| _ -> failwith "not a responsive modifier"
let selector_with_data_key selector key value =
let attr_selector = Css.Selector.attribute key (Exact value) in
Css.Selector.combine selector Descendant attr_selector
let nested_hover ~selector ~props =
[ Css.media ~condition:hover_media [ Css.rule ~selector props ] ]
let at_rule_body ~inner_has_hover ~selector ~props =
if inner_has_hover then ([], nested_hover ~selector ~props) else (props, [])
let rebuilt_media ~condition ~selector ~props nested =
match (props, nested) with
| [], _ :: _ -> Css.media ~condition nested
| _ -> Css.media ~condition (Css.rule ~selector props :: nested)
let media_rule_with_prefix ?(inner_has_hover = false) prefix condition
base_class selector props =
let modified_class = prefix ^ ":" ^ base_class in
let new_selector =
Rules_selector.replace_class_in_selector ~old_class:base_class
~new_class:modified_class selector
in
if inner_has_hover then
media_query ~condition ~selector:new_selector ~props:[]
~base_class:modified_class
~nested:(nested_hover ~selector:new_selector ~props)
()
else
media_query ~condition ~selector:new_selector ~props
~base_class:modified_class ()
let responsive_rule ?theme ?inner_has_hover breakpoint base_class selector props
=
media_rule_with_prefix ?inner_has_hover
(string_of_breakpoint breakpoint)
(breakpoint_condition ?theme breakpoint)
base_class selector props
let min_responsive_rule ?theme ?inner_has_hover breakpoint base_class selector
props =
media_rule_with_prefix ?inner_has_hover
(responsive_breakpoint_prefix "min" breakpoint)
(breakpoint_condition ?theme breakpoint)
base_class selector props
let max_responsive_rule ?theme ?inner_has_hover breakpoint base_class selector
props =
media_rule_with_prefix ?inner_has_hover
(responsive_breakpoint_prefix "max" breakpoint)
(breakpoint_not_condition ?theme breakpoint)
base_class selector props
let min_arbitrary_rule ?inner_has_hover (w : Style.arbitrary_px) base_class
selector props =
let prefix = "min-[" ^ w.text ^ "]" in
media_rule_with_prefix ?inner_has_hover prefix (media_min_width_px w.px)
base_class selector props
let max_arbitrary_rule ?inner_has_hover (w : Style.arbitrary_px) base_class
selector props =
let prefix = "max-[" ^ w.text ^ "]" in
media_rule_with_prefix ?inner_has_hover prefix
(media_not_min_width_px w.px)
base_class selector props
let arbitrary_length_rule ?inner_has_hover prefix condition
(l : Style.arbitrary_length) base_class selector props =
media_rule_with_prefix ?inner_has_hover
(prefix ^ "-[" ^ l.text ^ "]")
condition base_class selector props
let min_arbitrary_length_rule ?inner_has_hover (l : Style.arbitrary_length)
base_class selector props =
arbitrary_length_rule ?inner_has_hover "min"
(Css.media_min_width_length l.len)
l base_class selector props
let max_arbitrary_length_rule ?inner_has_hover (l : Style.arbitrary_length)
base_class selector props =
arbitrary_length_rule ?inner_has_hover "max"
(Css.media_not_min_width_length l.len)
l base_class selector props
let custom_media_rule ?theme ?inner_has_hover prefix condition_of_length name
base_class selector props =
let length = custom_breakpoint_length ?theme name in
media_rule_with_prefix ?inner_has_hover (prefix name)
(condition_of_length length)
base_class selector props
let custom_responsive_rule ?theme ?inner_has_hover name base_class selector
props =
custom_media_rule ?theme ?inner_has_hover Fun.id Css.media_min_width_length
name base_class selector props
let min_custom_rule ?theme ?inner_has_hover name base_class selector props =
custom_media_rule ?theme ?inner_has_hover
(fun name -> "min-" ^ name)
Css.media_min_width_length name base_class selector props
let max_custom_rule ?theme ?inner_has_hover name base_class selector props =
custom_media_rule ?theme ?inner_has_hover
(fun name -> "max-" ^ name)
Css.media_not_min_width_length name base_class selector props
let container_rule ?theme ?(inner_has_hover = false) ?(negated = false)
?class_name query base_class selector props =
let modified_class =
Option.value class_name
~default:
(Containers.container_query_to_class_prefix query ^ ":" ^ base_class)
in
let new_selector =
Rules_selector.replace_class_in_selector ~old_class:base_class
~new_class:modified_class selector
in
let condition = Containers.container_query_to_condition ?theme query in
let condition =
if negated then Modifiers.negate_container condition else condition
in
let theme_decls = Modifiers.container_query_theme_decls query in
if inner_has_hover then
container_query ~condition ~selector:new_selector ~props:theme_decls
~base_class:modified_class
~nested:(nested_hover ~selector:new_selector ~props)
()
else
container_query ~condition ~selector:new_selector
~props:(props @ theme_decls) ~base_class:modified_class ()
(** Parse a has-[...] selector string as a relative CSS selector ([:has()]
accepts a bare leading combinator, e.g. [>div] or [~img]), with [&] (the
utility's own element) resolved to the universal selector - the same
substitution {!Modifiers.nest_selector} performs for [group-[...]] /
[peer-[...]] templates, via {!Cascade.Nest.substitute}. The boolean records
whether that substitution happened, because Tailwind leaves the resulting
complex selector outside [:is()]. *)
let has_relative_selector s =
let unresolved =
Css.Selector.read_relative
(Cascade.Cursor.of_string (Parse.decode_underscores s))
in
let has_nesting =
Css.Selector.any
(function Css.Selector.Nesting -> true | _ -> false)
unresolved
in
( Cascade.Nest.substitute ~parent:Css.Selector.universal unresolved,
has_nesting )
let resolve_has_shorthand = function
| "hocus" -> ":hover, :focus"
| "open" -> ":is([open], :popover-open, :open)"
| "inert" -> ":is([inert], [inert] *)"
| "odd" -> ":nth-child(odd)"
| "even" -> ":nth-child(even)"
| "first" -> ":first-child"
| "last" -> ":last-child"
| "only" -> ":only-child"
| s when Style.is_data_attr_name s -> "[" ^ s ^ "]"
| s -> ":" ^ s
let wrap_has_bracket_selector ~has_nesting =
let open Css.Selector in
function
| sel when has_nesting -> sel
| List sels -> is_ sels
| ( Element _ | Universal _ | Combined _
| Compound ((Element _ | Universal _) :: _) ) as sel ->
is_ [ sel ]
| sel -> sel
let has_inner_selector raw =
let str =
if Style.is_has_shorthand raw then resolve_has_shorthand raw else raw
in
let sel, has_nesting = has_relative_selector str in
if Style.is_has_shorthand raw then sel
else wrap_has_bracket_selector ~has_nesting sel
let named_modifier_suffix = function None -> "" | Some n -> "/" ^ n
let named_rel ~marker ~combinator ~name_opt =
let marker_class =
Css.Selector.Class (marker ^ named_modifier_suffix name_opt)
in
Css.Selector.combine
(Css.Selector.compound (Css.Selector.where [ marker_class ] :: extra))
combinator Css.Selector.universal
let named_not_rel ~marker ~combinator ~name_opt conditions =
named_rel ~marker ~combinator ~name_opt [ Css.Selector.Not conditions ]
let has_anchor_rel ~anchor ~combinator ?name inner =
named_rel ~marker:anchor ~combinator ~name_opt:name
[ Css.Selector.has [ inner ] ]
let route_regular ~selector ~base_class ~modified_class ~modified ?has_hover
props =
let sel =
Rules_selector.transform_selector_with_modifier modified base_class
modified_class selector
in
regular ~selector:sel ~props ~base_class:modified_class ?has_hover ()
let has_like_selector kind ?name ?shorthand ?(has_hover = false) ~selector
selector_str base_class props =
let open Css.Selector in
let parsed_selector, has_nesting = has_relative_selector selector_str in
let parsed_selector =
match shorthand with
| None -> wrap_has_bracket_selector ~has_nesting parsed_selector
| Some _ -> parsed_selector
in
let has_part s = Option.value shorthand ~default:("[" ^ s ^ "]") in
match kind with
| `Has ->
let class_name = "has-" ^ has_part selector_str ^ ":" ^ base_class in
let modified = compound [ class_ class_name; has [ parsed_selector ] ] in
route_regular ~selector ~base_class ~modified_class:class_name ~modified
~has_hover props
| `Group_has ->
let name_suffix = named_modifier_suffix name in
let class_name =
"group-has-" ^ has_part selector_str ^ name_suffix ^ ":" ^ base_class
in
let rel =
has_anchor_rel ~anchor:"group" ~combinator:Descendant ?name
parsed_selector
in
let modified = compound [ Class class_name; is_ [ rel ] ] in
route_regular ~selector ~base_class ~modified_class:class_name ~modified
~has_hover props
| `Peer_has ->
let name_suffix = named_modifier_suffix name in
let class_name =
"peer-has-" ^ has_part selector_str ^ name_suffix ^ ":" ^ base_class
in
let rel =
has_anchor_rel ~anchor:"peer" ~combinator:Subsequent_sibling ?name
parsed_selector
in
let modified = compound [ Class class_name; is_ [ rel ] ] in
route_regular ~selector ~base_class ~modified_class:class_name ~modified
~has_hover props
let handle_pseudo_class_modifier ?(inner_has_hover = false) modifier base_class
selector props =
let modified_base_selector = Modifiers.to_selector modifier base_class in
let modified_class =
Rules_selector.extract_modified_class_name modified_base_selector base_class
in
let new_selector =
Rules_selector.transform_selector_with_modifier modified_base_selector
base_class modified_class selector
in
let has_hover = Modifiers.is_hover modifier in
if has_hover && inner_has_hover then
let hover : Css.Media.t = hover_media in
let inner_rule = Css.rule ~selector:new_selector props in
let inner_media = Css.media ~condition:hover [ inner_rule ] in
media_query ~condition:hover ~selector:new_selector ~props:[]
~base_class:modified_class ~nested:[ inner_media ] ()
else
regular ~selector:new_selector ~props ~base_class:modified_class ~has_hover
()
(** Handle data attribute modifiers (data-state, data-variant, etc.) *)
let handle_data_modifier key value selector props base_class =
regular
~selector:(selector_with_data_key selector ("data-" ^ key) value)
~props ~base_class ()
let handle_media_like_modifier (modifier : Style.modifier)
~(condition : Css.Media.t) ?(inner_has_hover = false) base_class selector
props =
let modified_base_selector = Modifiers.to_selector modifier base_class in
let modified_class =
Rules_selector.extract_modified_class_name modified_base_selector base_class
in
if inner_has_hover then
let hover_selector =
Rules_selector.transform_selector_with_modifier modified_base_selector
base_class modified_class selector
in
let inner_hover_media =
let hover : Css.Media.t = hover_media in
Css.media ~condition:hover [ Css.rule ~selector:hover_selector props ]
in
media_query ~condition ~selector:hover_selector ~props:[]
~base_class:modified_class ~nested:[ inner_hover_media ] ()
else
let new_selector =
Rules_selector.transform_selector_with_modifier modified_base_selector
base_class modified_class selector
in
media_query ~condition ~selector:new_selector ~props
~base_class:modified_class ()
let route_data_modifier modifier base_class selector props =
match modifier with
| Style.Data_state v ->
handle_data_modifier "state" v selector props base_class
| Style.Data_variant v ->
handle_data_modifier "variant" v selector props base_class
| Style.Data_active ->
handle_data_modifier "active" "" selector props base_class
| Style.Data_inactive ->
handle_data_modifier "inactive" "" selector props base_class
| Style.Data_custom (k, v) ->
handle_data_modifier k v selector props base_class
| _ -> regular ~selector ~props ~base_class ()
let route_data_bracket_modifier modifier ~selector base_class props =
let kind, raw_str, name_opt =
match modifier with
| Style.Data_bracket s -> (`Data, "[" ^ s ^ "]", None)
| Style.Group_data (s, n) -> (`Group_data, s, n)
| Style.Peer_data (s, n) -> (`Peer_data, s, n)
| _ -> failwith "Invalid data bracket modifier"
in
let expr =
let n = String.length raw_str in
if n > 1 && raw_str.[0] = '[' && raw_str.[n - 1] = ']' then
String.sub raw_str 1 (n - 2)
else raw_str
in
let attr_name, attr_match, attr_flag = Modifiers.parse_data_expr expr in
let open Css.Selector in
let class_part = raw_str in
match kind with
| `Data ->
let class_name = "data-" ^ class_part ^ ":" ^ base_class in
let modified =
compound
[ class_ class_name; attribute ?flag:attr_flag attr_name attr_match ]
in
route_regular ~selector ~base_class ~modified_class:class_name ~modified
props
| `Group_data ->
let name_suffix = named_modifier_suffix name_opt in
let class_name =
"group-data-" ^ class_part ^ name_suffix ^ ":" ^ base_class
in
let rel =
named_rel ~marker:"group" ~combinator:Descendant ~name_opt
[ attribute ?flag:attr_flag attr_name attr_match ]
in
let modified = compound [ Class class_name; is_ [ rel ] ] in
route_regular ~selector ~base_class ~modified_class:class_name ~modified
props
| `Peer_data ->
let name_suffix = named_modifier_suffix name_opt in
let class_name =
"peer-data-" ^ class_part ^ name_suffix ^ ":" ^ base_class
in
let rel =
named_rel ~marker:"peer" ~combinator:Subsequent_sibling ~name_opt
[ attribute ?flag:attr_flag attr_name attr_match ]
in
let modified = compound [ Class class_name; is_ [ rel ] ] in
route_regular ~selector ~base_class ~modified_class:class_name ~modified
props
let route_has_modifier modifier ~selector base_class props =
let kind, raw_str, name =
match modifier with
| Style.Has s -> (`Has, s, None)
| Style.Group_has (s, name) -> (`Group_has, s, name)
| Style.Peer_has (s, name) -> (`Peer_has, s, name)
| _ -> failwith "Invalid has modifier"
in
let is_shorthand = Style.is_has_shorthand raw_str in
let selector_str =
if is_shorthand then resolve_has_shorthand raw_str else raw_str
in
let shorthand = if is_shorthand then Some raw_str else None in
let has_hover = is_shorthand && raw_str = "hover" in
has_like_selector kind ?name ?shorthand ~has_hover ~selector selector_str
base_class props
let parse_aria_expr expr =
let expr = Parse.decode_underscores expr in
let expr = String.trim expr in
match String.index_opt expr '=' with
| None -> ("aria-" ^ expr, Css.Selector.Presence)
| Some i ->
let attr = String.trim (String.sub expr 0 i) in
let raw_value =
String.trim (String.sub expr (i + 1) (String.length expr - i - 1))
in
let value =
let len = String.length raw_value in
if
len >= 2
&& (raw_value.[0] = '"' || raw_value.[0] = '\'')
&& raw_value.[len - 1] = raw_value.[0]
then String.sub raw_value 1 (len - 2)
else raw_value
in
("aria-" ^ attr, Css.Selector.Exact value)
let route_aria_modifier modifier ~selector base_class props =
let kind, raw_str, name_opt =
match modifier with
| Style.Aria_bracket s -> (`Aria, s, None)
| Style.Group_aria (s, n) -> (`Group_aria, s, n)
| Style.Peer_aria (s, n) -> (`Peer_aria, s, n)
| _ -> failwith "Invalid aria modifier"
in
let open Css.Selector in
let is_shorthand = Modifiers.is_aria_shorthand raw_str in
let aria_attr, aria_match =
if is_shorthand then ("aria-" ^ raw_str, Exact "true")
else parse_aria_expr raw_str
in
let class_part = if is_shorthand then raw_str else "[" ^ raw_str ^ "]" in
match kind with
| `Aria ->
let class_name = "aria-" ^ class_part ^ ":" ^ base_class in
let modified =
compound [ class_ class_name; attribute aria_attr aria_match ]
in
route_regular ~selector ~base_class ~modified_class:class_name ~modified
props
| `Group_aria ->
let name_suffix = named_modifier_suffix name_opt in
let class_name =
"group-aria-" ^ class_part ^ name_suffix ^ ":" ^ base_class
in
let rel =
named_rel ~marker:"group" ~combinator:Descendant ~name_opt
[ attribute aria_attr aria_match ]
in
let modified = compound [ Class class_name; is_ [ rel ] ] in
route_regular ~selector ~base_class ~modified_class:class_name ~modified
props
| `Peer_aria ->
let name_suffix = named_modifier_suffix name_opt in
let class_name =
"peer-aria-" ^ class_part ^ name_suffix ^ ":" ^ base_class
in
let rel =
named_rel ~marker:"peer" ~combinator:Subsequent_sibling ~name_opt
[ attribute aria_attr aria_match ]
in
let modified = compound [ Class class_name; is_ [ rel ] ] in
route_regular ~selector ~base_class ~modified_class:class_name ~modified
props
let handle_fallback_modifier ?(inner_has_hover = false) modifier base_class
selector props =
let modified_base_selector = Modifiers.to_selector modifier base_class in
let modified_class =
Rules_selector.extract_modified_class_name modified_base_selector base_class
in
let new_selector =
Rules_selector.transform_selector_with_modifier modified_base_selector
base_class modified_class selector
in
let has_hover = Modifiers.is_hover modifier || inner_has_hover in
regular ~selector:new_selector ~props ~base_class:modified_class ~has_hover ()
let reads_content_var d =
Css.declaration_name d = "content"
&& Css.declaration_value d = "var(--tw-content)"
let without_twin_content modifier ~props =
match modifier with
| (Style.Pseudo_before | Style.Pseudo_after)
when not (List.exists reads_content_var props) ->
List.filter (fun d -> not (reads_content_var d))
| _ -> Fun.id
let handle_pseudo_element_modifier modifier base_class props =
let sel = Modifiers.to_selector modifier base_class in
let modified_class =
Rules_selector.extract_modified_class_name sel base_class
in
let props =
if List.exists reads_content_var props then props
else Css.content (Var (Var.reference Typography.content_var)) :: props
in
regular ~selector:sel ~props ~base_class:modified_class ()
let normalize_supports_condition = Modifiers.normalize_supports_condition
(** Handle [supports-<property>] modifier: builds the shorthand class name and
emits [\@supports (prop: var(--tw))] directly, typed. *)
let handle_supports_property_modifier ?(inner_has_hover = false) prop base_class
selector props =
let modified_class = "supports-" ^ prop ^ ":" ^ base_class in
let new_selector =
Rules_selector.replace_class_in_selector ~old_class:base_class
~new_class:modified_class selector
in
let condition = Css.Supports.property prop "var(--tw)" in
let props, nested =
at_rule_body ~inner_has_hover ~selector:new_selector ~props
in
supports_query ~condition ~selector:new_selector ~props ~nested
~base_class:modified_class ()
(** Handle [supports-[condition]] modifier: builds the bracket class name,
normalizes the author's condition text, and emits a supports query rule. *)
let handle_supports_condition_modifier ?(inner_has_hover = false) condition_str
base_class selector props =
let modified_class = "supports-[" ^ condition_str ^ "]:" ^ base_class in
let new_selector =
Rules_selector.replace_class_in_selector ~old_class:base_class
~new_class:modified_class selector
in
let condition = normalize_supports_condition condition_str in
let props, nested =
at_rule_body ~inner_has_hover ~selector:new_selector ~props
in
supports_query ~condition ~selector:new_selector ~props ~nested
~base_class:modified_class ()
(** Map a media-like modifier to its corresponding Css.Media.t condition.
Returns [Some condition] for modifiers that map to media queries, [None] for
non-media modifiers. *)
let media_condition_of_modifier = function
| Style.Dark ->
Some (media_feature Css.Media.Prefers_color_scheme Css.Media.Dark)
| Style.Motion_safe ->
Some
(media_feature Css.Media.Prefers_reduced_motion Css.Media.No_preference)
| Style.Motion_reduce ->
Some (media_feature Css.Media.Prefers_reduced_motion Css.Media.Reduce)
| Style.Contrast_more ->
Some (media_feature Css.Media.Prefers_contrast Css.Media.More)
| Style.Contrast_less ->
Some (media_feature Css.Media.Prefers_contrast Css.Media.Less)
| Style.Print -> Some print_media
| Style.Portrait ->
Some (media_feature Css.Media.Orientation Css.Media.Portrait)
| Style.Landscape ->
Some (media_feature Css.Media.Orientation Css.Media.Landscape)
| Style.Forced_colors ->
Some (media_feature Css.Media.Forced_colors Css.Media.Active)
| Style.Inverted_colors ->
Some (media_feature Css.Media.Inverted_colors Css.Media.Inverted)
| Style.Pointer_none -> Some (media_feature Css.Media.Pointer Css.Media.None)
| Style.Pointer_coarse ->
Some (media_feature Css.Media.Pointer Css.Media.Coarse)
| Style.Pointer_fine -> Some (media_feature Css.Media.Pointer Css.Media.Fine)
| Style.Any_pointer_none ->
Some (media_feature Css.Media.Any_pointer Css.Media.None)
| Style.Any_pointer_coarse ->
Some (media_feature Css.Media.Any_pointer Css.Media.Coarse)
| Style.Any_pointer_fine ->
Some (media_feature Css.Media.Any_pointer Css.Media.Fine)
| Style.Noscript -> Some (media_feature Css.Media.Scripting Css.Media.None)
| _ -> None
(** Variant order for not-* inner modifiers. Returns a large offset that encodes
the inner modifier's position in the Tailwind v4 variant order. This ensures
not-* rules sort by variant position, not alphabetically. The offset is
multiplied by 100 to leave room for the base suborder. *)
(** Compute variant_order from base_class and selector. A stacked candidate is
placed by its highest-order modifier, matching the descending key list used
by the comparator. *)
let compute_variant_order ?theme ~selector base_class =
let order_of_candidate c =
let modifiers, _ = Modifiers.of_string c in
List.fold_left
(fun order modifier ->
Int.max order (Modifiers.variant_order_of_prefix ?theme modifier))
0 modifiers
in
let vo =
match base_class with None -> 0 | Some bc -> order_of_candidate bc
in
if vo > 0 then vo
else
match Css.Selector.first_class selector with
| Some c -> order_of_candidate c
| None -> 0
(** Build the class name prefix for a not-* inner modifier. Handles shorthand
forms like data-foo, has-checked, nth-2 that need different class names than
their pp_modifier representation. *)
let not_class_prefix inner_modifier =
match inner_modifier with
| Style.Data_custom (attr, "") -> "data-" ^ attr
| Style.Nth expr -> Style.pp_nth "nth" expr
| Style.Nth_last expr -> Style.pp_nth "nth-last" expr
| Style.Nth_of_type expr -> Style.pp_nth "nth-of-type" expr
| Style.Nth_last_of_type expr -> Style.pp_nth "nth-last-of-type" expr
| Style.Supports_property prop -> "supports-" ^ prop
| inner -> Modifiers.pp_modifier inner
(** Convert a base modifier to its CSS pseudo-class selector. *)
let pseudo_selector_of_modifier = function
| Style.Hover -> Css.Selector.Hover
| Style.Focus -> Css.Selector.Focus
| Style.Active -> Css.Selector.Active
| Style.Disabled -> Css.Selector.Disabled
| Style.Checked -> Css.Selector.Checked
| Style.First -> Css.Selector.First_child
| Style.Last -> Css.Selector.Last_child
| Style.Odd -> Css.Selector.(Nth_child (Odd, None))
| Style.Even -> Css.Selector.(Nth_child (Even, None))
| Style.Only -> Css.Selector.Only_child
| Style.First_of_type -> Css.Selector.First_of_type
| Style.Last_of_type -> Css.Selector.Last_of_type
| Style.Only_of_type -> Css.Selector.Only_of_type
| Style.Visited -> Css.Selector.Visited
| Style.Target -> Css.Selector.Target
| Style.Default -> Css.Selector.Default
| Style.Indeterminate -> Css.Selector.Indeterminate
| Style.Placeholder_shown -> Css.Selector.Placeholder_shown
| Style.Autofill -> Css.Selector.Autofill
| Style.Optional -> Css.Selector.Optional
| Style.Required -> Css.Selector.Required
| Style.Valid -> Css.Selector.Valid
| Style.Invalid -> Css.Selector.Invalid
| Style.In_range -> Css.Selector.In_range
| Style.Out_of_range -> Css.Selector.Out_of_range
| Style.Read_only -> Css.Selector.Read_only
| Style.Read_write -> Css.Selector.Read_write
| Style.User_valid -> Css.Selector.User_valid
| Style.User_invalid -> Css.Selector.User_invalid
| Style.Enabled -> Css.Selector.Enabled
| Style.Empty -> Css.Selector.Empty
| Style.Focus_within -> Css.Selector.Focus_within
| Style.Focus_visible -> Css.Selector.Focus_visible
| Style.Open ->
Css.Selector.(is_ [ attribute "open" Presence; Popover_open; Open ])
| _ -> Css.Selector.Focus
(** Parse a bracket pseudo-class string into a CSS selector. *)
let parse_bracket_pseudo content =
match Css.Selector.of_string content with
| sel -> sel
| exception Cascade.Error.Parse_error _ ->
Css.Selector.Class content
let not_bracket_selector content =
if String.starts_with ~prefix:":" content then
Css.Selector.Not [ parse_bracket_pseudo content ]
else
let sel_str = Parse.decode_underscores content in
Css.Selector.Not
[
Cascade.Nest.substitute ~parent:Css.Selector.universal
(Css.Selector.read (Cascade.Cursor.of_string sel_str));
]
let attribute_condition = function
| Style.Data_custom (attr, "") ->
Some [ Css.Selector.attribute ("data-" ^ attr) Presence ]
| Style.Data_custom (attr, value) ->
Some [ Css.Selector.attribute ("data-" ^ attr) (Exact value) ]
| Style.Data_bracket expr ->
let name, matcher, flag = Modifiers.parse_data_expr expr in
Some [ Css.Selector.attribute ?flag name matcher ]
| Style.Aria_bracket expr ->
let name, matcher =
if Modifiers.is_aria_shorthand expr then
("aria-" ^ expr, Css.Selector.Exact "true")
else parse_aria_expr expr
in
Some [ Css.Selector.attribute name matcher ]
| Style.Aria_selected ->
Some [ Css.Selector.attribute "aria-selected" (Exact "true") ]
| Style.Aria_checked ->
Some [ Css.Selector.attribute "aria-checked" (Exact "true") ]
| Style.Aria_expanded ->
Some [ Css.Selector.attribute "aria-expanded" (Exact "true") ]
| Style.Aria_disabled ->
Some [ Css.Selector.attribute "aria-disabled" (Exact "true") ]
| _ -> None
let rec scoped_conditions ~marker ~combinator ~name_opt ~negated m base_class =
let inner = extract_not_conditions m base_class in
let = if negated then [ Css.Selector.Not inner ] else inner in
[ Css.Selector.is_ [ named_rel ~marker ~combinator ~name_opt extra ] ]
(** Extract the pseudo-class selector(s) from a modifier for use in :not().
Returns a list of selectors that go inside :not(sel1, sel2, ...). *)
and inner_modifier base_class =
match inner_modifier with
| Style.Hocus | Style.Device_hocus ->
[ Css.Selector.Hover; Css.Selector.Focus ]
| Style.Has selector_str ->
[ Css.Selector.Has [ has_inner_selector selector_str ] ]
| Style.Has_variant m ->
[ Css.Selector.Has (extract_not_conditions m base_class) ]
| Style.Group_not (m, name_opt) ->
scoped_conditions ~marker:"group" ~combinator:Css.Selector.Descendant
~name_opt ~negated:true m base_class
| Style.Peer_not (m, name_opt) ->
scoped_conditions ~marker:"peer"
~combinator:Css.Selector.Subsequent_sibling ~name_opt ~negated:true m
base_class
| Style.Named_group (m, name) ->
scoped_conditions ~marker:"group" ~combinator:Css.Selector.Descendant
~name_opt:(Some name) ~negated:false m base_class
| Style.Named_peer (m, name) ->
scoped_conditions ~marker:"peer"
~combinator:Css.Selector.Subsequent_sibling ~name_opt:(Some name)
~negated:false m base_class
| Style.In_state (m, _) ->
[
Css.Selector.combine
(Css.Selector.Where (extract_not_conditions m base_class))
Css.Selector.Descendant Css.Selector.universal;
]
| Style.Not m -> [ Css.Selector.Not (extract_not_conditions m base_class) ]
| Style.Not_bracket content -> [ not_bracket_selector content ]
| Style.Group_has (selector_str, name) ->
[
Css.Selector.is_
[
has_anchor_rel ~anchor:"group" ~combinator:Css.Selector.Descendant
?name
(has_inner_selector selector_str);
];
]
| Style.Peer_has (selector_str, name) ->
[
Css.Selector.is_
[
has_anchor_rel ~anchor:"peer"
~combinator:Css.Selector.Subsequent_sibling ?name
(has_inner_selector selector_str);
];
]
| m when Option.is_some (attribute_condition m) ->
Option.get (attribute_condition m)
| _ -> (
let sel = Modifiers.to_selector inner_modifier base_class in
match sel with
| Css.Selector.Compound (Css.Selector.Class _ :: rest) when rest <> [] ->
rest
| Css.Selector.Combined (ancestor, comb, Css.Selector.Class c)
when String.equal c base_class ->
[ Css.Selector.Combined (ancestor, comb, Css.Selector.universal) ]
| _ -> [ sel ])
(** Build a regular rule with :not() selector for a not-* modifier. *)
let not_selector_rule inner_modifier modified_class base_class ~selector props =
let conditions = extract_not_conditions inner_modifier base_class in
let not_sel = Css.Selector.Not conditions in
let modified =
Css.Selector.compound [ Css.Selector.Class modified_class; not_sel ]
in
route_regular ~selector ~base_class ~modified_class ~modified props
let hover_gated_not_rule ~selector modified_class props wrap =
[
media_query ~condition:hover_media ~selector ~props:[]
~base_class:modified_class
~nested:[ wrap [ Css.rule ~selector props ] ]
();
]
let not_media_rule ~condition ~selector ~has_hover modified_class props =
if has_hover then
hover_gated_not_rule ~selector modified_class props (Css.media ~condition)
else [ media_query ~condition ~selector ~props ~base_class:modified_class () ]
let not_supports_rule ~condition ~selector ~has_hover modified_class props =
if has_hover then
hover_gated_not_rule ~selector modified_class props
(Css.supports ~condition)
else
[ supports_query ~condition ~selector ~props ~base_class:modified_class () ]
let involves_hover = Modifiers.involves_hover
let rec negated_container = function
| Style.Container query -> Some (query, true)
| Style.Not m ->
Option.map
(fun (query, negated) -> (query, not negated))
(negated_container m)
| _ -> None
let not_hover_media ~selector ~has_hover modified_class props =
not_media_rule ~condition:(negate_media hover_media) ~selector ~has_hover
modified_class props
let rec media_pair ?theme = function
| Style.Not m -> Option.map (fun (c, n) -> (n, c)) (media_pair ?theme m)
| Style.Not_bracket content ->
Option.map
(fun c -> (negate_media c, c))
(Modifiers.bracket_media_condition content)
| Style.Responsive bp | Style.Min_responsive bp ->
Some (breakpoint_condition ?theme bp, breakpoint_not_condition ?theme bp)
| Style.Max_responsive bp ->
Some (breakpoint_not_condition ?theme bp, breakpoint_condition ?theme bp)
| Style.Custom_responsive name | Style.Min_custom name ->
let l = custom_breakpoint_length ?theme name in
Some (Css.media_min_width_length l, Css.media_not_min_width_length l)
| Style.Max_custom name ->
let l = custom_breakpoint_length ?theme name in
Some (Css.media_not_min_width_length l, Css.media_min_width_length l)
| Style.Min_arbitrary w ->
Some (media_min_width_px w.px, media_not_min_width_px w.px)
| Style.Max_arbitrary w ->
Some (media_not_min_width_px w.px, media_min_width_px w.px)
| Style.Min_arbitrary_length l ->
Some
(Css.media_min_width_length l.len, Css.media_not_min_width_length l.len)
| Style.Max_arbitrary_length l ->
Some
(Css.media_not_min_width_length l.len, Css.media_min_width_length l.len)
| m ->
Option.map (fun c -> (c, negate_media c)) (media_condition_of_modifier m)
let not_media_condition ?theme m = Option.map snd (media_pair ?theme m)
let rec supports_pair = function
| Style.Not m -> Option.map (fun (c, n) -> (n, c)) (supports_pair m)
| Style.Not_bracket content ->
Option.map
(function
| Css.Supports.Not c -> (c, Css.Supports.Not c)
| c -> (Css.Supports.Not c, c))
(Modifiers.bracket_supports_condition content)
| Style.Supports_property prop ->
let c = Css.Supports.property prop "var(--tw)" in
Some (c, Css.Supports.Not c)
| Style.Supports_condition condition_str ->
let c = normalize_supports_condition condition_str in
Some (c, Css.Supports.Not c)
| _ -> None
let not_supports_condition m = Option.map snd (supports_pair m)
(** Handle :not() pseudo-class modifier: dispatches to the right rule type based
on the inner modifier. Returns a list of rules since some modifiers (like
hover) produce both a selector rule and a media rule. *)
let handle_not_modifier ?theme ~has_hover inner_modifier base_class selector
props =
let modified_class =
"not-" ^ not_class_prefix inner_modifier ^ ":" ^ base_class
in
let sel_rule () =
not_selector_rule inner_modifier modified_class base_class ~selector props
in
let renamed =
Rules_selector.replace_class_in_selector ~old_class:base_class
~new_class:modified_class selector
in
match inner_modifier with
| m when involves_hover m ->
[ sel_rule () ]
@ not_hover_media ~selector:renamed ~has_hover modified_class props
| Style.Hocus -> [ sel_rule () ]
| m when Option.is_some (negated_container m) ->
let query, negated = Option.get (negated_container m) in
[
container_rule ?theme ~inner_has_hover:has_hover ~negated
~class_name:modified_class query base_class selector props;
]
| m -> (
match (not_media_condition ?theme m, not_supports_condition m) with
| Some condition, _ ->
not_media_rule ~condition ~selector:renamed ~has_hover modified_class
props
| None, Some condition ->
not_supports_rule ~condition ~selector:renamed ~has_hover
modified_class props
| None, None -> [ sel_rule () ])
(** Parse a bracket media condition string (from not-[@media...]) and return the
appropriate negated media condition. Handles double negation: not of "not
(cond)" → positive cond. *)
let parse_bracket_media content =
let s = Parse.decode_underscores content in
let rest =
String.trim
(if String.starts_with ~prefix:"@media " s && String.length s > 7 then
String.sub s 7 (String.length s - 7)
else if String.starts_with ~prefix:"@media" s && String.length s > 6 then
String.sub s 6 (String.length s - 6)
else s)
in
if String.starts_with ~prefix:"not " rest && String.length rest > 4 then
let inner = String.trim (String.sub rest 4 (String.length rest - 4)) in
Css.Media.of_string inner
else
match rest with
| "print" -> negate_media print_media
| _ -> negate_media (Css.Media.of_string rest)
(** Parse in-[...] bracket content into an ancestor selector. Class selectors
(starting with .) are used directly; others are wrapped in :is(). *)
let in_bracket_ancestor content =
if String.starts_with ~prefix:"." content then
let cls = String.sub content 1 (String.length content - 1) in
Css.Selector.Class cls
else
Css.Selector.Is [ Css.Selector.Element (None, content) ]
(** Handle in-[...] bracket modifier. Returns a list of rules. *)
let handle_in_bracket content base_class props =
let modified_class = "in-[" ^ content ^ "]:" ^ base_class in
let ancestor = in_bracket_ancestor content in
let sel =
Css.Selector.combine (Css.Selector.Where [ ancestor ])
Css.Selector.Descendant (Css.Selector.Class modified_class)
in
[ regular ~selector:sel ~props ~base_class:modified_class ~merge_key:"in" () ]
(** Handle in-data-X modifier. Returns a list of rules. *)
let handle_in_data attr base_class props =
let modified_class = "in-data-" ^ attr ^ ":" ^ base_class in
let sel =
Css.Selector.combine
(Css.Selector.Where
[
Css.Selector.Attribute (None, Data attr, Css.Selector.Presence, None);
])
Css.Selector.Descendant (Css.Selector.Class modified_class)
in
[ regular ~selector:sel ~props ~base_class:modified_class ~merge_key:"in" () ]
let not_in_rule ~modified_class ~ancestor props =
let sel =
Css.Selector.compound
[
Css.Selector.Class modified_class;
Css.Selector.Not
[
Css.Selector.combine (Css.Selector.Where [ ancestor ])
Css.Selector.Descendant (Css.Selector.Universal None);
];
]
in
[ regular ~selector:sel ~props ~base_class:modified_class ~merge_key:"in" () ]
(** Handle not-in-[...] bracket modifier. Returns a list of rules. *)
let handle_not_in_bracket content base_class props =
not_in_rule
~modified_class:("not-in-[" ^ content ^ "]:" ^ base_class)
~ancestor:(in_bracket_ancestor content)
props
(** Handle the not-in-data-* modifier. Returns a list of rules. *)
let handle_not_in_data attr base_class props =
not_in_rule
~modified_class:("not-in-data-" ^ attr ^ ":" ^ base_class)
~ancestor:
(Css.Selector.Attribute (None, Data attr, Css.Selector.Presence, None))
props
(** Handle not-[...] bracket modifier. Returns a list of rules. *)
let handle_not_bracket content base_class props =
let modified_class = "not-[" ^ content ^ "]:" ^ base_class in
if
(String.starts_with ~prefix:"@media" content && String.length content > 6)
|| String.starts_with ~prefix:"@media_" content
&& String.length content > 7
then
let condition = parse_bracket_media content in
[
media_query ~condition ~selector:(Css.Selector.Class modified_class)
~props ~base_class:modified_class ();
]
else if
String.starts_with ~prefix:"@supports" content && String.length content > 9
then
let rule condition =
supports_query ~condition ~selector:(Css.Selector.Class modified_class)
~props ~base_class:modified_class ()
in
match Modifiers.bracket_supports_condition content with
| Some (Css.Supports.Not condition) -> [ rule condition ]
| Some condition -> [ rule (Css.Supports.Not condition) ]
| None -> []
else
[
regular
~selector:
(Css.Selector.compound
[ Css.Selector.Class modified_class; not_bracket_selector content ])
~props ~base_class:modified_class ();
]
(** Handle group-not-X modifier. Produces selector with
:is(:where(.group):not(...) descendant) pattern. *)
let not_modifier_inner_string = function
| Style.Not_bracket content -> "[" ^ content ^ "]"
| m -> Modifiers.pp_modifier m
let is_media_inner_modifier = function
| Style.Hover | Style.Device_hocus -> true
| inner -> Option.is_some (media_condition_of_modifier inner)
let handle_named_not ~prefix ~base_marker_class ~combinator inner name_opt
base_class props =
let inner_str = not_modifier_inner_string inner in
let name_suffix = named_modifier_suffix name_opt in
let modified_class =
prefix ^ "-not-" ^ inner_str ^ name_suffix ^ ":" ^ base_class
in
if is_media_inner_modifier inner then []
else
let not_conditions =
match inner with
| Style.Not_bracket content -> (
match not_bracket_selector content with
| Css.Selector.Not conditions -> conditions
| selector -> [ selector ])
| _ -> extract_not_conditions inner base_class
in
let open Css.Selector in
let rel =
named_not_rel ~marker:base_marker_class ~combinator ~name_opt
not_conditions
in
[
regular
~selector:(compound [ Class modified_class; is_ [ rel ] ])
~props ~base_class:modified_class ();
]
let handle_group_not_modifier inner name_opt base_class props =
handle_named_not ~prefix:"group" ~base_marker_class:"group"
~combinator:Descendant inner name_opt base_class props
(** Handle peer-not-X modifier. Produces selector with
:is(:where(.peer):not(...) sibling) pattern. *)
let handle_peer_not_modifier inner name_opt base_class props =
handle_named_not ~prefix:"peer" ~base_marker_class:"peer"
~combinator:Subsequent_sibling inner name_opt base_class props
(** Build the group-STATE selector rel: :where(.group/name):STATE descendant *)
let named_group_rel name pseudo =
named_rel ~marker:"group" ~combinator:Css.Selector.Descendant
~name_opt:(Some name) [ pseudo ]
let named_anchor_rule ~anchor ~combinator inner name base_class props =
let open Css.Selector in
let modified_class =
String.concat ""
[ anchor; "-"; Modifiers.pp_modifier inner; "/"; name; ":"; base_class ]
in
let rel =
named_rel ~marker:anchor ~combinator ~name_opt:(Some name)
[ pseudo_selector_of_modifier inner ]
in
let sel = compound [ Class modified_class; is_ [ rel ] ] in
[
regular ~selector:sel ~props ~base_class:modified_class
~has_hover:(Modifiers.is_hover inner) ();
]
let handle_named_group inner name base_class props =
named_anchor_rule ~anchor:"group" ~combinator:Css.Selector.Descendant inner
name base_class props
let handle_named_peer inner name base_class props =
named_anchor_rule ~anchor:"peer" ~combinator:Css.Selector.Subsequent_sibling
inner name base_class props
let handle_in_state inner name base_class props =
let modified_class = "in-" ^ name ^ ":" ^ base_class in
let sel =
Css.Selector.combine
(Css.Selector.Where (extract_not_conditions inner base_class))
Css.Selector.Descendant (Css.Selector.Class modified_class)
in
[
regular ~selector:sel ~props ~base_class:modified_class ~merge_key:"in"
~has_hover:(involves_hover inner) ();
]
(** Handle not-group-STATE/name compound variant *)
let named_group_modified_class prefix inner name base_class =
let inner_str = Modifiers.pp_modifier inner in
prefix ^ "-group-" ^ inner_str ^ "/" ^ name ^ ":" ^ base_class
let named_group_rule ~selector_of_rel prefix inner name base_class props =
let modified_class =
named_group_modified_class prefix inner name base_class
in
let pseudo = pseudo_selector_of_modifier inner in
let rel = named_group_rel name pseudo in
let sel = selector_of_rel modified_class rel in
[
regular ~selector:sel ~props ~base_class:modified_class
~has_hover:(Modifiers.is_hover inner) ();
]
let handle_not_named_group ~selector ~has_hover inner name base_class props =
let open Css.Selector in
let negated =
named_group_rule "not" inner name base_class props
~selector_of_rel:(fun modified_class rel ->
compound [ Class modified_class; Not [ is_ [ rel ] ] ])
in
if involves_hover inner then
let modified_class =
named_group_modified_class "not" inner name base_class
in
let renamed =
Rules_selector.replace_class_in_selector ~old_class:base_class
~new_class:modified_class selector
in
List.map
(function
| Output.Regular r -> Output.Regular { r with has_hover = false }
| rule -> rule)
negated
@ not_hover_media ~selector:renamed ~has_hover modified_class props
else negated
(** Handle has-group-STATE/name compound variant *)
let handle_has_named_group inner name base_class props =
let open Css.Selector in
named_group_rule "has" inner name base_class props
~selector_of_rel:(fun modified_class rel ->
compound [ Class modified_class; Has [ is_ [ rel ] ] ])
(** Handle in-group-STATE/name compound variant — ancestor pattern *)
let handle_in_named_group inner name base_class props =
let open Css.Selector in
named_group_rule "in" inner name base_class props
~selector_of_rel:(fun modified_class rel ->
combine (Where [ is_ [ rel ] ]) Descendant (Class modified_class))
(** Handle group-peer-STATE/name compound variant *)
let handle_group_peer_named inner name base_class props =
let inner_str = Modifiers.pp_modifier inner in
let modified_class =
"group-peer-" ^ inner_str ^ "/" ^ name ^ ":" ^ base_class
in
let pseudo = pseudo_selector_of_modifier inner in
let open Css.Selector in
let peer_rel =
combine
(compound [ where [ Class "peer" ]; pseudo ])
Subsequent_sibling universal
in
let group_rel =
combine
(compound [ where [ Class ("group/" ^ name) ]; is_ [ peer_rel ] ])
Descendant universal
in
let sel = compound [ Class modified_class; is_ [ group_rel ] ] in
[ regular ~selector:sel ~props ~base_class:modified_class () ]
let rec attach_to_subject sel =
let open Css.Selector in
match sel with
| Combined (a, comb, b) -> Combined (a, comb, attach_to_subject extra b)
| Relative (comb, b) -> Relative (comb, attach_to_subject extra b)
| Compound parts -> compound (parts @ extra)
| other -> compound (other :: extra)
let arbitrary_selector_rule content base_class selector props =
let open Css.Selector in
let s = Parse.decode_underscores content in
let modified_class = "[" ^ content ^ "]:" ^ base_class in
let decoration =
match selector with
| Class cls when String.equal cls base_class -> Some []
| Compound (Class cls :: rest) when String.equal cls base_class -> Some rest
| _ -> None
in
let rebase modified =
Rules_selector.transform_selector_with_modifier modified base_class
modified_class selector
in
let anchored = Modifiers.nest_selector ~parent:(Class modified_class) s in
let sel =
match decoration with
| Some [] -> anchored
| Some -> attach_to_subject extra anchored
| None -> rebase anchored
in
regular ~selector:sel ~props ~base_class:modified_class ()
let at_rule_variant ?(inner_has_hover = false) content ~selector base_class
props =
let modified_class = "[" ^ content ^ "]:" ^ base_class in
let selector =
Rules_selector.transform_selector_with_modifier
(Css.Selector.Class modified_class) base_class modified_class selector
in
let props, nested = at_rule_body ~inner_has_hover ~selector ~props in
if content = "@starting-style" then
starting_style ~selector ~props ~nested ~base_class:modified_class ()
else
match Modifiers.bracket_media_condition content with
| Some condition ->
media_query ~condition ~selector ~props ~nested
~base_class:modified_class ()
| None ->
let cond =
String.trim (String.sub content 9 (String.length content - 9))
in
let condition = normalize_supports_condition cond in
supports_query ~condition ~selector ~props ~nested
~base_class:modified_class ()
let custom_variant_rule token template base_class props =
let modified_class = token ^ ":" ^ base_class in
let sel =
Modifiers.nest_selector ~parent:(Css.Selector.Class modified_class) template
in
regular ~selector:sel ~props ~base_class:modified_class ()
(** Convert a modifier and its context to a CSS rule. [inner_has_hover]
indicates if the inner rule has a hover modifier that needs to be wrapped in
CSS nesting with {i \@media (hover:hover)}. *)
let modified_selector_rule modifier base_class selector props =
let modified_base_selector = Modifiers.to_selector modifier base_class in
let modified_class =
Rules_selector.extract_modified_class_name modified_base_selector base_class
in
let new_selector =
Rules_selector.transform_selector_with_modifier modified_base_selector
base_class modified_class selector
in
regular ~selector:new_selector ~props ~base_class:modified_class ()
let route_scoped_has_variant ~anchor ~combinator inner name ~selector base_class
props =
let name_suffix = named_modifier_suffix name in
let modified_class =
anchor ^ "-has-"
^ Modifiers.pp_modifier inner
^ name_suffix ^ ":" ^ base_class
in
let inner_selector =
match extract_not_conditions inner base_class with
| [ condition ] -> condition
| conditions -> Css.Selector.is_ conditions
in
let rel = has_anchor_rel ~anchor ~combinator ?name inner_selector in
let modified =
Css.Selector.compound
[ Css.Selector.Class modified_class; Css.Selector.is_ [ rel ] ]
in
route_regular ~selector ~base_class ~modified_class ~modified props
let route_has_variant inner ~selector base_class props =
let modified_class =
"has-" ^ Modifiers.pp_modifier inner ^ ":" ^ base_class
in
let modified =
Css.Selector.compound
[
Css.Selector.Class modified_class;
Css.Selector.Has (extract_not_conditions inner base_class);
]
in
route_regular ~selector ~base_class ~modified_class ~modified
~has_hover:(involves_hover inner) props
let prose_element_rule name ~base_class ~selector props =
let replacement =
Modifiers.to_selector (Style.Prose_element name) base_class
in
let combined_sel =
Rules_selector.replace_class_with ~old_class:base_class ~replacement
selector
in
regular ~selector:combined_sel ~props
~base_class:("prose-" ^ name ^ ":" ^ base_class)
()
let starting_rule ~inner_has_hover base_class selector props =
let modified_class = "starting:" ^ base_class in
let selector =
Rules_selector.transform_selector_with_modifier
(Css.Selector.Class modified_class) base_class modified_class selector
in
let props, nested = at_rule_body ~inner_has_hover ~selector ~props in
starting_style ~selector ~props ~nested ~base_class:modified_class ()
let container_style_rule ~inner_has_hover token condition base_class selector
props =
let modified_class = token ^ ":" ^ base_class in
let selector =
Rules_selector.replace_class_in_selector ~old_class:base_class
~new_class:modified_class selector
in
let props, nested = at_rule_body ~inner_has_hover ~selector ~props in
container_query ~condition ~selector ~props ~nested ~base_class:modified_class
()
let dispatch_modifier ?theme ?(inner_has_hover = false) modifier base_class
selector props =
match modifier with
| Style.Data_state _ | Style.Data_variant _ ->
route_data_modifier modifier base_class selector props
| Style.Data_custom _ ->
modified_selector_rule modifier base_class selector props
| _ when Option.is_some (media_condition_of_modifier modifier) ->
let condition = Option.get (media_condition_of_modifier modifier) in
handle_media_like_modifier modifier ~condition ~inner_has_hover base_class
selector props
| Style.Supports_property prop ->
handle_supports_property_modifier ~inner_has_hover prop base_class
selector props
| Style.Supports_condition condition_str ->
handle_supports_condition_modifier ~inner_has_hover condition_str
base_class selector props
| Style.Responsive breakpoint ->
responsive_rule ?theme ~inner_has_hover breakpoint base_class selector
props
| Style.Min_responsive breakpoint ->
min_responsive_rule ?theme ~inner_has_hover breakpoint base_class selector
props
| Style.Max_responsive breakpoint ->
max_responsive_rule ?theme ~inner_has_hover breakpoint base_class selector
props
| Style.Min_arbitrary w ->
min_arbitrary_rule ~inner_has_hover w base_class selector props
| Style.Max_arbitrary w ->
max_arbitrary_rule ~inner_has_hover w base_class selector props
| Style.Min_arbitrary_length l ->
min_arbitrary_length_rule ~inner_has_hover l base_class selector props
| Style.Max_arbitrary_length l ->
max_arbitrary_length_rule ~inner_has_hover l base_class selector props
| Style.Custom_responsive name ->
custom_responsive_rule ?theme ~inner_has_hover name base_class selector
props
| Style.Min_custom name ->
min_custom_rule ?theme ~inner_has_hover name base_class selector props
| Style.Max_custom name ->
max_custom_rule ?theme ~inner_has_hover name base_class selector props
| Style.Container query ->
container_rule ?theme ~inner_has_hover query base_class selector props
| Style.Not _ | Style.Not_bracket _ | Style.Group_not _ | Style.Peer_not _ ->
regular ~selector ~props ~base_class ()
| Style.Has _ | Style.Group_has _ | Style.Peer_has _ ->
route_has_modifier modifier ~selector base_class props
| Style.Has_variant inner ->
route_has_variant inner ~selector base_class props
| Style.Group_has_variant (inner, name) ->
route_scoped_has_variant ~anchor:"group"
~combinator:Css.Selector.Descendant inner name ~selector base_class
props
| Style.Peer_has_variant (inner, name) ->
route_scoped_has_variant ~anchor:"peer"
~combinator:Css.Selector.Subsequent_sibling inner name ~selector
base_class props
| Style.Aria_bracket _ | Style.Group_aria _ | Style.Peer_aria _
| Style.Aria_checked | Style.Aria_expanded | Style.Aria_selected
| Style.Aria_disabled ->
let modifier =
match modifier with
| Style.Aria_checked -> Style.Aria_bracket "checked"
| Style.Aria_expanded -> Style.Aria_bracket "expanded"
| Style.Aria_selected -> Style.Aria_bracket "selected"
| Style.Aria_disabled -> Style.Aria_bracket "disabled"
| m -> m
in
route_aria_modifier modifier ~selector base_class props
| Style.Data_bracket _ | Style.Group_data _ | Style.Peer_data _ ->
route_data_bracket_modifier modifier ~selector base_class props
| Style.Starting -> starting_rule ~inner_has_hover base_class selector props
| Style.Hover | Style.Focus | Style.Active | Style.Focus_within
| Style.Focus_visible | Style.Disabled ->
handle_pseudo_class_modifier ~inner_has_hover modifier base_class selector
props
| Style.Pseudo_before | Style.Pseudo_after ->
handle_pseudo_element_modifier modifier base_class props
| Style.Arbitrary_selector content ->
arbitrary_selector_rule content base_class selector props
| Style.At_rule content ->
at_rule_variant ~inner_has_hover content ~selector base_class props
| Style.Custom_variant (token, template) ->
custom_variant_rule token template base_class props
| Style.Container_style (token, condition) ->
container_style_rule ~inner_has_hover token condition base_class selector
props
| Style.Prose_element name ->
prose_element_rule name ~base_class ~selector props
| _ ->
handle_fallback_modifier ~inner_has_hover modifier base_class selector
props
let modifier_to_rule_themed ?theme ?(inner_has_hover = false) modifier
base_class selector props =
let rule =
dispatch_modifier ?theme ~inner_has_hover modifier base_class selector props
in
match rule with
| Output.Regular r when inner_has_hover && not r.has_hover ->
Output.Regular { r with has_hover = true }
| rule -> rule
let modifier_to_rule ?inner_has_hover modifier base_class selector props =
modifier_to_rule_themed ?inner_has_hover modifier base_class selector props
(** Generate pseudo-element rules with separate selectors for browser
compatibility. An invalid pseudo-element in a comma list causes the entire
rule to be dropped, so each variant gets its own rule. *)
let pseudo_element_rules ~pseudo_selectors ~selector ~has_hover bc props prefix
=
let mc = prefix ^ ":" ^ bc in
let c = Css.Selector.Class mc in
let open Css.Selector in
List.map
(fun sel ->
let sel =
Rules_selector.transform_selector_with_modifier sel bc mc selector
in
regular ~selector:sel ~props ~base_class:mc ~has_hover ())
(List.concat_map
(fun ps -> [ combine c Descendant ps; compound [ c; ps ] ])
pseudo_selectors)
let pseudo_element_over modifier ~selector ~has_hover bc props =
let sel = Modifiers.to_selector modifier bc in
let modified_class = Rules_selector.extract_modified_class_name sel bc in
let content_rule =
regular ~selector:sel
~props:[ Css.content (Var (Var.reference Typography.content_var)) ]
~base_class:modified_class ()
in
let inner =
regular
~selector:
(Rules_selector.transform_selector_with_modifier sel bc modified_class
selector)
~props ~base_class:modified_class ~has_hover ()
in
(content_rule, inner)
let dressed_by_inner ~selector ~has_hover bc =
has_hover || match selector with Css.Selector.Class c -> c <> bc | _ -> true
let is_before_after = function
| Style.Pseudo_before | Style.Pseudo_after -> true
| _ -> false
let arbitrary_selector_in_media content bc selector props ~inner_condition
~nested =
match arbitrary_selector_rule content bc selector props with
| Regular { selector; props; base_class; _ } ->
[
media_query ~condition:inner_condition ~selector ~props ?base_class
~nested ();
]
| other -> [ other ]
(** Apply a modifier to a Media_query rule by wrapping it in an outer media
query. Handles media-like modifiers, responsive modifiers, and falls back to
returning the rule unchanged. *)
let rec map_selectors_in_stmt f (stmt : Css.statement) =
let recurse = map_selectors_in_stmt f in
let open Cascade.Stylesheet in
match stmt with
| Rule r ->
Rule
{ r with selector = f r.selector; nested = List.map recurse r.nested }
| Media (condition, stmts) -> Media (condition, List.map recurse stmts)
| Container (name, condition, stmts) ->
Container (name, condition, List.map recurse stmts)
| Supports (condition, stmts) -> Supports (condition, List.map recurse stmts)
| Starting_style stmts -> Starting_style (List.map recurse stmts)
| other -> other
let retargeted ~modified_class f = function
| Regular r ->
Regular
{
r with
selector = f r.selector;
base_class = Some modified_class;
nested = List.map (map_selectors_in_stmt f) r.nested;
}
| Media_query r ->
Media_query
{
r with
selector = f r.selector;
base_class = Some modified_class;
nested = List.map (map_selectors_in_stmt f) r.nested;
}
| Container_query r ->
Container_query
{
r with
selector = f r.selector;
base_class = Some modified_class;
nested = List.map (map_selectors_in_stmt f) r.nested;
}
| Supports_query r ->
Supports_query
{
r with
selector = f r.selector;
base_class = Some modified_class;
nested = List.map (map_selectors_in_stmt f) r.nested;
}
| Starting_style r ->
Starting_style
{
r with
selector = f r.selector;
base_class = Some modified_class;
nested = List.map (map_selectors_in_stmt f) r.nested;
}
let pseudo_element_over_at_rule modifier rule =
let bc = Option.value (Output.base_class rule) ~default:"" in
let sel = Modifiers.to_selector modifier bc in
let modified_class = Rules_selector.extract_modified_class_name sel bc in
let content_rule =
regular ~selector:sel
~props:[ Css.content (Var (Var.reference Typography.content_var)) ]
~base_class:modified_class ()
in
let retarget =
Rules_selector.transform_selector_with_modifier sel bc modified_class
in
[ content_rule; retargeted ~modified_class retarget rule ]
let rename_class_in_stmt ~old_class ~new_class =
map_selectors_in_stmt
(Rules_selector.replace_class_in_selector ~old_class ~new_class)
let rebase_on_selector ~base_class ~selector rules =
match selector with
| Css.Selector.Class cls when String.equal cls base_class -> rules
| _ ->
List.map
(fun rule ->
match rule with
| Output.Regular ({ base_class = Some modified_class; _ } as r) ->
Output.Regular
{
r with
selector =
Rules_selector.transform_selector_with_modifier r.selector
base_class modified_class selector;
}
| rule -> rule)
rules
let rec wraps_in_at_rule = function
| Style.Supports_property _ | Style.Supports_condition _ | Style.Starting
| Style.Container _ ->
true
| Style.Not m -> wraps_in_at_rule m
| _ -> false
let emptied = function
| Output.Supports_query r ->
Output.Supports_query { r with props = []; nested = [] }
| Output.Starting_style r ->
Output.Starting_style { r with props = []; nested = [] }
| Output.Container_query r ->
Output.Container_query { r with props = []; nested = [] }
| Output.Media_query r ->
Output.Media_query { r with props = []; nested = [] }
| other -> other
let nest_inside_at_rule inner = function
| Output.Supports_query ({ nested; _ } as r) ->
Output.Supports_query { r with nested = inner :: nested }
| Output.Starting_style ({ nested; _ } as r) ->
Output.Starting_style { r with nested = inner :: nested }
| Output.Container_query ({ nested; _ } as r) ->
Output.Container_query { r with nested = inner :: nested }
| Output.Media_query ({ nested; _ } as r) ->
Output.Media_query { r with nested = inner :: nested }
| other -> other
let rewrite_at_rule_body modifier ~base_class ~selector ~modified_class
~modified_selector nested =
let modified_base_selector =
if wraps_in_at_rule modifier then None
else
match Modifiers.to_selector modifier base_class with
| selector -> Some selector
| exception Invalid_argument _ -> None
in
let rewrite inner_selector =
if Css.Selector.equal inner_selector selector then modified_selector
else
match modified_base_selector with
| Some modified_base_selector ->
Rules_selector.transform_selector_with_modifier modified_base_selector
base_class modified_class inner_selector
| None ->
Rules_selector.replace_class_in_selector ~old_class:base_class
~new_class:modified_class inner_selector
in
List.map (map_selectors_in_stmt rewrite) nested
let preserve_hover_gate has_hover rules =
if has_hover then
List.map
(function
| Output.Regular r -> Output.Regular { r with has_hover = true }
| rule -> rule)
rules
else rules
let requeried ~inner_condition ~old_class ~modified_class ~nested ~rebased rule
=
let modified_class =
Option.value (Output.base_class rule) ~default:modified_class
in
match rule with
| Regular { selector; props; has_hover; nested = inner; _ } ->
let inner_media =
rebuilt_media ~condition:inner_condition ~selector ~props
(rebased @ inner)
in
if has_hover then
media_query ~condition:hover_media ~selector ~props:[]
~base_class:modified_class ~nested:[ inner_media ] ()
else
media_query ~condition:inner_condition ~selector ~props
~base_class:modified_class ~nested:(rebased @ inner) ()
| Media_query { selector; props; nested = inner; _ }
| Container_query { selector; props; nested = inner; _ }
| Supports_query { selector; props; nested = inner; _ }
| Starting_style { selector; props; nested = inner; _ } ->
let rename = rename_class_in_stmt ~old_class ~new_class:modified_class in
let inner_media =
rebuilt_media ~condition:inner_condition ~selector ~props
(List.map rename nested @ inner)
in
nest_inside_at_rule inner_media (emptied rule)
let wrapped_media ~inner_condition ~selector ~props ~bc ~nested wrapper =
let modified_class = Option.value (Output.base_class wrapper) ~default:bc in
let rename = rename_class_in_stmt ~old_class:bc ~new_class:modified_class in
let inner_selector =
Rules_selector.replace_class_in_selector ~old_class:bc
~new_class:modified_class selector
in
let inner_media =
rebuilt_media ~condition:inner_condition ~selector:inner_selector ~props
(List.map rename nested)
in
nest_inside_at_rule inner_media wrapper
let rec apply_modifier_to_rule ?theme modifier = function
| Regular { selector; props; base_class; has_hover; _ }
when is_before_after modifier
&& dressed_by_inner ~selector ~has_hover
(Option.value base_class ~default:"") ->
let bc = Option.value base_class ~default:"" in
let content_rule, inner =
pseudo_element_over modifier ~selector ~has_hover bc props
in
[ content_rule; inner ]
| (Media_query _ | Container_query _ | Supports_query _ | Starting_style _) as
rule
when is_before_after modifier ->
pseudo_element_over_at_rule modifier rule
| Regular { selector; props; base_class; has_hover; _ } ->
let bc = Option.value base_class ~default:"" in
let rebase ~selector rules =
rebase_on_selector ~base_class:bc ~selector rules
in
let rules =
match modifier with
| Style.Pseudo_marker ->
let open Css.Selector in
pseudo_element_rules
~pseudo_selectors:[ Marker; Webkit_details_marker ]
~selector ~has_hover bc props "marker"
| Style.Pseudo_selection ->
let open Css.Selector in
pseudo_element_rules ~pseudo_selectors:[ Selection ] ~selector
~has_hover bc props "selection"
| Style.Not inner_modifier -> (
match inner_modifier with
| Style.In_bracket content -> handle_not_in_bracket content bc props
| Style.In_data attr -> handle_not_in_data attr bc props
| _ ->
handle_not_modifier ?theme ~has_hover inner_modifier bc selector
props)
| Style.Not_bracket content ->
rebase ~selector (handle_not_bracket content bc props)
| Style.In_bracket content ->
rebase ~selector (handle_in_bracket content bc props)
| Style.In_data attr -> rebase ~selector (handle_in_data attr bc props)
| Style.In_state (inner, name) ->
rebase ~selector (handle_in_state inner name bc props)
| Style.Group_not (inner, name_opt) ->
rebase ~selector (handle_group_not_modifier inner name_opt bc props)
| Style.Peer_not (inner, name_opt) ->
rebase ~selector (handle_peer_not_modifier inner name_opt bc props)
| Style.Named_group (inner, name) ->
rebase ~selector (handle_named_group inner name bc props)
| Style.Named_peer (inner, name) ->
rebase ~selector (handle_named_peer inner name bc props)
| Style.Not_named_group (inner, name) ->
rebase ~selector
(handle_not_named_group ~selector ~has_hover inner name bc props)
| Style.Has_named_group (inner, name) ->
rebase ~selector (handle_has_named_group inner name bc props)
| Style.In_named_group (inner, name) ->
rebase ~selector (handle_in_named_group inner name bc props)
| Style.Group_peer_named (inner, name) ->
rebase ~selector (handle_group_peer_named inner name bc props)
| _ -> (
try
[
modifier_to_rule_themed ?theme ~inner_has_hover:has_hover
modifier bc selector props;
]
with Invalid_argument _ -> [])
in
preserve_hover_gate has_hover rules
| Media_query
{ condition = inner_condition; selector; props; base_class; nested; _ }
when wraps_in_at_rule modifier ->
let bc = Option.value base_class ~default:"" in
apply_modifier_to_rule ?theme modifier
(regular ~selector:(Css.Selector.Class bc) ~props:[] ~base_class:bc ())
|> List.map (wrapped_media ~inner_condition ~selector ~props ~bc ~nested)
| Media_query
{ condition = inner_condition; selector; props; base_class; nested; _ } ->
apply_modifier_to_media_query ?theme modifier ~inner_condition ~selector
~props ~base_class ~nested
| ( Supports_query { nested; _ }
| Container_query { nested; _ }
| Starting_style { nested; _ } ) as output
when nested <> [] ->
apply_modifier_to_nested_output ?theme modifier output
| Supports_query { condition; selector; props; base_class; merge_key; _ } ->
apply_modifier_to_supports_query ?theme modifier ~condition ~selector
~props ~base_class ~merge_key
| Container_query { condition; selector; props; base_class; nested } ->
apply_modifier_to_container_query ?theme modifier ~condition ~selector
~props ~base_class ~nested
| Starting_style { selector; props; base_class; nested } ->
apply_modifier_to_starting_style ?theme modifier ~selector ~props
~base_class ~nested
and apply_modifier_to_nested_output ?theme modifier = function
| Supports_query { condition; selector; props; base_class; merge_key; nested }
->
apply_nested_at_rule ?theme modifier ~selector ~props ~base_class ~nested
~wrap_statement:(fun body -> Css.supports ~condition body)
~wrap_output:(fun ~selector ~base_class ~nested ->
supports_query ~condition ~selector ~props:[] ?base_class ?merge_key
~nested ())
| Container_query { condition; selector; props; base_class; nested } ->
apply_nested_at_rule ?theme modifier ~selector ~props ~base_class ~nested
~wrap_statement:(fun body -> Css.container ~condition body)
~wrap_output:(fun ~selector ~base_class ~nested ->
container_query ~condition ~selector ~props:[] ?base_class ~nested ())
| Starting_style { selector; props; base_class; nested } ->
apply_nested_at_rule ?theme modifier ~selector ~props ~base_class ~nested
~wrap_statement:Css.starting_style
~wrap_output:(fun ~selector ~base_class ~nested ->
starting_style ~selector ~props:[] ?base_class ~nested ())
| _ -> invalid_arg "nested at-rule output"
and apply_nested_at_rule ?theme modifier ~selector ~props ~base_class ~nested
~wrap_statement ~wrap_output =
let bc = Option.value base_class ~default:"" in
apply_modifier_to_rule ?theme modifier
(regular ~selector ~props ?base_class ())
|> List.map (fun outer ->
let modified_selector, modified_props, modified_base_class =
match outer with
| Regular { selector; props; base_class; _ }
| Media_query { selector; props; base_class; _ }
| Container_query { selector; props; base_class; _ }
| Starting_style { selector; props; base_class; _ }
| Supports_query { selector; props; base_class; _ } ->
(selector, props, base_class)
in
let modified_class = Option.value modified_base_class ~default:bc in
let nested =
rewrite_at_rule_body modifier ~base_class:bc ~selector ~modified_class
~modified_selector nested
in
let body =
(if modified_props = [] then []
else [ Css.rule ~selector:modified_selector modified_props ])
@ nested
in
let inner = wrap_statement body in
match outer with
| Regular { has_hover = true; _ } ->
media_query ~condition:hover_media ~selector:modified_selector
~props:[] ?base_class:modified_base_class ~nested:[ inner ] ()
| Regular _ ->
wrap_output ~selector:modified_selector
~base_class:modified_base_class ~nested:body
| Media_query ({ nested; _ } as r) ->
Media_query { r with props = []; nested = inner :: nested }
| (Container_query _ | Starting_style _ | Supports_query _) as wrapper ->
nest_inside_at_rule inner wrapper)
and apply_modifier_to_container_query ?theme modifier ~condition ~selector
~props ~base_class ~nested =
let inner = regular ~selector ~props ?base_class ~nested () in
let contained sel p = Css.container ~condition [ Css.rule ~selector:sel p ] in
apply_modifier_to_rule ?theme modifier inner
|> List.map (function
| Regular { selector; props; base_class; has_hover; nested; _ } ->
if has_hover then
media_query ~condition:hover_media ~selector ~props:[] ?base_class
~nested:(contained selector props :: nested)
()
else container_query ~condition ~selector ~props ?base_class ~nested ()
| Media_query { condition = outer; selector; props; base_class; nested; _ }
->
media_query ~condition:outer ~selector ~props:[] ?base_class
~nested:(contained selector props :: nested)
()
| Container_query { condition = outer; selector; props; base_class; nested }
->
container_query ~condition:outer ~selector ~props:[] ?base_class
~nested:(contained selector props :: nested)
()
| (Supports_query { selector; props; nested; _ } as wrapper)
| (Starting_style { selector; props; nested; _ } as wrapper) ->
nest_inside_at_rule
(Css.container ~condition (Css.rule ~selector props :: nested))
(emptied wrapper))
and apply_modifier_to_supports_query ?theme modifier ~condition ~selector ~props
~base_class ~merge_key =
let inner = regular ~selector ~props ?base_class ?merge_key () in
let props_of = without_twin_content modifier ~props in
let wrap_supports_in_media outer sel p bc nested =
let supports_stmt = Css.supports ~condition [ Css.rule ~selector:sel p ] in
media_query ~condition:outer ~selector:sel ~props:[] ?base_class:bc
~nested:(supports_stmt :: nested) ()
in
let wrap_supports_in_at_rule = function
| Container_query ({ selector; props; nested; _ } as r) ->
let supports_stmt =
Css.supports ~condition [ Css.rule ~selector props ]
in
Container_query { r with props = []; nested = supports_stmt :: nested }
| Supports_query ({ selector; props; nested; _ } as r) ->
let supports_stmt =
Css.supports ~condition [ Css.rule ~selector props ]
in
Supports_query { r with props = []; nested = supports_stmt :: nested }
| Starting_style ({ selector; props; nested; _ } as r) ->
let supports_stmt =
Css.supports ~condition [ Css.rule ~selector props ]
in
Starting_style { r with props = []; nested = supports_stmt :: nested }
| other -> other
in
apply_modifier_to_rule ?theme modifier inner
|> List.map (function
| Regular { selector; props; base_class; has_hover; _ } ->
let props = props_of props in
if has_hover then
wrap_supports_in_media hover_media selector props base_class []
else
supports_query ~condition ~selector ~props ?base_class ?merge_key ()
| Media_query { condition = outer; selector; props; base_class; nested; _ }
->
wrap_supports_in_media outer selector (props_of props) base_class nested
| (Container_query _ | Supports_query _ | Starting_style _) as outer ->
wrap_supports_in_at_rule outer)
and apply_modifier_to_starting_style ?theme modifier ~selector ~props
~base_class ~nested =
let inner = regular ~selector ~props ?base_class ~nested () in
let started sel p = Css.starting_style [ Css.rule ~selector:sel p ] in
apply_modifier_to_rule ?theme modifier inner
|> List.map (function
| Regular { selector; props; base_class; has_hover; nested; _ } ->
if has_hover then
media_query ~condition:hover_media ~selector ~props:[] ?base_class
~nested:(started selector props :: nested)
()
else starting_style ~selector ~props ?base_class ~nested ()
| Media_query { condition = outer; selector; props; base_class; nested; _ }
->
media_query ~condition:outer ~selector ~props:[] ?base_class
~nested:(started selector props :: nested)
()
| (Container_query { selector; props; nested; _ } as wrapper)
| (Supports_query { selector; props; nested; _ } as wrapper) ->
nest_inside_at_rule
(Css.starting_style (Css.rule ~selector props :: nested))
(emptied wrapper)
| other -> other)
and rebased_by_variant ?theme modifier ~base_class ~modified_class sel =
match
List.filter_map
(function Regular { selector; _ } -> Some selector | _ -> None)
(apply_modifier_to_rule ?theme modifier
(regular ~selector:sel ~props:[] ~base_class ()))
with
| [] ->
Rules_selector.replace_class_in_selector ~old_class:base_class
~new_class:modified_class sel
| selectors -> List.nth selectors (List.length selectors - 1)
and apply_modifier_to_media_query ?theme modifier ~inner_condition ~selector
~props ~base_class ~nested =
let bc = Option.value base_class ~default:"" in
let modified_base_selector = Modifiers.to_selector modifier bc in
let modified_class =
Rules_selector.extract_modified_class_name modified_base_selector bc
in
let new_selector =
Rules_selector.transform_selector_with_modifier modified_base_selector bc
modified_class selector
in
let rebased =
List.map
(map_selectors_in_stmt
(rebased_by_variant ?theme modifier ~base_class:bc ~modified_class))
nested
in
let inner_media =
rebuilt_media ~condition:inner_condition ~selector:new_selector ~props
rebased
in
let wrap_in_media condition =
[
media_query ~condition ~selector:new_selector ~props:[]
~base_class:modified_class ~nested:[ inner_media ] ();
]
in
match media_condition_of_modifier modifier with
| Some condition -> wrap_in_media condition
| None -> (
match modifier with
| Style.Responsive _ | Style.Min_responsive _ | Style.Max_responsive _
| Style.Min_arbitrary _ | Style.Max_arbitrary _
| Style.Min_arbitrary_length _ | Style.Max_arbitrary_length _
| Style.Custom_responsive _ | Style.Min_custom _ | Style.Max_custom _ ->
let outer_condition, _ =
responsive_modifier_condition ?theme modifier
in
wrap_in_media outer_condition
| _ when Modifiers.is_hover modifier ->
wrap_in_media hover_media
| Style.Arbitrary_selector content ->
arbitrary_selector_in_media content bc selector props ~inner_condition
~nested
| _ ->
apply_modifier_to_rule ?theme modifier
(regular ~selector ~props ~base_class:bc ())
|> List.map
(requeried ~inner_condition ~old_class:bc ~modified_class ~nested
~rebased))
let handle_modified ?theme util_inner modifier base_style =
let inner_util, style =
match util_inner with
| Utility.Modified (inner_mod, u)
when Style.equal_modifier inner_mod modifier ->
(u, base_style)
| _ ->
(util_inner, base_style)
in
let base_class_name = Utility.to_class inner_util in
let base_rules = extract_fn base_class_name inner_util style in
let expanded = List.map (apply_modifier_to_rule ?theme modifier) base_rules in
match modifier with
| Style.Pseudo_marker | Style.Pseudo_selection ->
let rec interleave rows =
let heads, tails =
List.fold_right
(fun row (heads, tails) ->
match row with
| [] -> (heads, tails)
| head :: tail -> (head :: heads, tail :: tails))
rows ([], [])
in
match heads with [] -> [] | _ -> heads @ interleave tails
in
interleave expanded
| Style.Pseudo_before | Style.Pseudo_after ->
let declared = ref [] in
List.concat expanded
|> List.filter (fun rule ->
match rule with
| Regular { selector; props; _ }
when List.exists reads_content_var props ->
let content_alone = List.for_all reads_content_var props in
let seen = List.mem selector !declared in
declared := selector :: !declared;
not (content_alone && seen)
| _ -> true)
| _ -> List.concat expanded
let handle_group class_name util_inner styles =
match util_inner with
| Utility.Group util_items ->
let style_item util_item =
let class_name_item = Utility.to_class util_item in
extract_fn class_name_item util_item style_item
in
List.map2 extract_item styles util_items |> List.concat
| _ -> List.concat_map (extract_fn class_name util_inner) styles
(** Replace placeholder selector "_" with the actual utility class selector.
Matches the node rather than rendering the selector to compare it: this runs
per rule for every utility carrying an explicit [rule_list] (prose, forms,
gradients). *)
let resolve_placeholder_selector sel selector =
match selector with Css.Selector.Class "_" -> sel | _ -> selector
let build_output statements =
statements
|> List.filter_map (fun inner ->
match Css.as_rule inner with
| Some (selector, declarations, _) ->
Some (build_output selector declarations)
| None -> None)
(** Extract outputs from a [@media] statement's inner rules *)
let ~class_name ~sel condition statements =
extract_rule_outputs
(fun selector declarations ->
let actual_selector = resolve_placeholder_selector sel selector in
media_query ~condition ~selector:actual_selector ~props:declarations
~base_class:class_name ())
statements
(** Extract outputs from a [@container] statement's inner rules *)
let ~class_name condition statements =
extract_rule_outputs
(fun selector declarations ->
container_query ~condition ~selector ~props:declarations
~base_class:class_name ())
statements
(** Extract outputs from a [@supports] statement's inner rules. A guard nested
inside the block stays inside it - Tailwind nests the [color-mix()] guard in
the relative colour one for a shadow list with a [currentcolor] layer - so
such a block goes to [nested] whole, its placeholders resolved, and the
wrapper carries no declarations of its own. *)
let ~class_name ~sel ?merge_key condition statements =
if List.exists (fun stmt -> Option.is_some (Css.as_supports stmt)) statements
then
let resolve = map_selectors_in_stmt (resolve_placeholder_selector sel) in
[
supports_query ~condition ~selector:sel ~props:[] ~base_class:class_name
?merge_key
~nested:(List.map resolve statements)
();
]
else
extract_rule_outputs
(fun selector declarations ->
let actual_selector = resolve_placeholder_selector sel selector in
supports_query ~condition ~selector:actual_selector ~props:declarations
~base_class:class_name ?merge_key ())
statements
(** Process a non-nested statement from a rule_list, returning outputs. Sets
[has_regular_rules] to true when a regular rule is found. *)
let process_rule_list_stmt ~sel ~class_name ?merge_key ~has_regular_rules stmt =
match Css.as_rule stmt with
| Some (selector, declarations, nested) ->
has_regular_rules := true;
let actual_selector = resolve_placeholder_selector sel selector in
Some
[
regular ~selector:actual_selector ~props:declarations
~base_class:class_name ~nested ?merge_key ();
]
| None -> (
match Css.as_media stmt with
| Some (condition, statements) ->
Some (extract_media_outputs ~class_name ~sel condition statements)
| None -> (
match Css.as_container stmt with
| Some (_, Some condition, statements) ->
Some (extract_container_outputs ~class_name condition statements)
| Some (_, None, _) -> None
| None -> (
match Css.as_supports stmt with
| Some (condition, statements) ->
Some
(extract_supports_outputs ~class_name ~sel ?merge_key
condition statements)
| None -> None)))
let ~sel ~class_name ?merge_key ~props rule_list =
let nested_media = rule_list |> List.filter Css.is_nested_media in
let has_regular_rules = ref false in
let ordered_entries =
rule_list
|> List.concat_map (fun stmt ->
if Css.is_nested_media stmt then
[]
else if Css.is_nested_supports stmt then
match Css.as_supports stmt with
| Some (condition, statements) ->
extract_supports_outputs ~class_name ~sel ?merge_key condition
statements
| None -> []
else
Option.value ~default:[]
(process_rule_list_stmt ~sel ~class_name ?merge_key
~has_regular_rules stmt))
in
let base_rule =
if props = [] && nested_media = [] then []
else
[
regular ~selector:sel ~props ~base_class:class_name ~nested:nested_media
?merge_key ();
]
in
if !has_regular_rules then ordered_entries @ base_rule
else base_rule @ ordered_entries
let prefix_anchors p selector =
let anchored name =
let is_anchor kind =
name = kind || String.starts_with ~prefix:(kind ^ "/") name
in
is_anchor "group" || is_anchor "peer"
in
Css.Selector.map
(function
| Css.Selector.Class name when anchored name ->
Css.Selector.Class (p ^ ":" ^ name)
| other -> other)
selector
let moved_with_prefix p selector base_class nested =
let selector = prefix_anchors p selector in
let nested = List.map (map_selectors_in_stmt (prefix_anchors p)) nested in
match base_class with
| None -> (selector, None, nested)
| Some c ->
let written = p ^ ":" ^ c in
( Rules_selector.replace_class_in_selector ~old_class:c ~new_class:written
selector,
Some written,
List.map (rename_class_in_stmt ~old_class:c ~new_class:written) nested
)
let written_with_prefix p output =
let moved = moved_with_prefix p in
match output with
| Output.Regular r ->
let selector, base_class, nested =
moved r.selector r.base_class r.nested
in
Output.Regular { r with selector; base_class; nested }
| Output.Media_query r ->
let selector, base_class, nested =
moved r.selector r.base_class r.nested
in
Output.Media_query { r with selector; base_class; nested }
| Output.Container_query r ->
let selector, base_class, nested =
moved r.selector r.base_class r.nested
in
Output.Container_query { r with selector; base_class; nested }
| Output.Starting_style r ->
let selector, base_class, nested =
moved r.selector r.base_class r.nested
in
Output.Starting_style { r with selector; base_class; nested }
| Output.Supports_query r ->
let selector, base_class, nested =
moved r.selector r.base_class r.nested
in
Output.Supports_query { r with selector; base_class; nested }
let utility_style theme util =
let style = Utility.to_style theme util in
if theme.Scheme.important then Style.map_important style else style
let outputs ?(theme = Scheme.default) ?order_tbl util =
let rec utility_order = function
| Utility.Base b -> Some (Utility.order b)
| Utility.Modified (_, u)
| Utility.Important (_, u)
| Utility.Aliased (_, u)
| Utility.Theme_bound (_, u) ->
utility_order u
| Utility.Group _ -> None
in
let rec class_name util_inner = function
| Style.Style { props; rules; merge_key; pseudo_suffix; _ } -> (
(match (order_tbl, utility_order util_inner) with
| Some tbl, Some order ->
if not (Hashtbl.mem tbl class_name) then
Hashtbl.add tbl class_name order
| _ -> ());
let sel =
match pseudo_suffix with
| None -> Css.Selector.Class class_name
| Some pseudo ->
Css.Selector.compound [ Css.Selector.Class class_name; pseudo ]
in
match rules with
| None ->
if props = [] then []
else
[
regular ~selector:sel ~props ~base_class:class_name ?merge_key
();
]
| Some rule_list ->
extract_style_with_rules ~sel ~class_name ?merge_key ~props
rule_list)
| Style.Modified (modifier, base_style) ->
handle_modified ~theme util_inner modifier base_style extract_with_class
| Style.Group styles ->
handle_group class_name util_inner styles extract_with_class
in
let class_name = Utility.to_class util in
let prefix = theme.Scheme.prefix in
let style = utility_style theme util in
let results = extract_with_class class_name util style in
match prefix with
| None -> results
| Some p -> List.map (written_with_prefix p) results