ywana-core8 0.0.239 → 0.0.243

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/dist/index.css CHANGED
@@ -535,7 +535,9 @@ input:checked ~ .checkmark:after {
535
535
  }
536
536
  .property {
537
537
  flex:1;
538
+ max-height: 3rem;
538
539
  display: flex;
540
+ flex-direction: row;
539
541
  }
540
542
 
541
543
  .property-name {
@@ -543,8 +545,9 @@ input:checked ~ .checkmark:after {
543
545
  overflow: hidden;
544
546
  text-overflow: ellipsis;
545
547
  white-space: nowrap;
546
- padding: .5rem 0 .5rem .5rem;
547
-
548
+ display: flex;
549
+ align-items: center;
550
+ padding: .5rem;
548
551
  }
549
552
 
550
553
  .property-value {
@@ -552,7 +555,22 @@ input:checked ~ .checkmark:after {
552
555
  overflow: hidden;
553
556
  text-overflow: ellipsis;
554
557
  white-space: nowrap;
555
- padding: .5rem .5rem .5rem 0
558
+ display: flex;
559
+ align-items: center;
560
+ position: relative;
561
+ }
562
+
563
+ .property-value>input {
564
+ width: 100%;
565
+ height: 100%;
566
+ border: solid 0px;
567
+ background-color: rgba(240,240,240,.5);
568
+ padding: .5rem;
569
+ }
570
+
571
+ .property-value>.icon {
572
+ position: absolute;
573
+ right: .5rem;
556
574
  }
557
575
  .radio {
558
576
  flex: 1;
@@ -892,6 +910,175 @@ input:read-only ~ label,
892
910
  background-color: var(--primary-color-lighter);
893
911
  }
894
912
 
913
+ .textarea {
914
+ flex: 1;
915
+ position: relative;
916
+ padding-top: 1.5rem;
917
+ overflow: hidden;
918
+ display: flex;
919
+ min-height: 3.5;
920
+ }
921
+
922
+ .textarea.no-label {
923
+ padding-top: .5rem;
924
+ padding-bottom: .5rem;
925
+ }
926
+
927
+ .textarea > textarea {
928
+ flex: 1;
929
+ padding: 10px 10px 10px .5rem;
930
+ display: block;
931
+ border: none;
932
+ border-bottom: 1px solid var(--divider-color);
933
+ overflow: hidden;
934
+ font-size: 1rem;
935
+ color: var(--text-color);
936
+ background-color: var(--paper-color);
937
+ }
938
+
939
+ .textarea > textarea:focus {
940
+ outline: none;
941
+ }
942
+
943
+ .textarea>.icon {
944
+ position: absolute;
945
+ top: 1.5rem;
946
+ right: .2rem;
947
+ color: rgba(150,150,150,1);
948
+ }
949
+
950
+ .textarea-date>.icon,
951
+ .textarea-DATE>.icon {
952
+ right: 2.5rem;
953
+ }
954
+
955
+ .textarea > label {
956
+ color: var(--primary-color);
957
+ font-size: .9rem;
958
+ font-weight: normal;
959
+ position: absolute;
960
+ pointer-events: none;
961
+ left: .4rem;
962
+ top: 2rem;
963
+ transition: 0.2s ease all;
964
+ -moz-transition: 0.2s ease all;
965
+ -webkit-transition: 0.2s ease all;
966
+ }
967
+
968
+ textarea:-moz-read-only {
969
+ background-color: rgba(200,200,200,.1);
970
+ border: 0px !important;
971
+ }
972
+
973
+ textarea:read-only {
974
+ background-color: rgba(200,200,200,.1);
975
+ border: 0px !important;
976
+ }
977
+
978
+ .textarea textarea[type="date"] ~ label {
979
+ top: .3rem;
980
+ font-size: .8rem;
981
+ color: var(--primary-color);
982
+ }
983
+
984
+ /* active state */
985
+ textarea:-moz-read-only ~ label {
986
+ top: .3rem;
987
+ font-size: .8rem;
988
+ color: var(--primary-color);
989
+ }
990
+ textarea:read-only ~ label,
991
+ .textarea > textarea:focus ~ label,
992
+ .textarea > textarea:valid ~ label {
993
+ top: .3rem;
994
+ font-size: .8rem;
995
+ color: var(--primary-color);
996
+ }
997
+
998
+ .textarea > .bar {
999
+ position: relative;
1000
+ display: block;
1001
+ }
1002
+
1003
+ .textarea > .bar:before,
1004
+ .textarea > .bar:after {
1005
+ content: "";
1006
+ height: 2px;
1007
+ width: 0;
1008
+ bottom: 1px;
1009
+ position: absolute;
1010
+ background: #5264ae;
1011
+ transition: 0.2s ease all;
1012
+ -moz-transition: 0.2s ease all;
1013
+ -webkit-transition: 0.2s ease all;
1014
+ }
1015
+
1016
+ .textarea > .bar:before {
1017
+ left: 50%;
1018
+ }
1019
+
1020
+ .textarea > .bar:after {
1021
+ right: 50%;
1022
+ }
1023
+
1024
+ /* active state */
1025
+ .textarea > textarea:focus ~ .bar:before,
1026
+ .textarea > textarea:focus ~ .bar:after {
1027
+ width: 50%;
1028
+ }
1029
+
1030
+ .dropdown {
1031
+ position: relative;
1032
+ }
1033
+
1034
+ .dropdown>.icon {
1035
+ position: absolute;
1036
+ top: 1.7rem;
1037
+ right: .2rem;
1038
+ }
1039
+
1040
+ .dropdown>.textarea>.icon,
1041
+ .dropdown>.textarea-outlined>.icon {
1042
+ position: absolute;
1043
+ top: 1.7rem;
1044
+ right: 2rem;
1045
+ color: rgba(150,150,150,1);
1046
+ }
1047
+
1048
+ .dropdown>menu {
1049
+ z-index: 11;
1050
+ position: absolute;
1051
+ top: 3.8rem;
1052
+ left: 0px;
1053
+ right: 0px;
1054
+ margin: 0;
1055
+ border: solid 1px var(--divider-color);
1056
+ color: var(--text-color);
1057
+ background-color: var(--paper-color);
1058
+ padding: 0;
1059
+ max-height: 20rem;
1060
+ overflow: auto;
1061
+ }
1062
+
1063
+ .dropdown>menu ul {
1064
+ list-style: none;
1065
+ margin: 0;
1066
+ padding: .5rem 0;
1067
+ cursor: pointer;
1068
+ }
1069
+
1070
+ .dropdown>menu li {
1071
+ min-height: 2rem;
1072
+ padding: 0 .5rem;
1073
+ display: flex;
1074
+ align-items: center;
1075
+ font-size: .9rem;
1076
+ }
1077
+
1078
+ .dropdown>menu li:hover {
1079
+ background-color: var(--primary-color-lighter);
1080
+ }
1081
+
895
1082
  .datatable8 {
896
1083
  overflow: hidden;
897
1084
  border: solid 0px var(--divider-color);
@@ -1444,6 +1631,190 @@ details[open].tree-node>summary::before {
1444
1631
  justify-content: center;
1445
1632
  align-items: center;
1446
1633
  }
1634
+ .planner-box {
1635
+ flex:1;
1636
+ display: flex;
1637
+ flex-direction: column;
1638
+ overflow: hidden;
1639
+ border: solid 1px var(--divider-color);
1640
+ }
1641
+
1642
+ .planner-box > header > label {
1643
+ min-width:13rem;
1644
+ }
1645
+
1646
+ .planner {
1647
+ flex: 1;
1648
+ display: flex;
1649
+ height: 70rem;
1650
+ overflow-y: auto;
1651
+ margin: 1rem;
1652
+
1653
+ --row-height: 8rem;
1654
+ --column-width: 14rem;
1655
+ }
1656
+
1657
+ .planner > .column0 {
1658
+ position: -webkit-sticky;
1659
+ position: sticky;
1660
+ left: 0px;
1661
+ z-index: 11;
1662
+ background-color: var(--paper-color);
1663
+ width: var(--column-width);
1664
+ border-right: solid 1px var(--divider-color);
1665
+ }
1666
+
1667
+ .column-header {
1668
+ width: var(--column-width);
1669
+ background-color: var(--paper-color);
1670
+ height: 2.6rem;
1671
+ }
1672
+
1673
+ .date-header {
1674
+ display: flex;
1675
+ padding: 0.5rem 1rem;
1676
+ align-items: baseline;
1677
+ }
1678
+
1679
+ .weekend {
1680
+ background-color: rgb(245, 245, 245);
1681
+ }
1682
+
1683
+ .month-header {
1684
+ padding: 0.5rem 1rem;
1685
+ border-top: solid 1px var(--divider-color);
1686
+ }
1687
+
1688
+ .month-header>* {
1689
+ display: none
1690
+ }
1691
+
1692
+ .month-header.first {
1693
+ border-left: solid 1px var(--divider-color);
1694
+ }
1695
+
1696
+ .month-header.first>* {
1697
+ display: block
1698
+ }
1699
+
1700
+ .column0 > .column-header {
1701
+ position: -webkit-sticky;
1702
+ position: sticky;
1703
+ top: 0px;
1704
+ height: 6rem;
1705
+ border-bottom: solid 1px var(--divider-color);
1706
+ border-right: solid 1px var(--divider-color);
1707
+ }
1708
+
1709
+ .row-header {
1710
+ width: var(--column-width);
1711
+ height: var(--row-height);
1712
+ border-bottom: solid 1px var(--divider-color);
1713
+ display: flex;
1714
+ justify-content: center;
1715
+ align-items: center;
1716
+ }
1717
+
1718
+ .planner > .rows {
1719
+ flex: 1;
1720
+ }
1721
+
1722
+ .planner .row {
1723
+ height: var(--row-height);
1724
+ border-bottom: solid 1px var(--divider-color);
1725
+ display: flex;
1726
+ }
1727
+
1728
+ .planner .row0 {
1729
+ position: -webkit-sticky;
1730
+ position: sticky;
1731
+ top: 0px;
1732
+ z-index: 10;
1733
+ height: 3rem;
1734
+ background-color: var(--paper-color);
1735
+ border-bottom: solid 1px var(--divider-color);
1736
+ }
1737
+
1738
+ .planner .row1 {
1739
+ position: -webkit-sticky;
1740
+ position: sticky;
1741
+ top: 3rem;
1742
+ z-index: 10;
1743
+ height: 3rem;
1744
+ background-color: var(--paper-color);
1745
+ border-bottom: solid 1px var(--divider-color);
1746
+ }
1747
+
1748
+ .planner .cell {
1749
+ width: var(--column-width);
1750
+ height: 100%;
1751
+ padding: 0.5rem;
1752
+ display: flex;
1753
+ justify-content: center;
1754
+ align-items: center;
1755
+ border-right: dotted 1px var(--divider-color);
1756
+ }
1757
+
1758
+ .photoshoot-icon {
1759
+ border: solid 0px var(--divider-color);
1760
+ border-radius: 4px;
1761
+ flex: 1;
1762
+ height: 100%;
1763
+ padding: 0.5rem;
1764
+ display: flex;
1765
+ justify-content: center;
1766
+ align-items: center;
1767
+ color: rgba(200, 200, 200, 0.5);
1768
+ }
1769
+
1770
+ .photoshoot-icon.dragOver {
1771
+ background-color: rgba(225,225,250);
1772
+ }
1773
+
1774
+ .photoshoot-card {
1775
+ border: solid 1px var(--divider-color);
1776
+ border-radius: 4px;
1777
+ flex: 1;
1778
+ width: 100%;
1779
+ height: 100%;
1780
+ display: flex;
1781
+ flex-direction: column;
1782
+ overflow: hidden;
1783
+ }
1784
+
1785
+ .photoshoot-card > * {
1786
+ background-color: #FFF;
1787
+ opacity: .8;
1788
+ }
1789
+
1790
+ .photoshoot-card > header {
1791
+ padding: 0 0.5rem ;
1792
+
1793
+ }
1794
+
1795
+ .photoshoot-card > main {
1796
+ padding: 0 0.5rem ;
1797
+ flex: 1;
1798
+ }
1799
+
1800
+ .photoshoot-card > footer {
1801
+ display: flex;
1802
+ }
1803
+
1804
+ .photoshoot-card.disabled {
1805
+ opacity: 0.3;
1806
+ }
1807
+
1808
+ .photoshoot-card:hover {
1809
+ cursor: pointer;
1810
+ box-shadow: var(--shadow1);
1811
+ }
1812
+
1813
+ .expand {
1814
+ flex: 1;
1815
+ }
1816
+
1817
+
1447
1818
  .page6 {
1448
1819
  height: 100%;
1449
1820
  color: var(--text-color);
@@ -1457,6 +1828,7 @@ details[open].tree-node>summary::before {
1457
1828
  color: var(--page-menu-color);
1458
1829
  background-color: var(--page-menu-bgcolor);
1459
1830
  border-right: solid 1px var(--divider-color);
1831
+ resize: horizontal;
1460
1832
  }
1461
1833
 
1462
1834
  .page6>header {
@@ -1583,6 +1955,7 @@ details[open].tree-node>summary::before {
1583
1955
  .site6>main {
1584
1956
  grid-area: main;
1585
1957
  overflow: hidden;
1958
+ resize: horizontal;
1586
1959
  }
1587
1960
 
1588
1961
  .site6>aside {