@pzh-ui/css 0.0.71 → 0.0.73

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pzh-ui/css",
3
- "version": "0.0.71",
3
+ "version": "0.0.73",
4
4
  "description": "Contains default styling for projects whitin Provincie Zuid-Holland.",
5
5
  "license": "ISC",
6
6
  "publishConfig": {
@@ -21,7 +21,7 @@
21
21
  "react-datepicker": "^4.7.0",
22
22
  "react-toastify": "^9.1.2"
23
23
  },
24
- "gitHead": "a335068588e469ce0060f006d887215bd9af43a7",
24
+ "gitHead": "fb0ef4cadbb900cdce75da185bf203beeac47997",
25
25
  "devDependencies": {
26
26
  "tailwindcss": "^3.3.2"
27
27
  }
package/src/tailwind.css CHANGED
@@ -1443,8 +1443,7 @@ select {
1443
1443
  font-family: 'Karbon Regular', sans-serif;
1444
1444
  font-weight: 400;
1445
1445
  font-size: 0.8rem;
1446
- box-shadow:
1447
- 0px 18px 60px rgba(0, 0, 0, 0.07),
1446
+ box-shadow: 0px 18px 60px rgba(0, 0, 0, 0.07),
1448
1447
  0px 4.02054px 13.4018px rgba(0, 0, 0, 0.0417275),
1449
1448
  0px 1.19702px 3.99006px rgba(0, 0, 0, 0.0282725);
1450
1449
  border-style: none;
@@ -1577,6 +1576,34 @@ select {
1577
1576
  }
1578
1577
  }
1579
1578
 
1579
+ table {
1580
+ font-size: 1.25rem !important;
1581
+ line-height: 1.875rem !important;
1582
+ }
1583
+
1584
+ table, table td, table th {
1585
+ border-width: 1px;
1586
+ --tw-border-opacity: 1;
1587
+ border-color: rgb(92 92 92 / var(--tw-border-opacity));
1588
+ }
1589
+
1590
+ table tr th {
1591
+ --tw-bg-opacity: 1;
1592
+ background-color: rgb(248 248 248 / var(--tw-bg-opacity));
1593
+ font-weight: 700;
1594
+ font-family: 'Karbon Medium', sans-serif;
1595
+ }
1596
+
1597
+ table tr {
1598
+ border-bottom-width: 1px;
1599
+ --tw-border-opacity: 1;
1600
+ border-color: rgb(92 92 92 / var(--tw-border-opacity));
1601
+ }
1602
+
1603
+ table td, table th {
1604
+ padding: 0.5rem;
1605
+ }
1606
+
1580
1607
  .sr-only {
1581
1608
  position: absolute;
1582
1609
  width: 1px;
@@ -1752,6 +1779,10 @@ select {
1752
1779
  margin-bottom: 0.5rem;
1753
1780
  }
1754
1781
 
1782
+ .mb-8 {
1783
+ margin-bottom: 2rem;
1784
+ }
1785
+
1755
1786
  .mb-\[1000px\] {
1756
1787
  margin-bottom: 1000px;
1757
1788
  }
@@ -1860,10 +1891,6 @@ select {
1860
1891
  height: 1.5rem;
1861
1892
  }
1862
1893
 
1863
- .h-7 {
1864
- height: 1.75rem;
1865
- }
1866
-
1867
1894
  .h-8 {
1868
1895
  height: 2rem;
1869
1896
  }
@@ -2010,10 +2037,32 @@ select {
2010
2037
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
2011
2038
  }
2012
2039
 
2040
+ .scale-100 {
2041
+ --tw-scale-x: 1;
2042
+ --tw-scale-y: 1;
2043
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
2044
+ }
2045
+
2046
+ .scale-90 {
2047
+ --tw-scale-x: .9;
2048
+ --tw-scale-y: .9;
2049
+ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
2050
+ }
2051
+
2013
2052
  .transform {
2014
2053
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
2015
2054
  }
2016
2055
 
2056
+ @keyframes pulse {
2057
+ 50% {
2058
+ opacity: .5;
2059
+ }
2060
+ }
2061
+
2062
+ .animate-pulse {
2063
+ animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
2064
+ }
2065
+
2017
2066
  @keyframes spin {
2018
2067
  to {
2019
2068
  transform: rotate(360deg);
@@ -2032,6 +2081,12 @@ select {
2032
2081
  cursor: pointer;
2033
2082
  }
2034
2083
 
2084
+ .select-none {
2085
+ -webkit-user-select: none;
2086
+ -moz-user-select: none;
2087
+ user-select: none;
2088
+ }
2089
+
2035
2090
  .resize-none {
2036
2091
  resize: none;
2037
2092
  }
@@ -2135,6 +2190,11 @@ select {
2135
2190
  border-radius: 0.375rem;
2136
2191
  }
2137
2192
 
2193
+ .rounded-t {
2194
+ border-top-left-radius: 0.25rem;
2195
+ border-top-right-radius: 0.25rem;
2196
+ }
2197
+
2138
2198
  .rounded-t-md {
2139
2199
  border-top-left-radius: 0.375rem;
2140
2200
  border-top-right-radius: 0.375rem;
@@ -2273,6 +2333,10 @@ select {
2273
2333
  background-color: rgb(213 213 213 / var(--tw-bg-opacity));
2274
2334
  }
2275
2335
 
2336
+ .bg-pzh-gray-800\/10 {
2337
+ background-color: rgb(34 34 34 / 0.1);
2338
+ }
2339
+
2276
2340
  .bg-pzh-green {
2277
2341
  --tw-bg-opacity: 1;
2278
2342
  background-color: rgb(0 128 77 / var(--tw-bg-opacity));
@@ -2355,16 +2419,6 @@ select {
2355
2419
  padding-bottom: 0px !important;
2356
2420
  }
2357
2421
 
2358
- .px-1 {
2359
- padding-left: 0.25rem;
2360
- padding-right: 0.25rem;
2361
- }
2362
-
2363
- .px-1\.5 {
2364
- padding-left: 0.375rem;
2365
- padding-right: 0.375rem;
2366
- }
2367
-
2368
2422
  .px-2 {
2369
2423
  padding-left: 0.5rem;
2370
2424
  padding-right: 0.5rem;
@@ -2472,6 +2526,10 @@ select {
2472
2526
  padding-top: 15px;
2473
2527
  }
2474
2528
 
2529
+ .pt-px {
2530
+ padding-top: 1px;
2531
+ }
2532
+
2475
2533
  .text-left {
2476
2534
  text-align: left;
2477
2535
  }
@@ -2604,6 +2662,11 @@ select {
2604
2662
  color: rgb(191 191 191 / var(--tw-text-opacity));
2605
2663
  }
2606
2664
 
2665
+ .text-pzh-gray-500 {
2666
+ --tw-text-opacity: 1;
2667
+ color: rgb(131 131 131 / var(--tw-text-opacity));
2668
+ }
2669
+
2607
2670
  .text-pzh-gray-600 {
2608
2671
  --tw-text-opacity: 1;
2609
2672
  color: rgb(92 92 92 / var(--tw-text-opacity));
@@ -2745,6 +2808,12 @@ select {
2745
2808
  transition-duration: 150ms;
2746
2809
  }
2747
2810
 
2811
+ .transition-\[transform\2c opacity\] {
2812
+ transition-property: transform,opacity;
2813
+ transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
2814
+ transition-duration: 150ms;
2815
+ }
2816
+
2748
2817
  .transition-all {
2749
2818
  transition-property: all;
2750
2819
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
@@ -2757,6 +2826,10 @@ select {
2757
2826
  transition-duration: 150ms;
2758
2827
  }
2759
2828
 
2829
+ .duration-100 {
2830
+ transition-duration: 100ms;
2831
+ }
2832
+
2760
2833
  .duration-150 {
2761
2834
  transition-duration: 150ms;
2762
2835
  }
@@ -2829,6 +2902,22 @@ b {
2829
2902
  font-family: 'Karbon Medium', sans-serif;
2830
2903
  }
2831
2904
 
2905
+ ul li ul li {
2906
+ list-style-type: circle;
2907
+ }
2908
+
2909
+ ul li ul li ul li {
2910
+ list-style-type: square;
2911
+ }
2912
+
2913
+ ol li ol li {
2914
+ list-style-type: lower-alpha;
2915
+ }
2916
+
2917
+ ol li ol li ol li {
2918
+ list-style-type: lower-roman;
2919
+ }
2920
+
2832
2921
  .font-normal {
2833
2922
  font-family: 'Karbon Regular', sans-serif;
2834
2923
  }
@@ -3001,6 +3090,10 @@ b {
3001
3090
  opacity: 1;
3002
3091
  }
3003
3092
 
3093
+ .group:hover .group-hover\:opacity-40 {
3094
+ opacity: 0.4;
3095
+ }
3096
+
3004
3097
  .prose-a\:text-pzh-green :is(:where(a):not(:where([class~="not-prose"] *))) {
3005
3098
  --tw-text-opacity: 1;
3006
3099
  color: rgb(0 128 77 / var(--tw-text-opacity));
@@ -44,6 +44,22 @@ b {
44
44
  font-family: 'Karbon Medium', sans-serif;
45
45
  }
46
46
 
47
+ ul li ul li {
48
+ list-style-type: circle;
49
+ }
50
+
51
+ ul li ul li ul li {
52
+ list-style-type: square;
53
+ }
54
+
55
+ ol li ol li {
56
+ list-style-type: lower-alpha;
57
+ }
58
+
59
+ ol li ol li ol li {
60
+ list-style-type: lower-roman;
61
+ }
62
+
47
63
  .font-normal {
48
64
  font-family: 'Karbon Regular', sans-serif;
49
65
  }
@@ -143,8 +159,7 @@ b {
143
159
  font-family: 'Karbon Regular', sans-serif;
144
160
  font-weight: 400;
145
161
  font-size: 0.8rem;
146
- box-shadow:
147
- 0px 18px 60px rgba(0, 0, 0, 0.07),
162
+ box-shadow: 0px 18px 60px rgba(0, 0, 0, 0.07),
148
163
  0px 4.02054px 13.4018px rgba(0, 0, 0, 0.0417275),
149
164
  0px 1.19702px 3.99006px rgba(0, 0, 0, 0.0282725);
150
165
  @apply text-pzh-blue-dark border-none;
@@ -252,4 +267,24 @@ b {
252
267
  opacity: 1;
253
268
  }
254
269
  }
270
+
271
+ table {
272
+ @apply !text-m;
273
+ }
274
+
275
+ table, table td, table th {
276
+ @apply border border-pzh-gray-600;
277
+ }
278
+
279
+ table tr th {
280
+ @apply bg-pzh-gray-100 font-bold;
281
+ }
282
+
283
+ table tr {
284
+ @apply border-b border-pzh-gray-600;
285
+ }
286
+
287
+ table td, table th {
288
+ @apply p-2;
289
+ }
255
290
  }