phoenix_duskmoon 4.3.2 → 4.4.1
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/CHANGELOG.md +15 -0
- package/package.json +1 -1
- package/priv/static/phoenix_duskmoon.css +101 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [4.4.1](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v4.4.0...v4.4.1) (2023-04-22)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Fix page header and page footer responsive design. ([5bb5ed6](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/5bb5ed6de68db74b586007359d91fd14a736ed0d))
|
|
7
|
+
|
|
8
|
+
# [4.4.0](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v4.3.2...v4.4.0) (2023-04-20)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* Add responsive feature to table, fix let to :let, fix tab styles. ([037ca1b](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/037ca1bd87204b1b85a6fd98a6c7cf73cd2be679))
|
|
14
|
+
* Rename table rows to data, change actionbar struct. ([9cb0c85](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/commit/9cb0c858a6c322a4c82d1cd5c58ee7b2691e3fe1))
|
|
15
|
+
|
|
1
16
|
## [4.3.2](https://github.com/gsmlg-dev/phoenix-duskmoon-ui/compare/v4.3.1...v4.3.2) (2023-04-17)
|
|
2
17
|
|
|
3
18
|
|
package/package.json
CHANGED
|
@@ -26,6 +26,11 @@
|
|
|
26
26
|
position: relative;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
+
.sticky {
|
|
30
|
+
position: -webkit-sticky;
|
|
31
|
+
position: sticky;
|
|
32
|
+
}
|
|
33
|
+
|
|
29
34
|
.top-14 {
|
|
30
35
|
top: 3.5rem;
|
|
31
36
|
}
|
|
@@ -38,6 +43,22 @@
|
|
|
38
43
|
top: 0.5rem;
|
|
39
44
|
}
|
|
40
45
|
|
|
46
|
+
.top-12 {
|
|
47
|
+
top: 3rem;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.left-0 {
|
|
51
|
+
left: 0px;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.right-0 {
|
|
55
|
+
right: 0px;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.top-0 {
|
|
59
|
+
top: 0px;
|
|
60
|
+
}
|
|
61
|
+
|
|
41
62
|
.isolate {
|
|
42
63
|
isolation: isolate;
|
|
43
64
|
}
|
|
@@ -94,6 +115,10 @@
|
|
|
94
115
|
display: table;
|
|
95
116
|
}
|
|
96
117
|
|
|
118
|
+
.grid {
|
|
119
|
+
display: grid;
|
|
120
|
+
}
|
|
121
|
+
|
|
97
122
|
.hidden {
|
|
98
123
|
display: none;
|
|
99
124
|
}
|
|
@@ -130,14 +155,6 @@
|
|
|
130
155
|
height: 1.25rem;
|
|
131
156
|
}
|
|
132
157
|
|
|
133
|
-
.h-\[34px\] {
|
|
134
|
-
height: 34px;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
.h-\[40px\] {
|
|
138
|
-
height: 40px;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
158
|
.min-h-\[200px\] {
|
|
142
159
|
min-height: 200px;
|
|
143
160
|
}
|
|
@@ -217,6 +234,14 @@
|
|
|
217
234
|
user-select: none;
|
|
218
235
|
}
|
|
219
236
|
|
|
237
|
+
.grid-cols-2 {
|
|
238
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.grid-cols-\[6em_auto\] {
|
|
242
|
+
grid-template-columns: 6em auto;
|
|
243
|
+
}
|
|
244
|
+
|
|
220
245
|
.flex-row {
|
|
221
246
|
flex-direction: row;
|
|
222
247
|
}
|
|
@@ -257,6 +282,15 @@
|
|
|
257
282
|
gap: 0.5rem;
|
|
258
283
|
}
|
|
259
284
|
|
|
285
|
+
.gap-x-2 {
|
|
286
|
+
-moz-column-gap: 0.5rem;
|
|
287
|
+
column-gap: 0.5rem;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.gap-y-4 {
|
|
291
|
+
row-gap: 1rem;
|
|
292
|
+
}
|
|
293
|
+
|
|
260
294
|
.-space-x-px > :not([hidden]) ~ :not([hidden]) {
|
|
261
295
|
--tw-space-x-reverse: 0;
|
|
262
296
|
margin-right: calc(-1px * var(--tw-space-x-reverse));
|
|
@@ -410,6 +444,16 @@
|
|
|
410
444
|
padding-bottom: 5rem;
|
|
411
445
|
}
|
|
412
446
|
|
|
447
|
+
.px-8 {
|
|
448
|
+
padding-left: 2rem;
|
|
449
|
+
padding-right: 2rem;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.px-12 {
|
|
453
|
+
padding-left: 3rem;
|
|
454
|
+
padding-right: 3rem;
|
|
455
|
+
}
|
|
456
|
+
|
|
413
457
|
.py-3 {
|
|
414
458
|
padding-top: 0.75rem;
|
|
415
459
|
padding-bottom: 0.75rem;
|
|
@@ -424,10 +468,6 @@
|
|
|
424
468
|
padding-top: 1rem;
|
|
425
469
|
}
|
|
426
470
|
|
|
427
|
-
.text-left {
|
|
428
|
-
text-align: left;
|
|
429
|
-
}
|
|
430
|
-
|
|
431
471
|
.text-center {
|
|
432
472
|
text-align: center;
|
|
433
473
|
}
|
|
@@ -510,6 +550,16 @@
|
|
|
510
550
|
color: rgb(96 165 250 / var(--tw-text-opacity));
|
|
511
551
|
}
|
|
512
552
|
|
|
553
|
+
.text-teal-600 {
|
|
554
|
+
--tw-text-opacity: 1;
|
|
555
|
+
color: rgb(13 148 136 / var(--tw-text-opacity));
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
.text-teal-400 {
|
|
559
|
+
--tw-text-opacity: 1;
|
|
560
|
+
color: rgb(45 212 191 / var(--tw-text-opacity));
|
|
561
|
+
}
|
|
562
|
+
|
|
513
563
|
.underline {
|
|
514
564
|
-webkit-text-decoration-line: underline;
|
|
515
565
|
text-decoration-line: underline;
|
|
@@ -729,6 +779,16 @@
|
|
|
729
779
|
}
|
|
730
780
|
}
|
|
731
781
|
|
|
782
|
+
.before\:font-bold::before {
|
|
783
|
+
content: var(--tw-content);
|
|
784
|
+
font-weight: 700;
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
.before\:content-\[attr\(data-label\)\]::before {
|
|
788
|
+
--tw-content: attr(data-label);
|
|
789
|
+
content: var(--tw-content);
|
|
790
|
+
}
|
|
791
|
+
|
|
732
792
|
.after\:content-\[\'\:\'\]::after {
|
|
733
793
|
--tw-content: ':';
|
|
734
794
|
content: var(--tw-content);
|
|
@@ -752,6 +812,10 @@
|
|
|
752
812
|
z-index: 20;
|
|
753
813
|
}
|
|
754
814
|
|
|
815
|
+
.peer:checked ~ .peer-checked\:flex {
|
|
816
|
+
display: flex;
|
|
817
|
+
}
|
|
818
|
+
|
|
755
819
|
@media (prefers-color-scheme: dark) {
|
|
756
820
|
.dark\:bg-blue-900 {
|
|
757
821
|
--tw-bg-opacity: 1;
|
|
@@ -778,13 +842,38 @@
|
|
|
778
842
|
display: inline-flex;
|
|
779
843
|
}
|
|
780
844
|
|
|
845
|
+
.md\:table-cell {
|
|
846
|
+
display: table-cell;
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
.md\:table-header-group {
|
|
850
|
+
display: table-header-group;
|
|
851
|
+
}
|
|
852
|
+
|
|
781
853
|
.md\:hidden {
|
|
782
854
|
display: none;
|
|
783
855
|
}
|
|
856
|
+
|
|
857
|
+
.md\:grid-cols-3 {
|
|
858
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
.md\:before\:hidden::before {
|
|
862
|
+
content: var(--tw-content);
|
|
863
|
+
display: none;
|
|
864
|
+
}
|
|
784
865
|
}
|
|
785
866
|
|
|
786
867
|
@media (min-width: 1024px) {
|
|
868
|
+
.lg\:flex {
|
|
869
|
+
display: flex;
|
|
870
|
+
}
|
|
871
|
+
|
|
787
872
|
.lg\:inline-flex {
|
|
788
873
|
display: inline-flex;
|
|
789
874
|
}
|
|
875
|
+
|
|
876
|
+
.lg\:hidden {
|
|
877
|
+
display: none;
|
|
878
|
+
}
|
|
790
879
|
}
|