ywana-core8 0.1.28 → 0.1.30

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
@@ -1264,34 +1264,9 @@ textarea:read-only ~ label,
1264
1264
 
1265
1265
  .login-box {
1266
1266
  background-color: var(--paper-color);
1267
- display: grid;
1268
- grid-template-areas:
1269
- "header header"
1270
- "main main"
1271
- "footer footer";
1272
- }
1273
-
1274
- .login-box > header {
1275
- grid-area: header;
1276
- display: flex;
1277
- flex: 1;
1278
- flex-direction: column;
1279
- justify-content: space-around;
1280
- align-items: center;
1281
- padding: 1rem;
1282
- }
1283
-
1284
- .login-box > header > img {
1285
- max-width: 90%;
1286
- }
1287
-
1288
- .login-box > header > .title {
1289
- font-size: 2rem;
1290
- font-weight: 600;
1291
1267
  }
1292
1268
 
1293
1269
  .login-box > main {
1294
- grid-area: main;
1295
1270
  padding: 1rem 1rem 0 1rem;
1296
1271
  display: flex;
1297
1272
  flex-direction: column;
@@ -1366,21 +1341,11 @@ textarea:read-only ~ label,
1366
1341
  }
1367
1342
  .reset-password-box {
1368
1343
  background-color: var(--paper-color);
1369
- display: grid;
1370
- grid-template-areas: "header header" "main main" "footer footer";
1371
1344
  animation: fadeIn 2s;
1372
1345
  padding: .5rem;
1373
1346
  }
1374
1347
 
1375
- .reset-password-box>header {
1376
- grid-area: header;
1377
- display: flex;
1378
- flex-direction: column;
1379
- justify-content: space-around;
1380
- }
1381
-
1382
1348
  .reset-password-box>main {
1383
- grid-area: main;
1384
1349
  display: flex;
1385
1350
  flex-direction: column;
1386
1351
  }
@@ -1396,7 +1361,6 @@ textarea:read-only ~ label,
1396
1361
  }
1397
1362
 
1398
1363
  .reset-password-box>footer {
1399
- grid-area: footer;
1400
1364
  margin-top: .5rem;
1401
1365
  display: flex;
1402
1366
  }
@@ -1420,1086 +1384,1103 @@ textarea:read-only ~ label,
1420
1384
  border: solid 1px red;
1421
1385
  }
1422
1386
  }
1423
- .image-viewer {
1424
- display: flex;
1425
- justify-content: center;
1426
- align-items: center;
1387
+ .page6 {
1388
+ height: 100%;
1389
+ color: var(--text-color);
1427
1390
  }
1428
- .viewer {
1429
- width: 100vw;
1430
- height: 100vh;
1431
- background-color: rgba(0, 0, 0, .75);
1432
- display: grid;
1433
- grid-template-columns: 1fr auto;
1434
- grid-template-rows: 4rem 1fr;
1435
- grid-template-areas: "header aside" "main aside";
1436
- color: #FFF;
1391
+
1392
+ .page6>menu {
1393
+ padding: 0px;
1394
+ margin: 0px;
1395
+ grid-area: menu;
1396
+ width: var(--page-menu-width);
1397
+ color: var(--page-menu-color);
1398
+ background-color: var(--page-menu-bgcolor);
1399
+ border-right: solid 1px var(--divider-color);
1400
+ resize: horizontal;
1437
1401
  }
1438
1402
 
1439
- .viewer>header {
1403
+ .page6>header {
1440
1404
  grid-area: header;
1441
- background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
1442
- background-image: linear-gradient(rgba(0, 0, 0, 0.65) 0%, transparent 100%);
1443
- background-position-x: initial;
1444
- background-position-y: initial;
1445
- background-size: initial;
1446
- background-repeat-x: initial;
1447
- background-repeat-y: initial;
1448
- background-attachment: initial;
1449
- background-origin: initial;
1450
- background-clip: initial;
1451
- background-color: initial;
1405
+ height: var(--page-header-height);
1406
+ color: var(--page-header-color);
1407
+ background-color: var(--page-header-bgcolor);
1408
+ border-bottom: solid 1px var(--divider-color);
1452
1409
  }
1453
1410
 
1454
- .viewer>main {
1411
+ .page6>nav {
1412
+ grid-area: nav;
1413
+ height: var(--page-nav-height);
1414
+ }
1415
+
1416
+ .page6>main {
1455
1417
  grid-area: main;
1456
- display: flex;
1457
- flex-direction: column;
1458
- justify-content: center;
1459
- align-items: center;
1460
1418
  overflow: hidden;
1461
1419
  }
1462
1420
 
1463
- .viewer>main>.resizer {
1464
- width: 100%;
1465
- overflow: hidden;
1466
- position: relative;
1467
- display: flex;
1468
- justify-content: center;
1469
- align-items: center;
1470
- padding: 1rem;
1421
+ .page6>aside {
1422
+ grid-area: aside;
1423
+ width: var(--page-aside-width);
1424
+ color: var(--page-aside-color);
1425
+ background-color: var(--page-aside-bgcolor);
1471
1426
  }
1472
1427
 
1473
- .viewer>main>.resizer img {
1474
- width: 100%;
1475
- -o-object-fit: fill;
1476
- object-fit: fill;
1428
+ .page6>footer {
1429
+ grid-area: footer;
1430
+ min-height: var(--page-footer-height);
1477
1431
  }
1478
1432
 
1479
- @media (min-width: 800px) {
1480
- .viewer>main>.resizer {
1481
- width: 800px;
1482
- padding: 0;
1483
- }
1433
+ :root {
1434
+ --timeout: 800ms;
1484
1435
  }
1485
1436
 
1486
- .viewer>aside {
1487
- min-width: 22rem;
1488
- grid-area: aside;
1489
- display: none;
1490
- background-color: rgb(50, 50, 50);
1437
+ .workspace {
1438
+ display: grid;
1439
+ grid-template-areas: "header header header"
1440
+ "menu nav nav"
1441
+ "menu main aside"
1442
+ "menu detail aside"
1443
+ "footer footer footer";
1444
+ grid-template-columns: auto 1fr auto;
1445
+ grid-template-rows: auto auto 1fr auto auto;
1491
1446
  }
1492
1447
 
1493
- .viewer>aside.open {
1494
- grid-area: aside;
1495
- display: flex;
1496
- flex-direction: column;
1448
+ .workspace>nav {
1449
+ min-height: 3rem;
1497
1450
  }
1498
1451
 
1499
- .viewer>aside .property>label {
1500
- color: #AAA;
1452
+ .workspace>main {
1453
+ resize: horizontal;
1501
1454
  }
1502
1455
 
1503
- .viewer>footer {
1504
- width: 15rem;
1505
- position: absolute;
1506
- bottom: 1rem;
1507
- left: calc(50vw - 4rem);
1508
- border-radius: 3px;
1509
- z-index: 100;
1510
- display: flex;
1511
- justify-content: space-between;
1512
- align-items: center;
1513
- padding: .5rem;
1514
- background-color: rgba(0, 0, 0, .75);
1456
+ .workspace>aside {
1457
+ width: 100%;
1515
1458
  }
1516
- .kanban {
1459
+
1460
+ .overall {
1461
+ position: absolute;
1462
+ top:0;
1463
+ bottom: 0;
1464
+ left:0;
1465
+ right: 0;
1517
1466
  background-color: var(--background-color);
1518
- overflow-x: auto;
1519
- max-height: 90vh;
1520
- border-top: solid 1px var(--divider-color);
1521
- border-left: solid 1px var(--divider-color);
1522
- border-bottom: solid 1px var(--divider-color);
1523
- display: flex;
1467
+ }
1524
1468
 
1525
- &.with-swimlanes {
1526
- flex-wrap: wrap;
1527
- }
1469
+ .site6 {
1470
+ width: 100vw;
1471
+ height: 100vh;
1472
+ display: grid;
1473
+ grid-template-columns: auto 1fr 1fr auto;
1474
+ grid-template-rows: var(--site-header-height) 1fr auto auto;
1475
+ grid-template-areas: "header header nav nav" "menu main main aside" "footer footer footer footer" "console console console console";
1476
+ background-color: var(--background-color);
1528
1477
  }
1529
1478
 
1530
- .kanban-header {
1531
- flex: 1;
1532
- height: 5rem;
1479
+ .site6>header {
1480
+ grid-area: header;
1481
+ color: var(--site-header-color);
1482
+ background-color: var(--site-header-bgcolor);
1533
1483
  display: flex;
1534
1484
  align-items: center;
1485
+ }
1535
1486
 
1536
- position: sticky;
1537
- top: 0;
1538
- background-color: var(--paper-color);
1539
- z-index: 10;
1487
+ .site6>nav {
1488
+ grid-area: nav;
1489
+ color: var(--site-nav-color);
1490
+ background-color: var(--site-nav-bgcolor);
1491
+ display: flex;
1492
+ justify-content: flex-end;
1493
+ align-items: center;
1494
+ padding-right: 1rem;
1540
1495
  }
1541
1496
 
1542
- .kanban-swimlane {
1497
+ .site6>nav>header {
1543
1498
  flex: 1;
1499
+ }
1500
+
1501
+ .site6>menu {
1502
+ grid-area: menu;
1503
+ margin: 0;
1504
+ border-right: solid 1px var(--divider-color);
1505
+ padding: 0;
1506
+ color: var(--site-menu-color);
1507
+ background-color: var(--site-menu-bgcolor);
1544
1508
  display: flex;
1545
1509
  flex-direction: column;
1546
- background-color: var(--background-color);
1510
+ overflow: hidden;
1511
+ width: var(--site-menu-width);
1512
+ transition: width 0.3s ease-in-out;
1513
+ }
1514
+
1515
+ .site6>menu>header {
1547
1516
  border-bottom: solid 1px var(--divider-color);
1517
+ }
1548
1518
 
1549
- &>header {
1550
- display: flex;
1551
- align-items: center;
1552
- justify-content: flex-start;
1553
- padding: 0 .5rem;
1554
- border-right: solid 1px var(--divider-color);
1555
- border-left: solid 1px var(--divider-color);
1519
+ .site6>menu.max {
1520
+ width: 20rem;
1521
+ }
1556
1522
 
1557
- position: sticky;
1558
- top: 5rem;
1559
- z-index: 9;
1560
- background-color: var(--paper-color);
1523
+ .site6>menu.min {
1524
+ width: var(--site-menu-width);
1525
+ overflow: visible;
1526
+ }
1561
1527
 
1562
- &>.title {
1563
- flex: 1;
1564
- padding: 0 1rem;
1565
- display: flex;
1528
+ .site6>menu>main {
1529
+ padding: .4rem;
1530
+ }
1566
1531
 
1567
- &>.secondary-text {
1568
- padding-left: .5rem;
1569
- color: rgba(100, 100, 100, .8);
1570
- }
1571
- }
1572
- }
1532
+ .site6>menu>main>.section-title {
1533
+ width: 100%;
1534
+ font-size: .7rem;
1535
+ font-weight: 400;
1536
+ padding: .5rem .7rem;
1537
+ }
1573
1538
 
1574
- &>main {
1575
- flex: 1;
1576
- display: flex;
1577
- overflow: auto;
1578
- transition: all .5s ease-in-out;
1579
- border-top: solid 1px var(--divider-color);
1580
-
1581
- &.fold {
1582
- max-height: 0;
1583
- overflow: hidden;
1584
- }
1585
-
1586
- &.unfold {
1587
- max-height: -moz-fit-content;
1588
- max-height: fit-content;
1589
- overflow: auto;
1590
- }
1591
- }
1539
+ .site6>menu>main>.section-title.min {
1540
+ border-bottom: solid 1px var(--divider-color);
1541
+ max-height: 1px
1542
+ }
1592
1543
 
1544
+ .site6>menu>main>.site-menu-item {
1545
+ width: 100%;
1546
+ display: flex;
1547
+ align-items: center;
1593
1548
  }
1594
1549
 
1595
- .kanban-column {
1596
- flex: 1;
1597
- min-width: 20rem;
1598
- display: flex;
1599
- flex-direction: column;
1600
- border-right: solid 1px var(--divider-color);
1550
+ .site6>menu.min .site-menu-item {
1551
+ justify-content: center;
1601
1552
  }
1602
1553
 
1603
- .kanban-column.disabled {
1604
- pointer-events: none;
1605
- opacity: 0.7;
1554
+ .site6>menu.min .site-menu-item i {
1555
+ width: 4.2rem !important;
1606
1556
  }
1607
1557
 
1608
- .kanban-column.dragOver {
1609
- background-color: rgba(100, 100, 100, .1);
1558
+ .site6>menu.max>main>.site-menu-item:not(.selected):hover {
1559
+ color: var(--text-color);
1560
+ background-color: rgba(200,200,200,.2);
1561
+ cursor: pointer;
1610
1562
  }
1611
1563
 
1612
- .kanban-column.min {
1613
- flex: 0;
1614
- min-width: 4rem;
1564
+ .site6>menu>main>.site-menu-item.selected {
1565
+ color: var(--accent-color-text);
1566
+ background-color: var(--accent-color);
1567
+ border-radius: .5rem;
1615
1568
  }
1616
1569
 
1617
- .kanban-column>header {
1618
- height: 5rem;
1619
- border-bottom: solid 1px var(--divider-color);
1570
+ .site6>menu>main {
1571
+ flex: 1;
1572
+ overflow-x: hidden;
1573
+ overflow-y: auto;
1620
1574
  display: flex;
1621
- align-items: flex-start;
1622
- padding: 1rem;
1623
- background-color: var(--paper-color);
1575
+ flex-direction: column;
1576
+ align-items: center;
1624
1577
  }
1625
1578
 
1626
- .kanban-column>header>.title {
1627
- padding: 0 1rem;
1579
+ .site6>menu.min>main {
1628
1580
  flex: 1;
1581
+ overflow-x: visible;
1582
+ overflow-y: visible;
1629
1583
  display: flex;
1630
1584
  flex-direction: column;
1585
+ align-items: center;
1631
1586
  }
1632
1587
 
1633
- .kanban-column>header>i,
1634
- .kanban-column>footer>button {
1635
- color: rgba(100, 100, 100, .6);
1588
+ .site6>main {
1589
+ grid-area: main;
1590
+ overflow: hidden;
1591
+ resize: horizontal;
1636
1592
  }
1637
1593
 
1638
- .kanban-column>main {
1639
- flex: 1;
1640
- overflow: auto;
1594
+ .site6>aside {
1595
+ grid-area: aside;
1596
+ color: var(--site-aside-color);
1597
+ background-color: var(--site-aside-bgcolor);
1641
1598
  }
1642
1599
 
1643
- .kanban-column.min>main {
1644
- min-height: 10rem;
1645
- padding: 1rem;
1646
- writing-mode: vertical-rl;
1647
- color: var(--primary-color-light);
1600
+ .site6>footer {
1601
+ grid-area: footer;
1648
1602
  }
1649
1603
 
1650
- .kanban-column>footer {
1651
- display: flex;
1652
- align-items: center;
1653
- justify-content: space-between;
1604
+ .site6>.site-console {
1605
+ grid-area: console;
1606
+ min-height: 20rem;
1607
+ background-color: rgb(222, 222, 222);
1608
+ color: #000;
1654
1609
  }
1655
1610
 
1656
- .kanban-card {
1657
- margin: 2rem;
1658
- box-shadow: var(--shadow1);
1659
- background-color: var(--paper-color);
1660
- border-radius: 5px;
1661
- min-height: 10rem;
1611
+ .site6>.site-console>nav {
1612
+ display: flex;
1613
+ align-items: center;
1614
+ justify-content: flex-end;
1662
1615
  }
1663
1616
 
1664
- .kanban-card.red {
1665
- border-left: solid 5px red;
1617
+ .site6>.site-console>main {
1618
+ overflow: scroll;
1619
+ max-height: 40vh;
1620
+ display: flex;
1621
+ flex-direction: column-reverse;
1666
1622
  }
1667
1623
 
1668
- .secondary-text {
1669
- color: rgba(100, 100, 100, .8);
1670
- }
1671
- .avatar {
1672
- background-color: rgba(200,200,200,.1);
1673
- border: solid 3px transparent;
1674
- border-radius: 100%;
1675
- overflow: hidden;
1624
+ .site6>.site-console>main>div {
1625
+ padding: 1rem;
1626
+ border-bottom: dotted 1px var(--divider-color);
1676
1627
  }
1677
1628
 
1678
- .avatar.small {
1679
- width: 3rem;
1680
- height: 3rem;
1681
- }
1682
- .wait-screen {
1683
- position:absolute;
1684
- top:0px;
1685
- left:0px;
1686
- width: 100%;
1687
- height: 100%;
1688
- background-color: rgba(200,200,200,.5);
1629
+ .site6>.site-preview {
1630
+ position: absolute;
1631
+ z-index: 10;
1632
+ width: 100vw;
1633
+ height: 100vh;
1634
+ background-color: var(--site-preview-background, rgba(0, 0, 0, 0.32));
1689
1635
  display: flex;
1690
- justify-content: center;
1636
+ flex-direction: column;
1691
1637
  align-items: center;
1638
+ justify-content: center;
1692
1639
  }
1693
- .calendar {
1640
+
1641
+ .site-error-fallback {
1694
1642
  display: flex;
1695
1643
  flex-direction: column;
1696
- flex: 1;
1697
- overflow: hidden;
1644
+ align-items: center;
1645
+ justify-content: center;
1646
+ height: 100vh;
1647
+ width: 100vw;
1648
+ background-color: var(--background-color);
1698
1649
  }
1699
1650
 
1700
- .calendar-range-control {
1701
- margin: .3rem;
1702
- border: solid 1px var(--divider-color);
1703
- background-color: var(--background-color);
1704
- border-radius: 3px;
1705
- padding: .2rem;
1651
+ .site-error-fallback > dialog {
1706
1652
  display: flex;
1707
- justify-content: space-between;
1653
+ flex-direction: column;
1708
1654
  align-items: center;
1655
+ justify-content: center;
1656
+ width: 50%;
1657
+ height: 50%;
1658
+ background-color: var(--paper-color);
1659
+ box-shadow: var(--shadow1);
1709
1660
 
1710
- &>.btn {
1711
- flex: 1;
1712
- margin-left: 1rem;
1713
- border-radius: 2px;
1714
- background-color: var(--background-color);
1715
- &.outlined {
1716
- border: solid 1px var(--divider-color);
1717
- background-color: var(--paper-color);
1718
- }
1719
- }
1661
+ border: solid 1px black;
1662
+ }
1663
+ .overlay {
1664
+ opacity: 0.5;
1665
+ position: absolute;
1666
+ top: 0;
1667
+ right: 0;
1668
+ bottom: 0;
1669
+ left: 0;
1670
+ display: flex;
1671
+ align-items: center;
1672
+ justify-content: center;
1673
+ background: rgba(77, 77, 77, 0.7);
1674
+ z-index: 100;
1720
1675
  }
1721
1676
 
1722
- .year-calendar {
1723
- margin: 1rem;
1724
- overflow: hidden;
1725
- display: flex;
1726
- flex-direction: column;
1727
- padding: 0rem;
1677
+ .overlay.prompt {
1678
+ z-index: 1000;
1728
1679
  }
1729
1680
 
1730
- .year-calendar>nav {
1731
- display: flex;
1732
- padding: .5rem;
1733
- display: flex;
1734
- align-items: center;
1681
+ .dialog-panel.prompt {
1682
+ z-index: 1010;
1735
1683
  }
1736
1684
 
1737
- .year-calendar>nav>label {
1738
- flex: 1;
1739
- font-size: 1.3rem;
1740
- font-weight: 500;
1685
+ .dialog-panel {
1686
+ z-index: 110;
1687
+ min-width: 500px;
1688
+ max-width: 90%;
1689
+ top: 0;
1690
+ right: 0;
1691
+ bottom: 0;
1692
+ left: 0;
1693
+ background: var(--paper-color, #fff);
1694
+ padding: 0;
1695
+ display: flex;
1696
+ flex-direction: column;
1697
+ border-radius: 5px;
1698
+ box-shadow: var(--shadow1);
1699
+ overflow: auto;
1700
+ border: solid 1px var(--divider-color);
1741
1701
  }
1742
1702
 
1743
- .year-calendar>nav>button {
1744
- margin-left: 1px;
1745
- border-radius: 3px;
1703
+ .dialog-panel > header {
1704
+ font-size: 1rem;
1705
+ font-weight: 600;
1706
+ padding: 1rem;
1707
+ display: flex;
1746
1708
  }
1747
1709
 
1748
- .year-calendar>main {
1710
+ .dialog-panel > main {
1711
+ flex: 1;
1712
+ padding: 1rem;
1713
+ }
1714
+
1715
+ .dialog-panel > footer {
1716
+ padding: 1rem;
1717
+ display: flex;
1718
+ justify-content: flex-end;
1719
+ }
1720
+
1721
+ .dialog-panel > footer button {
1722
+ min-width: 5rem;
1723
+ }
1724
+ .view {
1749
1725
  flex: 1;
1750
- border: solid 1px var(--divider-color);
1751
- border-width: 1px 1px 0 0;
1752
- display: grid;
1753
- grid-template-columns: repeat(3, 1fr);
1754
- grid-gap: 1rem;
1755
- grid-auto-rows: minmax(12rem, auto);
1756
- overflow: hidden;
1757
- font-size: .8rem;
1726
+ border: solid 1px rgb(200,200,200);;
1727
+ display: flex;
1728
+ flex-direction: column;
1758
1729
  }
1759
1730
 
1760
- .year-calendar .month-cell {
1761
- border-width: 0 0 1px 1px;
1762
- overflow: hidden;
1763
- padding: .5rem;
1764
- text-align: right;
1765
- font-weight: 400;
1766
-
1767
- &>nav {
1768
- display: flex;
1769
- padding: .5rem;
1770
- display: flex;
1771
- align-items: center;
1772
- }
1773
-
1774
- &>header {
1775
- display:flex;
1776
-
1777
- &>.week-day-cell {
1778
- flex: 1;
1779
- border: solid 0px var(--divider-color);
1780
- padding: 2px;
1781
- text-align: right;
1782
- min-width: 2rem !important;
1783
- }
1784
- }
1785
-
1786
- &>main {
1787
- flex: 1;
1788
- border: solid 0px var(--divider-color);
1789
- display: grid;
1790
- grid-template-columns: repeat(7, 1fr);
1791
- grid-gap: 0px;
1792
- grid-auto-rows: minmax(2rem, auto);
1793
- overflow: hidden;
1794
- font-size: .8rem;
1795
-
1796
- &>.day-cell {
1797
- border: solid 0px;
1798
- padding: .5rem;
1799
- text-align: right;
1800
- min-height: 1rem;
1801
- width: 1rem;
1802
- min-width: 1rem !important;
1803
- font-weight: 400;
1804
- color: var(--text-color);
1805
- }
1806
-
1807
-
1808
- &>.day-cell.other-month {
1809
- color: var(--text-color-lighter);
1810
- }
1811
-
1812
- }
1813
- }
1814
-
1815
-
1816
-
1817
- .month-calendar {
1818
- margin: 1rem;
1819
- overflow: hidden;
1731
+ .view>header {
1732
+ width: 100%;
1820
1733
  display: flex;
1821
- flex-direction: column;
1822
- padding: 0rem;
1823
-
1734
+ align-items: flex-end;
1735
+ background-color: rgb(200,200,200);
1736
+ min-height: 2rem;
1737
+ height: 2.5rem;
1738
+ max-height: 2.5rem;
1824
1739
  }
1825
1740
 
1826
- .month-calendar>nav {
1827
- display: flex;
1828
- padding: .5rem;
1829
- display: flex;
1830
- align-items: center;
1741
+ .view>header>.icon {
1742
+ height: 2.4rem;
1743
+ width: 3rem
1831
1744
  }
1832
1745
 
1833
- .month-calendar>nav>label {
1746
+ .view>header>label {
1834
1747
  flex: 1;
1835
- font-size: 1.3rem;
1836
- font-weight: 500;
1748
+ height: 100%;
1749
+ display: flex;
1750
+ align-items: center;
1837
1751
  }
1838
1752
 
1839
- .month-calendar>nav>button {
1840
- margin-left: 1px;
1841
- border-radius: 3px;
1753
+ .view>nav {
1754
+ min-height: 2rem;
1755
+ display: flex;
1756
+ align-items: center;
1757
+ justify-content: flex-end;
1758
+ background-color: rgb(230,230,230);
1842
1759
  }
1843
1760
 
1844
- .month-calendar>header {
1845
- display: grid;
1846
- grid-template-columns: repeat(7, 1fr);
1847
- font-size: .8rem;
1761
+ .view>nav>* {
1762
+ border-radius: 0px !important;
1848
1763
  }
1849
1764
 
1850
- .month-calendar>main {
1765
+ .view>main {
1851
1766
  flex: 1;
1852
- border: solid 1px var(--divider-color);
1853
- border-width: 1px 1px 0 0;
1854
- display: grid;
1855
- grid-template-columns: repeat(7, 1fr);
1856
- grid-gap: 0px;
1857
- grid-auto-rows: minmax(5rem, auto);
1858
- overflow: hidden;
1859
- font-size: .8rem;
1767
+ height: 100%;
1860
1768
  }
1861
1769
 
1862
- .week-day-cell {
1863
- border: solid 0px var(--divider-color);
1864
- padding: 2px;
1865
- text-align: right;
1866
- min-width: 5rem;
1770
+ .view>footer {
1771
+ width: 100%;
1772
+ display: flex;
1773
+ align-items: center;
1774
+ background-color: rgb(230,230,230);
1867
1775
  }
1868
-
1869
- .day-cell {
1870
- border: solid 1px var(--divider-color);
1871
- border-width: 0 0 1px 1px;
1872
- padding: .5rem;
1873
- text-align: right;
1874
- min-height: 6rem;
1875
- min-width: 5rem;
1876
- font-weight: 400;
1776
+ .change-password-dialog div.dialog-error-message {
1777
+ display: flex;
1778
+ align-items: center;
1779
+ background-color: red;
1780
+ color: white;
1781
+ font-weight: 500;
1782
+ padding: 0.1rem 0.5rem;
1783
+ border-radius: .5rem;
1784
+ margin: 0 .5rem;
1877
1785
  }
1878
1786
 
1879
- .day-cell.today>header {
1880
- border-bottom: solid 2px var(--primary-color);
1881
- padding: .3rem;
1882
- font-weight: 600;
1883
- }
1884
1787
 
1885
- .day-cell.other-month {
1886
- color: var(--text-color-lighter);
1788
+ .change-password-dialog>footer {
1789
+ display: flex;
1790
+ justify-content: space-between;
1791
+ margin-top: 20px;
1792
+ display: none !important;
1887
1793
  }
1888
-
1889
- .day-cell:hover {
1890
- background-color: rgba(200,200,200,.1);
1891
- cursor: pointer;
1794
+ .image-viewer {
1795
+ display: flex;
1796
+ justify-content: center;
1797
+ align-items: center;
1892
1798
  }
1893
-
1894
- .day-cell.today:hover {
1895
- background-color: var(--primary-color-lighter);
1799
+ .viewer {
1800
+ width: 100vw;
1801
+ height: 100vh;
1802
+ background-color: rgba(0, 0, 0, .75);
1803
+ display: grid;
1804
+ grid-template-columns: 1fr auto;
1805
+ grid-template-rows: 4rem 1fr;
1806
+ grid-template-areas: "header aside" "main aside";
1807
+ color: #FFF;
1896
1808
  }
1897
1809
 
1898
- .day-cell .event {
1899
- background-color: var(--primary-color);
1900
- color: var(--primary-color-text);
1901
- padding: .3rem;
1902
- border-radius: 3px;
1903
- margin: 3px 1px;
1904
- }
1905
- .planner-box {
1906
- flex: 1;
1907
- display: flex;
1908
- flex-direction: column;
1909
- overflow: hidden;
1810
+ .viewer>header {
1811
+ grid-area: header;
1812
+ background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
1813
+ background-image: linear-gradient(rgba(0, 0, 0, 0.65) 0%, transparent 100%);
1814
+ background-position-x: initial;
1815
+ background-position-y: initial;
1816
+ background-size: initial;
1817
+ background-repeat: initial;
1818
+ background-attachment: initial;
1819
+ background-origin: initial;
1820
+ background-clip: initial;
1821
+ background-color: initial;
1910
1822
  }
1911
1823
 
1912
- .planner-box > header {
1913
- height: 5rem;
1914
- border: solid 1px var(--divider-color);
1915
- border-bottom: 0px;
1824
+ .viewer>main {
1825
+ grid-area: main;
1826
+ display: flex;
1827
+ flex-direction: column;
1828
+ justify-content: center;
1829
+ align-items: center;
1830
+ overflow: hidden;
1916
1831
  }
1917
1832
 
1918
- .planner {
1919
- flex: 1;
1920
- border: solid 1px var(--divider-color);
1921
- display: flex;
1922
- overflow: auto;
1923
-
1924
- --row-height: 6rem;
1925
- --column-width: 8rem;
1833
+ .viewer>main>.resizer {
1834
+ width: 100%;
1835
+ overflow: hidden;
1836
+ position: relative;
1837
+ display: flex;
1838
+ justify-content: center;
1839
+ align-items: center;
1840
+ padding: 1rem;
1926
1841
  }
1927
1842
 
1928
- .planner > .column0 {
1929
- width: var(--column-width);
1930
- position: sticky;
1931
- left: 0px;
1932
- z-index: 11;
1843
+ .viewer>main>.resizer img {
1844
+ width: 100%;
1845
+ -o-object-fit: fill;
1846
+ object-fit: fill;
1933
1847
  }
1934
1848
 
1935
- .planner > .column0 > .column-header {
1936
- width: var(--column-width);
1937
- height: var(--row-height);
1938
- position: sticky;
1939
- top: 0px;
1940
- background-color: var(--paper-color);
1941
- border-right: solid 1px var(--divider-color);
1942
- border-bottom: solid 1px var(--divider-color);
1849
+ @media (min-width: 800px) {
1850
+ .viewer>main>.resizer {
1851
+ width: 800px;
1852
+ padding: 0;
1853
+ }
1943
1854
  }
1944
1855
 
1945
- .planner .date-header.thisWeek {
1946
- background-color: rgb(10, 176, 35);
1947
- border-radius: 3px;
1948
- padding: .2rem;
1949
- color: var(--paper-color);
1856
+ .viewer>aside {
1857
+ min-width: 22rem;
1858
+ grid-area: aside;
1859
+ display: none;
1860
+ background-color: rgb(50, 50, 50);
1950
1861
  }
1951
1862
 
1952
- .planner .row-header {
1953
- width: var(--column-width);
1954
- background-color: var(--paper-color);
1955
- height: var(--row-height);
1956
- border-bottom: solid 1px var(--divider-color);
1957
- border-right: solid 1px var(--divider-color);
1958
- display: flex;
1959
- justify-content: center;
1960
- align-items: center;
1863
+ .viewer>aside.open {
1864
+ grid-area: aside;
1865
+ display: flex;
1866
+ flex-direction: column;
1961
1867
  }
1962
1868
 
1963
- .planner > .rows {
1964
- overflow: visible;
1869
+ .viewer>aside .property>label {
1870
+ color: #AAA;
1965
1871
  }
1966
1872
 
1967
- .planner > .rows .column-header {
1968
- width: var(--column-width);
1969
- background-color: var(--paper-color);
1970
- height: 2.6rem;
1971
- padding: .5rem;
1873
+ .viewer>footer {
1874
+ width: 15rem;
1875
+ position: absolute;
1876
+ bottom: 1rem;
1877
+ left: calc(50vw - 4rem);
1878
+ border-radius: 3px;
1879
+ z-index: 100;
1880
+ display: flex;
1881
+ justify-content: space-between;
1882
+ align-items: center;
1883
+ padding: .5rem;
1884
+ background-color: rgba(0, 0, 0, .75);
1972
1885
  }
1886
+ .kanban {
1887
+ background-color: var(--background-color);
1888
+ overflow-x: auto;
1889
+ max-height: 90vh;
1890
+ border-top: solid 1px var(--divider-color);
1891
+ border-left: solid 1px var(--divider-color);
1892
+ border-bottom: solid 1px var(--divider-color);
1893
+ display: flex;
1973
1894
 
1974
- .planner > .rows > .row {
1975
- height: var(--row-height);
1976
- border-bottom: solid 1px var(--divider-color);
1895
+ &.with-swimlanes {
1896
+ flex-wrap: wrap;
1897
+ }
1977
1898
  }
1978
1899
 
1979
- .planner > .rows > .row0 {
1980
- position: sticky;
1981
- top: 0px;
1982
- z-index: 10;
1983
- height: 3rem;
1984
- background-color: var(--paper-color);
1985
- border-bottom: solid 1px var(--divider-color);
1986
- }
1900
+ .kanban-header {
1901
+ flex: 1;
1902
+ height: 5rem;
1903
+ display: flex;
1904
+ align-items: center;
1987
1905
 
1988
- .planner > .rows > .row1 {
1989
- position: sticky;
1990
- top: 3rem;
1991
- z-index: 10;
1992
- height: 3rem;
1993
- background-color: var(--paper-color);
1994
- border-bottom: solid 1px var(--divider-color);
1906
+ position: sticky;
1907
+ top: 0;
1908
+ background-color: var(--paper-color);
1909
+ z-index: 10;
1995
1910
  }
1996
1911
 
1997
- .planner .cell {
1998
- width: var(--column-width);
1999
- height: 100%;
2000
- padding: 0.5rem;
2001
- display: flex;
2002
- flex-direction: column;
2003
- justify-content: center;
2004
- align-items: flex-start;
2005
- border-right: dotted 1px var(--divider-color);
2006
- }
1912
+ .kanban-swimlane {
1913
+ flex: 1;
1914
+ display: flex;
1915
+ flex-direction: column;
1916
+ background-color: var(--background-color);
1917
+ border-bottom: solid 1px var(--divider-color);
2007
1918
 
2008
- .planner .cell:hover {
2009
- background-color: rgba(220,220,220,.3);
2010
- }
1919
+ &>header {
1920
+ display: flex;
1921
+ align-items: center;
1922
+ justify-content: flex-start;
1923
+ padding: 0 .5rem;
1924
+ border-right: solid 1px var(--divider-color);
1925
+ border-left: solid 1px var(--divider-color);
2011
1926
 
2012
- .planner .cell.weekend {
2013
- background-color: rgba(200,200,200,.2);
2014
- }
1927
+ position: sticky;
1928
+ top: 5rem;
1929
+ z-index: 9;
1930
+ background-color: var(--paper-color);
2015
1931
 
2016
- .planner .cell.drag-over {
2017
- border: dashed 2px var(--divider-color);
2018
- }
1932
+ &>.title {
1933
+ flex: 1;
1934
+ padding: 0 1rem;
1935
+ display: flex;
2019
1936
 
2020
- .event-card {
2021
- width: 100%;
2022
- border: solid 1px var(--divider-color);
2023
- border-radius: 3px;
2024
- padding: .1rem .5rem;
2025
- font-size: .8rem;
2026
- font-weight: 500;
2027
- color: var(--text-color-light);
2028
- }
1937
+ &>.secondary-text {
1938
+ padding-left: .5rem;
1939
+ color: rgba(100, 100, 100, .8);
1940
+ }
1941
+ }
1942
+ }
2029
1943
 
2030
- .event-card:hover {
2031
- cursor: pointer;
2032
- border: solid 2px var(--divider-color);
2033
- }
2034
- .uploader {
2035
- display: flex;
2036
- flex-direction: column;
2037
- flex: 1;
2038
- }
1944
+ &>main {
1945
+ flex: 1;
1946
+ display: flex;
1947
+ overflow: auto;
1948
+ transition: all .5s ease-in-out;
1949
+ border-top: solid 1px var(--divider-color);
2039
1950
 
2040
- .demo-uploader {
2041
- width: 40rem;
2042
- height: 30rem;
2043
- margin: 5rem auto;
2044
- flex-direction: column;
2045
- }
1951
+ &.fold {
1952
+ max-height: 0;
1953
+ overflow: hidden;
1954
+ }
2046
1955
 
2047
- /***************** Upload Area ***********************/
1956
+ &.unfold {
1957
+ max-height: -moz-fit-content;
1958
+ max-height: fit-content;
1959
+ overflow: auto;
1960
+ }
1961
+ }
2048
1962
 
2049
- .upload-area6 {
2050
- flex: 1;
2051
- margin: 0 0 1rem 0;
2052
- border: dashed 2px var(--divider-color);
2053
- display: flex;
2054
- flex-direction: column;
2055
- align-items: center;
2056
- justify-content: center;
2057
- border-radius: 1rem;
2058
- min-height: 10rem;
2059
1963
  }
2060
1964
 
2061
- .upload-area6 > label {
2062
- font-size: 1.1rem;
2063
- font-weight: 500;
1965
+ .kanban-column {
1966
+ flex: 1;
1967
+ min-width: 20rem;
1968
+ display: flex;
1969
+ flex-direction: column;
1970
+ border-right: solid 1px var(--divider-color);
2064
1971
  }
2065
1972
 
2066
- .upload-area6.drag-over {
2067
- background-color: rgba(200, 200, 200, 0.1);
1973
+ .kanban-column.disabled {
1974
+ pointer-events: none;
1975
+ opacity: 0.7;
2068
1976
  }
2069
1977
 
2070
- /***************** Upload File ***********************/
2071
-
2072
- .upload-file {
2073
- display: flex;
2074
- align-items: center;
1978
+ .kanban-column.dragOver {
1979
+ background-color: rgba(100, 100, 100, .1);
2075
1980
  }
2076
1981
 
2077
- .upload-file > label {
2078
- min-width: 30%;
2079
- overflow: hidden;
2080
- text-overflow: ellipsis;
2081
- white-space: nowrap;
2082
- margin-right: 1rem;
1982
+ .kanban-column.min {
1983
+ flex: 0;
1984
+ min-width: 4rem;
2083
1985
  }
2084
1986
 
2085
- .upload-file > main {
2086
- flex: 1;
2087
- display: flex;
2088
- align-items: center;
2089
- justify-content: flex-end;
1987
+ .kanban-column>header {
1988
+ height: 5rem;
1989
+ border-bottom: solid 1px var(--divider-color);
1990
+ display: flex;
1991
+ align-items: flex-start;
1992
+ padding: 1rem;
1993
+ background-color: var(--paper-color);
2090
1994
  }
2091
1995
 
2092
- .upload-file .error {
2093
- color: red;
2094
- text-align: center;
1996
+ .kanban-column>header>.title {
1997
+ padding: 0 1rem;
1998
+ flex: 1;
1999
+ display: flex;
2000
+ flex-direction: column;
2095
2001
  }
2096
2002
 
2097
- .upload-file progress {
2098
- -webkit-appearance: none;
2099
- -moz-appearance: none;
2100
- appearance: none;
2101
- border: solid 1px var(--divider-color);
2003
+ .kanban-column>header>i,
2004
+ .kanban-column>footer>button {
2005
+ color: rgba(100, 100, 100, .6);
2102
2006
  }
2103
2007
 
2104
- .upload-file ::-webkit-progress-bar {
2105
- border: solid 1px rgb(235, 235, 235);
2106
- background-color: rgb(241, 241, 241);
2008
+ .kanban-column>main {
2009
+ flex: 1;
2010
+ overflow: auto;
2107
2011
  }
2108
2012
 
2109
- .upload-file ::-webkit-progress-value {
2110
- background-color: rgb(182, 182, 182);
2111
- opacity: 1;
2013
+ .kanban-column.min>main {
2014
+ min-height: 10rem;
2015
+ padding: 1rem;
2016
+ writing-mode: vertical-rl;
2017
+ color: var(--primary-color-light);
2112
2018
  }
2113
2019
 
2114
- .page6 {
2115
- height: 100%;
2116
- color: var(--text-color);
2020
+ .kanban-column>footer {
2021
+ display: flex;
2022
+ align-items: center;
2023
+ justify-content: space-between;
2117
2024
  }
2118
2025
 
2119
- .page6>menu {
2120
- padding: 0px;
2121
- margin: 0px;
2122
- grid-area: menu;
2123
- width: var(--page-menu-width);
2124
- color: var(--page-menu-color);
2125
- background-color: var(--page-menu-bgcolor);
2126
- border-right: solid 1px var(--divider-color);
2127
- resize: horizontal;
2026
+ .kanban-card {
2027
+ margin: 2rem;
2028
+ box-shadow: var(--shadow1);
2029
+ background-color: var(--paper-color);
2030
+ border-radius: 5px;
2031
+ min-height: 10rem;
2128
2032
  }
2129
2033
 
2130
- .page6>header {
2131
- grid-area: header;
2132
- height: var(--page-header-height);
2133
- color: var(--page-header-color);
2134
- background-color: var(--page-header-bgcolor);
2135
- border-bottom: solid 1px var(--divider-color);
2034
+ .kanban-card.red {
2035
+ border-left: solid 5px red;
2136
2036
  }
2137
2037
 
2138
- .page6>nav {
2139
- grid-area: nav;
2140
- height: var(--page-nav-height);
2038
+ .secondary-text {
2039
+ color: rgba(100, 100, 100, .8);
2141
2040
  }
2142
-
2143
- .page6>main {
2144
- grid-area: main;
2041
+ .avatar {
2042
+ background-color: rgba(200,200,200,.1);
2043
+ border: solid 3px transparent;
2044
+ border-radius: 100%;
2145
2045
  overflow: hidden;
2146
2046
  }
2147
2047
 
2148
- .page6>aside {
2149
- grid-area: aside;
2150
- width: var(--page-aside-width);
2151
- color: var(--page-aside-color);
2152
- background-color: var(--page-aside-bgcolor);
2048
+ .avatar.small {
2049
+ width: 3rem;
2050
+ height: 3rem;
2153
2051
  }
2154
-
2155
- .page6>footer {
2156
- grid-area: footer;
2157
- min-height: var(--page-footer-height);
2052
+ .wait-screen {
2053
+ position:absolute;
2054
+ top:0px;
2055
+ left:0px;
2056
+ width: 100%;
2057
+ height: 100%;
2058
+ background-color: rgba(200,200,200,.5);
2059
+ display: flex;
2060
+ justify-content: center;
2061
+ align-items: center;
2158
2062
  }
2159
-
2160
- :root {
2161
- --timeout: 800ms;
2063
+ .calendar {
2064
+ display: flex;
2065
+ flex-direction: column;
2066
+ flex: 1;
2067
+ overflow: hidden;
2162
2068
  }
2163
2069
 
2164
- .workspace {
2165
- display: grid;
2166
- grid-template-areas: "header header header"
2167
- "menu nav nav"
2168
- "menu main aside"
2169
- "menu detail aside"
2170
- "footer footer footer";
2171
- grid-template-columns: auto 1fr auto;
2172
- grid-template-rows: auto auto 1fr auto auto;
2070
+ .calendar-range-control {
2071
+ margin: .3rem;
2072
+ border: solid 1px var(--divider-color);
2073
+ background-color: var(--background-color);
2074
+ border-radius: 3px;
2075
+ padding: .2rem;
2076
+ display: flex;
2077
+ justify-content: space-between;
2078
+ align-items: center;
2079
+
2080
+ &>.btn {
2081
+ flex: 1;
2082
+ margin-left: 1rem;
2083
+ border-radius: 2px;
2084
+ background-color: var(--background-color);
2085
+ &.outlined {
2086
+ border: solid 1px var(--divider-color);
2087
+ background-color: var(--paper-color);
2088
+ }
2089
+ }
2173
2090
  }
2174
2091
 
2175
- .workspace>nav {
2176
- min-height: 3rem;
2092
+ .year-calendar {
2093
+ margin: 1rem;
2094
+ overflow: hidden;
2095
+ display: flex;
2096
+ flex-direction: column;
2097
+ padding: 0rem;
2177
2098
  }
2178
2099
 
2179
- .workspace>main {
2180
- resize: horizontal;
2100
+ .year-calendar>nav {
2101
+ display: flex;
2102
+ padding: .5rem;
2103
+ display: flex;
2104
+ align-items: center;
2181
2105
  }
2182
2106
 
2183
- .workspace>aside {
2184
- width: 100%;
2107
+ .year-calendar>nav>label {
2108
+ flex: 1;
2109
+ font-size: 1.3rem;
2110
+ font-weight: 500;
2185
2111
  }
2186
2112
 
2187
- .overall {
2188
- position: absolute;
2189
- top:0;
2190
- bottom: 0;
2191
- left:0;
2192
- right: 0;
2193
- background-color: var(--background-color);
2113
+ .year-calendar>nav>button {
2114
+ margin-left: 1px;
2115
+ border-radius: 3px;
2194
2116
  }
2195
2117
 
2196
- .site6 {
2197
- width: 100vw;
2198
- height: 100vh;
2118
+ .year-calendar>main {
2119
+ flex: 1;
2120
+ border: solid 1px var(--divider-color);
2121
+ border-width: 1px 1px 0 0;
2199
2122
  display: grid;
2200
- grid-template-columns: auto 1fr 1fr auto;
2201
- grid-template-rows: var(--site-header-height) 1fr auto auto;
2202
- grid-template-areas: "header header nav nav" "menu main main aside" "footer footer footer footer" "console console console console";
2203
- background-color: var(--background-color);
2123
+ grid-template-columns: repeat(3, 1fr);
2124
+ grid-gap: 1rem;
2125
+ grid-auto-rows: minmax(12rem, auto);
2126
+ overflow: hidden;
2127
+ font-size: .8rem;
2204
2128
  }
2205
2129
 
2206
- .site6>header {
2207
- grid-area: header;
2208
- color: var(--site-header-color);
2209
- background-color: var(--site-header-bgcolor);
2210
- display: flex;
2211
- align-items: center;
2212
- }
2130
+ .year-calendar .month-cell {
2131
+ border-width: 0 0 1px 1px;
2132
+ overflow: hidden;
2133
+ padding: .5rem;
2134
+ text-align: right;
2135
+ font-weight: 400;
2136
+
2137
+ &>nav {
2138
+ display: flex;
2139
+ padding: .5rem;
2140
+ display: flex;
2141
+ align-items: center;
2142
+ }
2143
+
2144
+ &>header {
2145
+ display:flex;
2213
2146
 
2214
- .site6>nav {
2215
- grid-area: nav;
2216
- color: var(--site-nav-color);
2217
- background-color: var(--site-nav-bgcolor);
2218
- display: flex;
2219
- justify-content: flex-end;
2220
- align-items: center;
2221
- padding-right: 1rem;
2222
- }
2147
+ &>.week-day-cell {
2148
+ flex: 1;
2149
+ border: solid 0px var(--divider-color);
2150
+ padding: 2px;
2151
+ text-align: right;
2152
+ min-width: 2rem !important;
2153
+ }
2154
+ }
2155
+
2156
+ &>main {
2157
+ flex: 1;
2158
+ border: solid 0px var(--divider-color);
2159
+ display: grid;
2160
+ grid-template-columns: repeat(7, 1fr);
2161
+ grid-gap: 0px;
2162
+ grid-auto-rows: minmax(2rem, auto);
2163
+ overflow: hidden;
2164
+ font-size: .8rem;
2223
2165
 
2224
- .site6>nav>header {
2225
- flex: 1;
2166
+ &>.day-cell {
2167
+ border: solid 0px;
2168
+ padding: .5rem;
2169
+ text-align: right;
2170
+ min-height: 1rem;
2171
+ width: 1rem;
2172
+ min-width: 1rem !important;
2173
+ font-weight: 400;
2174
+ color: var(--text-color);
2175
+ }
2176
+
2177
+
2178
+ &>.day-cell.other-month {
2179
+ color: var(--text-color-lighter);
2180
+ }
2181
+
2182
+ }
2226
2183
  }
2227
2184
 
2228
- .site6>menu {
2229
- grid-area: menu;
2230
- margin: 0;
2231
- border-right: solid 1px var(--divider-color);
2232
- padding: 0;
2233
- color: var(--site-menu-color);
2234
- background-color: var(--site-menu-bgcolor);
2185
+
2186
+
2187
+ .month-calendar {
2188
+ margin: 1rem;
2189
+ overflow: hidden;
2235
2190
  display: flex;
2236
2191
  flex-direction: column;
2237
- overflow: hidden;
2238
- width: var(--site-menu-width);
2239
- transition: width 0.3s ease-in-out;
2192
+ padding: 0rem;
2193
+
2240
2194
  }
2241
2195
 
2242
- .site6>menu>header {
2243
- border-bottom: solid 1px var(--divider-color);
2196
+ .month-calendar>nav {
2197
+ display: flex;
2198
+ padding: .5rem;
2199
+ display: flex;
2200
+ align-items: center;
2244
2201
  }
2245
2202
 
2246
- .site6>menu.max {
2247
- width: 20rem;
2203
+ .month-calendar>nav>label {
2204
+ flex: 1;
2205
+ font-size: 1.3rem;
2206
+ font-weight: 500;
2248
2207
  }
2249
2208
 
2250
- .site6>menu.min {
2251
- width: var(--site-menu-width);
2252
- overflow: visible;
2209
+ .month-calendar>nav>button {
2210
+ margin-left: 1px;
2211
+ border-radius: 3px;
2253
2212
  }
2254
2213
 
2255
- .site6>menu>main {
2256
- padding: .4rem;
2214
+ .month-calendar>header {
2215
+ display: grid;
2216
+ grid-template-columns: repeat(7, 1fr);
2217
+ font-size: .8rem;
2257
2218
  }
2258
2219
 
2259
- .site6>menu>main>.section-title {
2260
- width: 100%;
2261
- font-size: .7rem;
2262
- font-weight: 400;
2263
- padding: .5rem .7rem;
2220
+ .month-calendar>main {
2221
+ flex: 1;
2222
+ border: solid 1px var(--divider-color);
2223
+ border-width: 1px 1px 0 0;
2224
+ display: grid;
2225
+ grid-template-columns: repeat(7, 1fr);
2226
+ grid-gap: 0px;
2227
+ grid-auto-rows: minmax(5rem, auto);
2228
+ overflow: hidden;
2229
+ font-size: .8rem;
2264
2230
  }
2265
2231
 
2266
- .site6>menu>main>.section-title.min {
2267
- border-bottom: solid 1px var(--divider-color);
2268
- max-height: 1px
2232
+ .week-day-cell {
2233
+ border: solid 0px var(--divider-color);
2234
+ padding: 2px;
2235
+ text-align: right;
2236
+ min-width: 5rem;
2269
2237
  }
2270
2238
 
2271
- .site6>menu>main>.site-menu-item {
2272
- width: 100%;
2273
- display: flex;
2274
- align-items: center;
2239
+ .day-cell {
2240
+ border: solid 1px var(--divider-color);
2241
+ border-width: 0 0 1px 1px;
2242
+ padding: .5rem;
2243
+ text-align: right;
2244
+ min-height: 6rem;
2245
+ min-width: 5rem;
2246
+ font-weight: 400;
2275
2247
  }
2276
2248
 
2277
- .site6>menu.min .site-menu-item {
2278
- justify-content: center;
2249
+ .day-cell.today>header {
2250
+ border-bottom: solid 2px var(--primary-color);
2251
+ padding: .3rem;
2252
+ font-weight: 600;
2279
2253
  }
2280
2254
 
2281
- .site6>menu.min .site-menu-item i {
2282
- width: 4.2rem !important;
2255
+ .day-cell.other-month {
2256
+ color: var(--text-color-lighter);
2283
2257
  }
2284
2258
 
2285
- .site6>menu.max>main>.site-menu-item:not(.selected):hover {
2286
- color: var(--text-color);
2287
- background-color: rgba(200,200,200,.2);
2259
+ .day-cell:hover {
2260
+ background-color: rgba(200,200,200,.1);
2288
2261
  cursor: pointer;
2289
2262
  }
2290
2263
 
2291
- .site6>menu>main>.site-menu-item.selected {
2292
- color: var(--accent-color-text);
2293
- background-color: var(--accent-color);
2294
- border-radius: .5rem;
2264
+ .day-cell.today:hover {
2265
+ background-color: var(--primary-color-lighter);
2295
2266
  }
2296
2267
 
2297
- .site6>menu>main {
2298
- flex: 1;
2299
- overflow-x: hidden;
2300
- overflow-y: auto;
2301
- display: flex;
2302
- flex-direction: column;
2303
- align-items: center;
2268
+ .day-cell .event {
2269
+ background-color: var(--primary-color);
2270
+ color: var(--primary-color-text);
2271
+ padding: .3rem;
2272
+ border-radius: 3px;
2273
+ margin: 3px 1px;
2274
+ }
2275
+ .planner-box {
2276
+ flex: 1;
2277
+ display: flex;
2278
+ flex-direction: column;
2279
+ overflow: hidden;
2304
2280
  }
2305
2281
 
2306
- .site6>menu.min>main {
2307
- flex: 1;
2308
- overflow-x: visible;
2309
- overflow-y: visible;
2310
- display: flex;
2311
- flex-direction: column;
2312
- align-items: center;
2282
+ .planner-box > header {
2283
+ height: 5rem;
2284
+ border: solid 1px var(--divider-color);
2285
+ border-bottom: 0px;
2313
2286
  }
2314
2287
 
2315
- .site6>main {
2316
- grid-area: main;
2317
- overflow: hidden;
2318
- resize: horizontal;
2288
+ .planner {
2289
+ flex: 1;
2290
+ border: solid 1px var(--divider-color);
2291
+ display: flex;
2292
+ overflow: auto;
2293
+
2294
+ --row-height: 6rem;
2295
+ --column-width: 8rem;
2319
2296
  }
2320
2297
 
2321
- .site6>aside {
2322
- grid-area: aside;
2323
- color: var(--site-aside-color);
2324
- background-color: var(--site-aside-bgcolor);
2298
+ .planner > .column0 {
2299
+ width: var(--column-width);
2300
+ position: sticky;
2301
+ left: 0px;
2302
+ z-index: 11;
2325
2303
  }
2326
2304
 
2327
- .site6>footer {
2328
- grid-area: footer;
2305
+ .planner > .column0 > .column-header {
2306
+ width: var(--column-width);
2307
+ height: var(--row-height);
2308
+ position: sticky;
2309
+ top: 0px;
2310
+ background-color: var(--paper-color);
2311
+ border-right: solid 1px var(--divider-color);
2312
+ border-bottom: solid 1px var(--divider-color);
2329
2313
  }
2330
2314
 
2331
- .site6>.site-console {
2332
- grid-area: console;
2333
- min-height: 20rem;
2334
- background-color: rgb(222, 222, 222);
2335
- color: #000;
2315
+ .planner .date-header.thisWeek {
2316
+ background-color: rgb(10, 176, 35);
2317
+ border-radius: 3px;
2318
+ padding: .2rem;
2319
+ color: var(--paper-color);
2336
2320
  }
2337
2321
 
2338
- .site6>.site-console>nav {
2339
- display: flex;
2340
- align-items: center;
2341
- justify-content: flex-end;
2322
+ .planner .row-header {
2323
+ width: var(--column-width);
2324
+ background-color: var(--paper-color);
2325
+ height: var(--row-height);
2326
+ border-bottom: solid 1px var(--divider-color);
2327
+ border-right: solid 1px var(--divider-color);
2328
+ display: flex;
2329
+ justify-content: center;
2330
+ align-items: center;
2342
2331
  }
2343
2332
 
2344
- .site6>.site-console>main {
2345
- overflow: scroll;
2346
- max-height: 40vh;
2347
- display: flex;
2348
- flex-direction: column-reverse;
2333
+ .planner > .rows {
2334
+ overflow: visible;
2349
2335
  }
2350
2336
 
2351
- .site6>.site-console>main>div {
2352
- padding: 1rem;
2353
- border-bottom: dotted 1px var(--divider-color);
2337
+ .planner > .rows .column-header {
2338
+ width: var(--column-width);
2339
+ background-color: var(--paper-color);
2340
+ height: 2.6rem;
2341
+ padding: .5rem;
2354
2342
  }
2355
2343
 
2356
- .site6>.site-preview {
2357
- position: absolute;
2358
- z-index: 10;
2359
- width: 100vw;
2360
- height: 100vh;
2361
- background-color: var(--site-preview-background, rgba(0, 0, 0, 0.32));
2362
- display: flex;
2363
- flex-direction: column;
2364
- align-items: center;
2365
- justify-content: center;
2344
+ .planner > .rows > .row {
2345
+ height: var(--row-height);
2346
+ border-bottom: solid 1px var(--divider-color);
2366
2347
  }
2367
2348
 
2368
- .site-error-fallback {
2369
- display: flex;
2370
- flex-direction: column;
2371
- align-items: center;
2372
- justify-content: center;
2373
- height: 100vh;
2374
- width: 100vw;
2375
- background-color: var(--background-color);
2349
+ .planner > .rows > .row0 {
2350
+ position: sticky;
2351
+ top: 0px;
2352
+ z-index: 10;
2353
+ height: 3rem;
2354
+ background-color: var(--paper-color);
2355
+ border-bottom: solid 1px var(--divider-color);
2376
2356
  }
2377
2357
 
2378
- .site-error-fallback > dialog {
2379
- display: flex;
2380
- flex-direction: column;
2381
- align-items: center;
2382
- justify-content: center;
2383
- width: 50%;
2384
- height: 50%;
2385
- background-color: var(--paper-color);
2386
- box-shadow: var(--shadow1);
2387
-
2388
- border: solid 1px black;
2358
+ .planner > .rows > .row1 {
2359
+ position: sticky;
2360
+ top: 3rem;
2361
+ z-index: 10;
2362
+ height: 3rem;
2363
+ background-color: var(--paper-color);
2364
+ border-bottom: solid 1px var(--divider-color);
2389
2365
  }
2390
- .overlay {
2391
- opacity: 0.5;
2392
- position: absolute;
2393
- top: 0;
2394
- right: 0;
2395
- bottom: 0;
2396
- left: 0;
2366
+
2367
+ .planner .cell {
2368
+ width: var(--column-width);
2369
+ height: 100%;
2370
+ padding: 0.5rem;
2397
2371
  display: flex;
2398
- align-items: center;
2372
+ flex-direction: column;
2399
2373
  justify-content: center;
2400
- background: rgba(77, 77, 77, 0.7);
2401
- z-index: 100;
2374
+ align-items: flex-start;
2375
+ border-right: dotted 1px var(--divider-color);
2402
2376
  }
2403
2377
 
2404
- .overlay.prompt {
2405
- z-index: 1000;
2378
+ .planner .cell:hover {
2379
+ background-color: rgba(220,220,220,.3);
2406
2380
  }
2407
2381
 
2408
- .dialog-panel.prompt {
2409
- z-index: 1010;
2382
+ .planner .cell.weekend {
2383
+ background-color: rgba(200,200,200,.2);
2410
2384
  }
2411
2385
 
2412
- .dialog-panel {
2413
- z-index: 110;
2414
- min-width: 500px;
2415
- max-width: 90%;
2416
- top: 0;
2417
- right: 0;
2418
- bottom: 0;
2419
- left: 0;
2420
- background: var(--paper-color, #fff);
2421
- padding: 0;
2422
- display: flex;
2423
- flex-direction: column;
2424
- border-radius: 5px;
2425
- box-shadow: var(--shadow1);
2426
- overflow: auto;
2386
+ .planner .cell.drag-over {
2387
+ border: dashed 2px var(--divider-color);
2388
+ }
2389
+
2390
+ .event-card {
2391
+ width: 100%;
2427
2392
  border: solid 1px var(--divider-color);
2393
+ border-radius: 3px;
2394
+ padding: .1rem .5rem;
2395
+ font-size: .8rem;
2396
+ font-weight: 500;
2397
+ color: var(--text-color-light);
2428
2398
  }
2429
2399
 
2430
- .dialog-panel > header {
2431
- font-size: 1rem;
2432
- font-weight: 600;
2433
- padding: 1rem;
2400
+ .event-card:hover {
2401
+ cursor: pointer;
2402
+ border: solid 2px var(--divider-color);
2403
+ }
2404
+ .uploader {
2434
2405
  display: flex;
2406
+ flex-direction: column;
2407
+ flex: 1;
2435
2408
  }
2436
2409
 
2437
- .dialog-panel > main {
2438
- flex: 1;
2439
- padding: 1rem;
2410
+ .demo-uploader {
2411
+ width: 40rem;
2412
+ height: 30rem;
2413
+ margin: 5rem auto;
2414
+ flex-direction: column;
2440
2415
  }
2441
2416
 
2442
- .dialog-panel > footer {
2443
- padding: 1rem;
2417
+ /***************** Upload Area ***********************/
2418
+
2419
+ .upload-area6 {
2420
+ flex: 1;
2421
+ margin: 0 0 1rem 0;
2422
+ border: dashed 2px var(--divider-color);
2444
2423
  display: flex;
2445
- justify-content: flex-end;
2424
+ flex-direction: column;
2425
+ align-items: center;
2426
+ justify-content: center;
2427
+ border-radius: 1rem;
2428
+ min-height: 10rem;
2446
2429
  }
2447
2430
 
2448
- .dialog-panel > footer button {
2449
- min-width: 5rem;
2431
+ .upload-area6 > label {
2432
+ font-size: 1.1rem;
2433
+ font-weight: 500;
2450
2434
  }
2451
- .view {
2452
- flex: 1;
2453
- border: solid 1px rgb(200,200,200);;
2454
- display: flex;
2455
- flex-direction: column;
2435
+
2436
+ .upload-area6.drag-over {
2437
+ background-color: rgba(200, 200, 200, 0.1);
2456
2438
  }
2457
2439
 
2458
- .view>header {
2459
- width: 100%;
2460
- display: flex;
2461
- align-items: flex-end;
2462
- background-color: rgb(200,200,200);
2463
- min-height: 2rem;
2464
- height: 2.5rem;
2465
- max-height: 2.5rem;
2440
+ /***************** Upload File ***********************/
2441
+
2442
+ .upload-file {
2443
+ display: flex;
2444
+ align-items: center;
2466
2445
  }
2467
2446
 
2468
- .view>header>.icon {
2469
- height: 2.4rem;
2470
- width: 3rem
2447
+ .upload-file > label {
2448
+ min-width: 30%;
2449
+ overflow: hidden;
2450
+ text-overflow: ellipsis;
2451
+ white-space: nowrap;
2452
+ margin-right: 1rem;
2471
2453
  }
2472
2454
 
2473
- .view>header>label {
2474
- flex: 1;
2475
- height: 100%;
2476
- display: flex;
2477
- align-items: center;
2455
+ .upload-file > main {
2456
+ flex: 1;
2457
+ display: flex;
2458
+ align-items: center;
2459
+ justify-content: flex-end;
2478
2460
  }
2479
2461
 
2480
- .view>nav {
2481
- min-height: 2rem;
2482
- display: flex;
2483
- align-items: center;
2484
- justify-content: flex-end;
2485
- background-color: rgb(230,230,230);
2462
+ .upload-file .error {
2463
+ color: red;
2464
+ text-align: center;
2486
2465
  }
2487
2466
 
2488
- .view>nav>* {
2489
- border-radius: 0px !important;
2467
+ .upload-file progress {
2468
+ -webkit-appearance: none;
2469
+ -moz-appearance: none;
2470
+ appearance: none;
2471
+ border: solid 1px var(--divider-color);
2490
2472
  }
2491
2473
 
2492
- .view>main {
2493
- flex: 1;
2494
- height: 100%;
2474
+ .upload-file ::-webkit-progress-bar {
2475
+ border: solid 1px rgb(235, 235, 235);
2476
+ background-color: rgb(241, 241, 241);
2495
2477
  }
2496
2478
 
2497
- .view>footer {
2498
- width: 100%;
2499
- display: flex;
2500
- align-items: center;
2501
- background-color: rgb(230,230,230);
2479
+ .upload-file ::-webkit-progress-value {
2480
+ background-color: rgb(182, 182, 182);
2481
+ opacity: 1;
2502
2482
  }
2483
+
2503
2484
  .file-explorer {
2504
2485
  width: 100%;
2505
2486
  height: 100%;