welcome_css 0.12 → 0.16
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.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/_welcome-ui-buttons.scss +17 -2
- data/app/assets/stylesheets/_welcome-ui-responsive.scss +28 -0
- data/app/assets/stylesheets/_welcome-ui-sidebar.scss +12 -0
- data/app/assets/stylesheets/_welcome-ui-tables.scss +312 -25
- data/app/assets/stylesheets/_welcome-ui.scss +29 -0
- data/app/assets/stylesheets/welcome.css.scss +1 -0
- data/lib/welcome_css/version.rb +1 -1
- metadata +8 -7
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 17d7fa22affce23f3d5920dc446add2c4f828913c91681364374b0b55f6938b5
         | 
| 4 | 
            +
              data.tar.gz: be173fb6883807994592a5c746662f7042f02b2fe9ceb1342543b10667f8e238
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 9bf1607816e5de1945092a223d0248bc42e7f7bf3fe2eb399c1ebd25432a0f7e0a7e254d0b18b21bb0139e27875d7cfc8af8324d99003d3ef15975a414d8c106
         | 
| 7 | 
            +
              data.tar.gz: 86da67c5e70e78a976a7718c1cf94153cca135713c5586ed3814f88e58b42342679ea901ea250f076969f035c6758105551db32bf1e543109a094aeb076434e0
         | 
| @@ -79,6 +79,21 @@ | |
| 79 79 | 
             
              color: $ui_back;
         | 
| 80 80 | 
             
            }
         | 
| 81 81 |  | 
| 82 | 
            +
            .btn-black {
         | 
| 83 | 
            +
              background-color: $ui_back;
         | 
| 84 | 
            +
              font-size: $ui_font_normal;
         | 
| 85 | 
            +
              color: $ui_white;
         | 
| 86 | 
            +
              border: 1px solid $ui_back;
         | 
| 87 | 
            +
              font-family: 'gt-eesti-medium';
         | 
| 88 | 
            +
            }
         | 
| 89 | 
            +
            .btn-black-alternative {
         | 
| 90 | 
            +
              background-color: $ui_white;
         | 
| 91 | 
            +
              font-size: $ui_font_normal;
         | 
| 92 | 
            +
              color: $ui_back;
         | 
| 93 | 
            +
              border: 1px solid $ui_back;
         | 
| 94 | 
            +
              font-family: 'gt-eesti-medium';
         | 
| 95 | 
            +
            }
         | 
| 96 | 
            +
             | 
| 82 97 | 
             
            /* ========================================= */
         | 
| 83 98 |  | 
| 84 99 | 
             
            .ui-btn-status {
         | 
| @@ -92,8 +107,8 @@ | |
| 92 107 | 
             
              border: 1px solid $ui_green;
         | 
| 93 108 | 
             
            }
         | 
| 94 109 | 
             
            .ui-btn-status.btn-secondary {
         | 
| 95 | 
            -
              background-color: $ | 
| 96 | 
            -
              border: 1px solid $ | 
| 110 | 
            +
              background-color: $ui_back;
         | 
| 111 | 
            +
              border: 1px solid $ui_back;
         | 
| 97 112 | 
             
            }
         | 
| 98 113 |  | 
| 99 114 | 
             
            /* ========================================= */
         | 
| @@ -0,0 +1,28 @@ | |
| 1 | 
            +
            /* =========================== */
         | 
| 2 | 
            +
            /* Responsive */
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            @media (max-width: 1024px) {
         | 
| 5 | 
            +
              .am-content.ui-app-area .nav-lateral {
         | 
| 6 | 
            +
                display: block;
         | 
| 7 | 
            +
                float: left;
         | 
| 8 | 
            +
                position: relative;
         | 
| 9 | 
            +
                width: 100%;
         | 
| 10 | 
            +
              }
         | 
| 11 | 
            +
              .am-content.ui-app-area .nav-lateral.nav-tabs .nav-item {
         | 
| 12 | 
            +
                display: block;
         | 
| 13 | 
            +
                float: left;
         | 
| 14 | 
            +
                position: relative;
         | 
| 15 | 
            +
              }
         | 
| 16 | 
            +
              .am-content.ui-app-area .content-lateral {
         | 
| 17 | 
            +
                display: block;
         | 
| 18 | 
            +
                float: left;
         | 
| 19 | 
            +
                position: relative;
         | 
| 20 | 
            +
                width: 100%;
         | 
| 21 | 
            +
              }
         | 
| 22 | 
            +
            }
         | 
| 23 | 
            +
             | 
| 24 | 
            +
            @media (min-width: 576px) {
         | 
| 25 | 
            +
              .modal-dialog {
         | 
| 26 | 
            +
                max-width: 680px;
         | 
| 27 | 
            +
              }
         | 
| 28 | 
            +
            }
         | 
| @@ -585,6 +585,18 @@ | |
| 585 585 | 
             
              color: #000 !important;
         | 
| 586 586 | 
             
            }
         | 
| 587 587 |  | 
| 588 | 
            +
            .am-content.ui-app-area .nav-lateral {
         | 
| 589 | 
            +
              display: block;
         | 
| 590 | 
            +
              float: left;
         | 
| 591 | 
            +
              position: relative;
         | 
| 592 | 
            +
              width: 18%;
         | 
| 593 | 
            +
            }
         | 
| 594 | 
            +
            .am-content.ui-app-area .content-lateral {
         | 
| 595 | 
            +
              display: block;
         | 
| 596 | 
            +
              float: right;
         | 
| 597 | 
            +
              position: relative;
         | 
| 598 | 
            +
              width: 82%;
         | 
| 599 | 
            +
            }
         | 
| 588 600 |  | 
| 589 601 |  | 
| 590 602 |  | 
| @@ -59,7 +59,7 @@ | |
| 59 59 |  | 
| 60 60 | 
             
            table .ui-table-row {
         | 
| 61 61 | 
             
              background-color: $ui_white;
         | 
| 62 | 
            -
              border: 1px solid rgba(0, 0, 0, 0.125) | 
| 62 | 
            +
              /*border: 1px solid rgba(0, 0, 0, 0.125);*/
         | 
| 63 63 | 
             
            }
         | 
| 64 64 | 
             
            .ui-toptable {
         | 
| 65 65 | 
             
              background-color: $ui_middlegray;
         | 
| @@ -79,8 +79,8 @@ table .ui-table-row { | |
| 79 79 | 
             
            /* Table Cells  */
         | 
| 80 80 | 
             
            .ui-table thead {
         | 
| 81 81 | 
             
              background-color: #edeff4;
         | 
| 82 | 
            -
              border: 1px solid #edeff4 | 
| 83 | 
            -
              font-family: 'hk-grotesk- | 
| 82 | 
            +
              /*border: 1px solid #edeff4;*/
         | 
| 83 | 
            +
              font-family: 'hk-grotesk-bold';
         | 
| 84 84 | 
             
            }
         | 
| 85 85 | 
             
            .ui-table table {
         | 
| 86 86 | 
             
              background-color: $ui_white;
         | 
| @@ -104,6 +104,9 @@ table .ui-table-row { | |
| 104 104 | 
             
              background-size: 8px;
         | 
| 105 105 | 
             
              background-position: left 10px top 6px;
         | 
| 106 106 | 
             
            }
         | 
| 107 | 
            +
            .ui-app-area .table thead th {
         | 
| 108 | 
            +
              border-bottom: transparent;
         | 
| 109 | 
            +
            }
         | 
| 107 110 |  | 
| 108 111 | 
             
            /* Tr */
         | 
| 109 112 | 
             
            .ui-table table tbody tr:hover {
         | 
| @@ -493,9 +496,9 @@ table .ui-table-row { | |
| 493 496 | 
             
              margin-bottom: 60px;
         | 
| 494 497 | 
             
            }
         | 
| 495 498 | 
             
            .ui-app-area .widget-head {
         | 
| 496 | 
            -
              background-color: # | 
| 497 | 
            -
              padding: 12px  | 
| 498 | 
            -
              border: 1px solid # | 
| 499 | 
            +
              background-color: #fff !important;
         | 
| 500 | 
            +
              padding: 12px 15px;
         | 
| 501 | 
            +
              border-bottom: 1px solid #7A7A7A !important;
         | 
| 499 502 | 
             
              -webkit-border-top-left-radius: .25rem!important;
         | 
| 500 503 | 
             
              -webkit-border-top-right-radius: .25rem!important;
         | 
| 501 504 | 
             
              -moz-border-radius-topleft: .25rem!important;
         | 
| @@ -513,9 +516,9 @@ table .ui-table-row { | |
| 513 516 | 
             
              padding-left: 0;
         | 
| 514 517 | 
             
            }
         | 
| 515 518 | 
             
            .ui-app-area .widget-head  .title {
         | 
| 516 | 
            -
              font-size:  | 
| 517 | 
            -
              font-weight:  | 
| 518 | 
            -
              font-family:  | 
| 519 | 
            +
              font-size: 22px;
         | 
| 520 | 
            +
              font-weight: 600;
         | 
| 521 | 
            +
              font-family: 'hk_groteskbold';
         | 
| 519 522 | 
             
            }
         | 
| 520 523 | 
             
            .ui-app-area .card-body .nav.nav-tabs {
         | 
| 521 524 | 
             
              margin-bottom: 30px;
         | 
| @@ -524,17 +527,67 @@ table .ui-table-row { | |
| 524 527 | 
             
            .ui-app-area .card-body .nav-tabs .nav-link.active, .ui-app-area .card-body .nav-tabs .nav-item.show .nav-link,
         | 
| 525 528 | 
             
            .ui-app-area .card-body .nav-tabs .nav-link:hover {
         | 
| 526 529 | 
             
              color: #000;
         | 
| 527 | 
            -
              background-color:  | 
| 528 | 
            -
              border | 
| 530 | 
            +
              background-color: #EDEFF4;
         | 
| 531 | 
            +
              border: 1px solid #EDEFF4;
         | 
| 532 | 
            +
              border-radius: $ui-radius;
         | 
| 529 533 | 
             
              font-family: gt-eesti-regular;
         | 
| 534 | 
            +
              background-image: image-url('icons/menu_requirements.svg');
         | 
| 535 | 
            +
              background-repeat: no-repeat;
         | 
| 536 | 
            +
              background-size: 10px;
         | 
| 537 | 
            +
              background-position: top 15px left 6px;
         | 
| 530 538 | 
             
            }
         | 
| 531 539 | 
             
            .ui-app-area .card-body .nav-tabs .nav-link {
         | 
| 532 540 | 
             
              color: #000;
         | 
| 533 541 | 
             
              font-family: gt-eesti-regular;
         | 
| 542 | 
            +
              padding: 8px 8px 8px 22px !important;
         | 
| 543 | 
            +
            }
         | 
| 544 | 
            +
             | 
| 545 | 
            +
            /* =========================== */
         | 
| 546 | 
            +
             | 
| 547 | 
            +
            .ui-app-area .card-body .nav-tabs .nav-link.active .nav-link {
         | 
| 548 | 
            +
              padding: 8px 0 !important;
         | 
| 549 | 
            +
            }
         | 
| 550 | 
            +
            .ui-app-area .card-body .nav-tabs .nav-link.active .nav-link.active,
         | 
| 551 | 
            +
            .ui-app-area .card-body .nav-tabs .nav-link.active .nav-link:hover {
         | 
| 552 | 
            +
              color: #000;
         | 
| 553 | 
            +
              background-color: #fff;
         | 
| 554 | 
            +
              border: 1px solid #fff;
         | 
| 555 | 
            +
              border-radius: 0 !important;
         | 
| 556 | 
            +
              background-image: none;
         | 
| 557 | 
            +
              border-bottom: 1px solid #4A8FE7;
         | 
| 558 | 
            +
            }
         | 
| 559 | 
            +
             | 
| 560 | 
            +
            .ui-app-area .card-body .content-lateral .nav-link {
         | 
| 561 | 
            +
              background-image: none;
         | 
| 562 | 
            +
              border: 0px;
         | 
| 563 | 
            +
              border-bottom: 1px solid #fff;
         | 
| 564 | 
            +
              padding: 8px 0px 8px 0px !important;
         | 
| 565 | 
            +
              background-color: transparent;
         | 
| 566 | 
            +
              border-radius: 0px !important;
         | 
| 567 | 
            +
            }
         | 
| 568 | 
            +
            .ui-app-area .card-body .content-lateral .nav-link.active,
         | 
| 569 | 
            +
            .ui-app-area .card-body .content-lateral .nav-link:hover {
         | 
| 570 | 
            +
              background-image: none;
         | 
| 571 | 
            +
              border: 0px;
         | 
| 572 | 
            +
              border-bottom: 1px solid #4A8FE7;
         | 
| 573 | 
            +
              padding: 8px 0px 8px 0px !important;
         | 
| 574 | 
            +
              background-color: transparent;
         | 
| 575 | 
            +
              border-radius: 0px !important;
         | 
| 534 576 | 
             
            }
         | 
| 577 | 
            +
             | 
| 578 | 
            +
             | 
| 579 | 
            +
             | 
| 535 580 | 
             
            .table th, .table td {
         | 
| 536 581 | 
             
              padding: 1rem;
         | 
| 537 582 | 
             
            }
         | 
| 583 | 
            +
            .am-content.ui-app-area .table th,
         | 
| 584 | 
            +
            .am-content.ui-app-area .table td {
         | 
| 585 | 
            +
              border-top: transparent;
         | 
| 586 | 
            +
              border-bottom: 1px solid #dee2e6;
         | 
| 587 | 
            +
            }
         | 
| 588 | 
            +
            .am-content.ui-app-area .table tr:last-child td {
         | 
| 589 | 
            +
              border-bottom: transparent;
         | 
| 590 | 
            +
            }
         | 
| 538 591 | 
             
            .ui-app-area .drop-side {
         | 
| 539 592 | 
             
              left: 220px !important;
         | 
| 540 593 | 
             
              top: 4px !important;
         | 
| @@ -564,12 +617,76 @@ table .ui-table-row { | |
| 564 617 | 
             
              margin-bottom: 0px;
         | 
| 565 618 | 
             
            }
         | 
| 566 619 |  | 
| 620 | 
            +
            .am-content.ui-app-area .content-lateral table {
         | 
| 621 | 
            +
              margin-bottom: 0;
         | 
| 622 | 
            +
            }
         | 
| 623 | 
            +
            .am-content.ui-app-area .content-lateral .table-widget {
         | 
| 624 | 
            +
              margin-bottom: 40px;
         | 
| 625 | 
            +
            }
         | 
| 626 | 
            +
             | 
| 627 | 
            +
            /* =========================== */
         | 
| 628 | 
            +
             | 
| 629 | 
            +
            .am-content.ui-app-area .widget-head.primary-head {
         | 
| 630 | 
            +
              background-color: #EAEEF5 !important;
         | 
| 631 | 
            +
              border-bottom: none !important;
         | 
| 632 | 
            +
            }
         | 
| 633 | 
            +
            .am-content.ui-app-area .widget-head.primary-head .title {
         | 
| 634 | 
            +
              font-size: 18px;
         | 
| 635 | 
            +
            }
         | 
| 636 | 
            +
            .am-content.ui-app-area .widget-head {
         | 
| 637 | 
            +
              box-shadow: 1px -1px 13px 0px rgba(174,174,174,0.15);
         | 
| 638 | 
            +
              -webkit-box-shadow: 1px -1px 13px 0px rgba(174,174,174,0.15);
         | 
| 639 | 
            +
              -moz-box-shadow: 1px -1px 13px 0px rgba(174,174,174,0.15);
         | 
| 640 | 
            +
            }
         | 
| 641 | 
            +
            .am-content.ui-app-area .widget-head-nocolor {
         | 
| 642 | 
            +
              background-color: transparent;
         | 
| 643 | 
            +
            }
         | 
| 644 | 
            +
             | 
| 645 | 
            +
            /* =========================== */
         | 
| 646 | 
            +
             | 
| 647 | 
            +
            .main-content table,
         | 
| 648 | 
            +
            .am-content.ui-app-area .table-widget,
         | 
| 649 | 
            +
            .am-content.ui-app-area .content-lateral table {
         | 
| 650 | 
            +
              box-shadow: 1px -1px 13px 0px rgba(174,174,174,0.25);
         | 
| 651 | 
            +
              -webkit-box-shadow: 1px -1px 13px 0px rgba(174,174,174,0.25);
         | 
| 652 | 
            +
              -moz-box-shadow: 1px -1px 13px 0px rgba(174,174,174,0.25);
         | 
| 653 | 
            +
              border-radius: $ui-radius;
         | 
| 654 | 
            +
            }
         | 
| 655 | 
            +
            .am-content.ui-app-area .content-lateral table {
         | 
| 656 | 
            +
              /*margin-bottom: 40px;*/
         | 
| 657 | 
            +
            }
         | 
| 658 | 
            +
            .am-content.ui-app-area .table-widget {
         | 
| 659 | 
            +
              background-color: $ui_white;
         | 
| 660 | 
            +
            }
         | 
| 661 | 
            +
             | 
| 662 | 
            +
            /* =========================== */
         | 
| 663 | 
            +
             | 
| 664 | 
            +
            .am-content.ui-app-area .customers-header .accordion-toggle[aria-expanded="true"] img {
         | 
| 665 | 
            +
              transform: rotate(180deg);
         | 
| 666 | 
            +
            }
         | 
| 667 | 
            +
            .am-content.ui-app-area .customers-header h3 {
         | 
| 668 | 
            +
              padding-left: 20px;
         | 
| 669 | 
            +
            }
         | 
| 670 | 
            +
            .am-content.ui-app-area .customers-header h3::before {
         | 
| 671 | 
            +
              background-image: image-url('icons/menu_customers.svg');
         | 
| 672 | 
            +
              background-repeat: no-repeat;
         | 
| 673 | 
            +
              background-size: 14px;
         | 
| 674 | 
            +
              width: 14px;
         | 
| 675 | 
            +
              height: 14px;
         | 
| 676 | 
            +
              content: "";
         | 
| 677 | 
            +
              display: block;
         | 
| 678 | 
            +
              position: absolute;
         | 
| 679 | 
            +
              margin-left: -20px;
         | 
| 680 | 
            +
              top: 10px;
         | 
| 681 | 
            +
            }
         | 
| 682 | 
            +
            .am-content.ui-app-area .customers-header h3:hover {
         | 
| 683 | 
            +
              cursor: pointer;
         | 
| 684 | 
            +
            }
         | 
| 685 | 
            +
             | 
| 567 686 | 
             
            /* =========================== */
         | 
| 568 687 |  | 
| 569 | 
            -
            . | 
| 570 | 
            -
               | 
| 571 | 
            -
              -webkit-box-shadow: 1px -1px 13px 0px rgba(174,174,174,0.68);
         | 
| 572 | 
            -
              -moz-box-shadow: 1px -1px 13px 0px rgba(174,174,174,0.68);
         | 
| 688 | 
            +
            .am-content.ui-app-area .customer-block-info {
         | 
| 689 | 
            +
              margin-bottom: 40px;
         | 
| 573 690 | 
             
            }
         | 
| 574 691 |  | 
| 575 692 | 
             
            /* =========================== */
         | 
| @@ -603,6 +720,14 @@ table .ui-table-row { | |
| 603 720 | 
             
              padding: 12px 20px;
         | 
| 604 721 | 
             
              border: 1px solid #edeff4!important;
         | 
| 605 722 | 
             
            }
         | 
| 723 | 
            +
            .main-app .tab-table .row-head-white {
         | 
| 724 | 
            +
              background-color: #fff;
         | 
| 725 | 
            +
              margin-left: 0;
         | 
| 726 | 
            +
              margin-right: 0;
         | 
| 727 | 
            +
              margin-bottom: 30px;
         | 
| 728 | 
            +
              padding: 12px 20px;
         | 
| 729 | 
            +
              border-bottom: 1px solid #000!important;
         | 
| 730 | 
            +
            }
         | 
| 606 731 | 
             
            .main-app .card .card-header {
         | 
| 607 732 | 
             
              background-color: #edeff4;
         | 
| 608 733 | 
             
              font-weight: 600;
         | 
| @@ -624,13 +749,14 @@ table .ui-table-row { | |
| 624 749 | 
             
              margin-right: 20px;
         | 
| 625 750 | 
             
            }
         | 
| 626 751 | 
             
            .main-app .ui-app-area .tab-content .tab-pane {
         | 
| 627 | 
            -
              margin-top: 40px | 
| 752 | 
            +
              /*margin-top: 40px;*/
         | 
| 628 753 | 
             
            }
         | 
| 629 754 | 
             
            .main-app .ui-app-area .tab-content .tab-pane .h3 {
         | 
| 630 755 | 
             
              font-size: 20px;
         | 
| 631 756 | 
             
            }
         | 
| 632 | 
            -
            .main-app .ui-app-area table thead {
         | 
| 633 | 
            -
              background-color: # | 
| 757 | 
            +
            .main-app .ui-app-area table thead th {
         | 
| 758 | 
            +
              background-color: #fff;
         | 
| 759 | 
            +
              border-bottom: 1px solid #7A7A7A !important;
         | 
| 634 760 | 
             
            }
         | 
| 635 761 | 
             
            .ui-app-area .page-head .dropdown.droppright {
         | 
| 636 762 | 
             
              top: 6px;
         | 
| @@ -759,6 +885,7 @@ table .ui-table-row { | |
| 759 885 | 
             
            }
         | 
| 760 886 |  | 
| 761 887 | 
             
            /* =========================== */
         | 
| 888 | 
            +
            /* Land App - LP */
         | 
| 762 889 |  | 
| 763 890 | 
             
            .block-stats {
         | 
| 764 891 | 
             
              display: block;
         | 
| @@ -799,7 +926,7 @@ table .ui-table-row { | |
| 799 926 | 
             
              position: relative;
         | 
| 800 927 | 
             
              padding: 0 3px;
         | 
| 801 928 | 
             
            }
         | 
| 802 | 
            -
            .widget {
         | 
| 929 | 
            +
            .ui-app-area .widget {
         | 
| 803 930 | 
             
              display: block;
         | 
| 804 931 | 
             
              float: left;
         | 
| 805 932 | 
             
              position: relative;
         | 
| @@ -815,6 +942,19 @@ table .ui-table-row { | |
| 815 942 | 
             
              background-color: transparent;
         | 
| 816 943 | 
             
              border: none;
         | 
| 817 944 | 
             
            }
         | 
| 945 | 
            +
            .ui-app-area.am-content .widget-area .widget {
         | 
| 946 | 
            +
              display: block;
         | 
| 947 | 
            +
              float: left;
         | 
| 948 | 
            +
              position: relative;
         | 
| 949 | 
            +
              background-color: #EEF2F7;
         | 
| 950 | 
            +
              border: 1px solid #D2D5DA;
         | 
| 951 | 
            +
              border-radius: $ui-radius;
         | 
| 952 | 
            +
              padding: 15px 20px;
         | 
| 953 | 
            +
              min-height: 300px;
         | 
| 954 | 
            +
            }
         | 
| 955 | 
            +
            .ui-app-area.am-content .widget-area h4 {
         | 
| 956 | 
            +
              margin-bottom: 0;
         | 
| 957 | 
            +
            }
         | 
| 818 958 | 
             
            .widget .widget-title {
         | 
| 819 959 | 
             
              font-size: 18px;
         | 
| 820 960 | 
             
              line-height: 22px;
         | 
| @@ -826,22 +966,30 @@ table .ui-table-row { | |
| 826 966 | 
             
              margin-top: 12px;
         | 
| 827 967 | 
             
              min-height: 90px;
         | 
| 828 968 | 
             
            }
         | 
| 829 | 
            -
            .widget .phase | 
| 969 | 
            +
            .widget .phase,
         | 
| 970 | 
            +
            .block-stats-area .parcels-list .phase {
         | 
| 830 971 | 
             
              border-radius: $ui-radius;
         | 
| 831 972 | 
             
              padding: 0 2px;
         | 
| 832 973 | 
             
              color: $ui_white;
         | 
| 833 974 | 
             
            }
         | 
| 834 | 
            -
            . | 
| 975 | 
            +
            .block-stats-area .parcels-list .phase {
         | 
| 976 | 
            +
              font-size: 13px;
         | 
| 977 | 
            +
            }
         | 
| 978 | 
            +
            .widget .phase.p-pass,
         | 
| 979 | 
            +
            .block-stats-area .parcels-list .phase.p-pass {
         | 
| 835 980 | 
             
              background-color: $ui_blue;
         | 
| 836 981 | 
             
            }
         | 
| 837 | 
            -
            .widget .phase.p-questionable | 
| 982 | 
            +
            .widget .phase.p-questionable,
         | 
| 983 | 
            +
            .block-stats-area .parcels-list .phase.p-questionable {
         | 
| 838 984 | 
             
              background-color: #FAC15F;
         | 
| 839 985 | 
             
              color: $ui_back;
         | 
| 840 986 | 
             
            }
         | 
| 841 | 
            -
            .widget .phase.p-offmarket | 
| 987 | 
            +
            .widget .phase.p-offmarket,
         | 
| 988 | 
            +
            .block-stats-area .parcels-list .phase.p-offmarket {
         | 
| 842 989 | 
             
              background-color: #FF411D;
         | 
| 843 990 | 
             
            }
         | 
| 844 | 
            -
            .widget .phase.p-reject | 
| 991 | 
            +
            .widget .phase.p-reject,
         | 
| 992 | 
            +
            .block-stats-area .parcels-list .phase.p-reject {
         | 
| 845 993 | 
             
              background-color: #FF411D;
         | 
| 846 994 | 
             
            }
         | 
| 847 995 |  | 
| @@ -991,6 +1139,78 @@ table .ui-table-row { | |
| 991 1139 | 
             
              margin-bottom: 0 !important;
         | 
| 992 1140 | 
             
            }
         | 
| 993 1141 |  | 
| 1142 | 
            +
            .block-stats-area .parcels-list {
         | 
| 1143 | 
            +
              border-bottom: 1px solid #C4C4C4;
         | 
| 1144 | 
            +
            }
         | 
| 1145 | 
            +
            .block-stats-area .parcels-list .parcel-item {
         | 
| 1146 | 
            +
              border-bottom: 1px solid #E8E8E8;
         | 
| 1147 | 
            +
            }
         | 
| 1148 | 
            +
            .block-stats-area .parcels-list .parcel-item:last-child {
         | 
| 1149 | 
            +
              border-bottom: none;
         | 
| 1150 | 
            +
            }
         | 
| 1151 | 
            +
            .block-stats-area .dropdown-menu.tags {
         | 
| 1152 | 
            +
              display: none;
         | 
| 1153 | 
            +
              margin-bottom: 0;
         | 
| 1154 | 
            +
              position: absolute;
         | 
| 1155 | 
            +
              right: 0;
         | 
| 1156 | 
            +
              margin-right: 0;
         | 
| 1157 | 
            +
            }
         | 
| 1158 | 
            +
            .block-stats-area table thead {
         | 
| 1159 | 
            +
              background-color: transparent !important;
         | 
| 1160 | 
            +
              border-top: none;
         | 
| 1161 | 
            +
              border-left: none;
         | 
| 1162 | 
            +
              border-right: none;
         | 
| 1163 | 
            +
              border-bottom: 1px solid #C4C4C4;
         | 
| 1164 | 
            +
            }
         | 
| 1165 | 
            +
            .block-stats-area table thead th,
         | 
| 1166 | 
            +
            .block-stats-area table td  {
         | 
| 1167 | 
            +
              border-bottom: none;
         | 
| 1168 | 
            +
              border-top: none;
         | 
| 1169 | 
            +
              padding-left: 0;
         | 
| 1170 | 
            +
              padding-right: 0;
         | 
| 1171 | 
            +
            }
         | 
| 1172 | 
            +
            .block-stats-area table .ui-table-row {
         | 
| 1173 | 
            +
              border: none;
         | 
| 1174 | 
            +
            }
         | 
| 1175 | 
            +
            .block-stats-area .ui-table-row.width-drop .dropdown a {
         | 
| 1176 | 
            +
              color: $ui_back;
         | 
| 1177 | 
            +
              padding: 10px 10px 0px 10px;
         | 
| 1178 | 
            +
              font-size: 14px;
         | 
| 1179 | 
            +
            }
         | 
| 1180 | 
            +
            .block-stats-area .ui-table-row.width-drop .dropdown a:hover {
         | 
| 1181 | 
            +
              text-decoration: none;
         | 
| 1182 | 
            +
            }
         | 
| 1183 | 
            +
             | 
| 1184 | 
            +
            .am-content.ui-app-area .block-stats-area .parcels-list .ui-table-row.width-drop {
         | 
| 1185 | 
            +
              border-bottom: 1px solid #E4E4E4;
         | 
| 1186 | 
            +
            }
         | 
| 1187 | 
            +
            .am-content.ui-app-area .block-stats-area .parcels-list .ui-table-row.width-drop:last-child {
         | 
| 1188 | 
            +
              border-bottom: none;
         | 
| 1189 | 
            +
            }
         | 
| 1190 | 
            +
             | 
| 1191 | 
            +
            .block-stats-area .list-properties {
         | 
| 1192 | 
            +
              border-bottom: 1px solid #D9D9D9;
         | 
| 1193 | 
            +
            }
         | 
| 1194 | 
            +
            .block-stats-area .list-properties-item {
         | 
| 1195 | 
            +
              font-size: 14px;
         | 
| 1196 | 
            +
              border-bottom: 1px solid #D9D9D9;
         | 
| 1197 | 
            +
            }
         | 
| 1198 | 
            +
            .block-stats-area .list-properties-item:last-child {
         | 
| 1199 | 
            +
              border-bottom: none
         | 
| 1200 | 
            +
            }
         | 
| 1201 | 
            +
            .block-stats-area .transit {
         | 
| 1202 | 
            +
              font-size: 14px;
         | 
| 1203 | 
            +
              margin-top: 10px;
         | 
| 1204 | 
            +
              margin-bottom: 20px;
         | 
| 1205 | 
            +
            }
         | 
| 1206 | 
            +
             | 
| 1207 | 
            +
            .block-stats-area .maps-frame {
         | 
| 1208 | 
            +
              height: 100%;
         | 
| 1209 | 
            +
              position: absolute;
         | 
| 1210 | 
            +
              right: 0;
         | 
| 1211 | 
            +
              top: 0;
         | 
| 1212 | 
            +
            }
         | 
| 1213 | 
            +
             | 
| 994 1214 | 
             
            .search-area {
         | 
| 995 1215 | 
             
              display: block;
         | 
| 996 1216 | 
             
              position: relative;
         | 
| @@ -1049,6 +1269,9 @@ table .ui-table-row { | |
| 1049 1269 | 
             
              margin-bottom: 0;
         | 
| 1050 1270 | 
             
            }
         | 
| 1051 1271 |  | 
| 1272 | 
            +
            /* =========================== */
         | 
| 1273 | 
            +
            /* Land App - Daily Stats */
         | 
| 1274 | 
            +
             | 
| 1052 1275 | 
             
            .daily-stats .daily-widget {
         | 
| 1053 1276 | 
             
              min-height: auto;
         | 
| 1054 1277 | 
             
              padding: 15px 20px 25px 20px;
         | 
| @@ -1083,6 +1306,7 @@ table .ui-table-row { | |
| 1083 1306 | 
             
            }
         | 
| 1084 1307 |  | 
| 1085 1308 | 
             
            /* =========================== */
         | 
| 1309 | 
            +
            /* Teardown UI adaptations */
         | 
| 1086 1310 |  | 
| 1087 1311 | 
             
            .ui-app-area .teardown-information-block {
         | 
| 1088 1312 | 
             
              display: block;
         | 
| @@ -1169,6 +1393,7 @@ table .ui-table-row { | |
| 1169 1393 | 
             
            }
         | 
| 1170 1394 |  | 
| 1171 1395 | 
             
            /* =========================== */
         | 
| 1396 | 
            +
            /* Fixed Note for Dev Requests */
         | 
| 1172 1397 |  | 
| 1173 1398 | 
             
            .card.card-fixed {
         | 
| 1174 1399 | 
             
              border: none;
         | 
| @@ -1221,4 +1446,66 @@ table .ui-table-row { | |
| 1221 1446 | 
             
            .card-form-dev .user_story_form label {
         | 
| 1222 1447 | 
             
              margin-top: 12px;
         | 
| 1223 1448 | 
             
              margin-bottom: 0px;
         | 
| 1224 | 
            -
            }
         | 
| 1449 | 
            +
            }
         | 
| 1450 | 
            +
             | 
| 1451 | 
            +
            /* =========================== */
         | 
| 1452 | 
            +
            /* Menu Dots open on hover */
         | 
| 1453 | 
            +
             | 
| 1454 | 
            +
            .ui-app-area .table-responsive {
         | 
| 1455 | 
            +
              overflow: visible;
         | 
| 1456 | 
            +
            }
         | 
| 1457 | 
            +
            .dropdown.dropleft:hover > .dropdown-menu {
         | 
| 1458 | 
            +
              display: block !important;
         | 
| 1459 | 
            +
              right: 8px !important;
         | 
| 1460 | 
            +
              cursor: pointer;
         | 
| 1461 | 
            +
            }
         | 
| 1462 | 
            +
            .title-section .dropdown.dropleft:hover > .dropdown-menu {
         | 
| 1463 | 
            +
              left: 0 !important;
         | 
| 1464 | 
            +
            }
         | 
| 1465 | 
            +
             | 
| 1466 | 
            +
            /* =========================== */
         | 
| 1467 | 
            +
            /* Breadcrumbs - UI adaptations */
         | 
| 1468 | 
            +
             | 
| 1469 | 
            +
            .breadcrumb {
         | 
| 1470 | 
            +
              color: #6c757d;
         | 
| 1471 | 
            +
            }
         | 
| 1472 | 
            +
             | 
| 1473 | 
            +
            /* =========================== */
         | 
| 1474 | 
            +
            /* Modals*/
         | 
| 1475 | 
            +
             | 
| 1476 | 
            +
            .am-content.ui-app-area .modal-dialog .btn-outline-danger {
         | 
| 1477 | 
            +
              color: #FF4949;
         | 
| 1478 | 
            +
              border-color: #FF4949;
         | 
| 1479 | 
            +
              padding: 4px 10px 4px 30px;
         | 
| 1480 | 
            +
              background-image: image-url('icons/icn-trash.svg');
         | 
| 1481 | 
            +
              background-repeat: no-repeat;
         | 
| 1482 | 
            +
              background-size: 13px;
         | 
| 1483 | 
            +
              background-position: left 9px top 8px;
         | 
| 1484 | 
            +
            }
         | 
| 1485 | 
            +
            .am-content.ui-app-area .modal-dialog .btn-outline-danger:hover {
         | 
| 1486 | 
            +
              color: #fff;
         | 
| 1487 | 
            +
              background-image: image-url('icons/icn-trash-white.svg');
         | 
| 1488 | 
            +
            }
         | 
| 1489 | 
            +
            .am-content.ui-app-area .modal-dialog textarea.form-control {
         | 
| 1490 | 
            +
              height: 80px;
         | 
| 1491 | 
            +
            }
         | 
| 1492 | 
            +
            .am-content.ui-app-area .modal-dialog .modal-content {
         | 
| 1493 | 
            +
              border: none;
         | 
| 1494 | 
            +
              border-radius: 12px;
         | 
| 1495 | 
            +
              box-shadow: 0 0 6px 0 rgba(207,207,207,0.50);
         | 
| 1496 | 
            +
            }
         | 
| 1497 | 
            +
            .am-content.ui-app-area .modal.show {
         | 
| 1498 | 
            +
              background: rgba(145,145,145,0.70);
         | 
| 1499 | 
            +
            }
         | 
| 1500 | 
            +
             | 
| 1501 | 
            +
             | 
| 1502 | 
            +
             | 
| 1503 | 
            +
             | 
| 1504 | 
            +
             | 
| 1505 | 
            +
             | 
| 1506 | 
            +
             | 
| 1507 | 
            +
             | 
| 1508 | 
            +
             | 
| 1509 | 
            +
             | 
| 1510 | 
            +
             | 
| 1511 | 
            +
             | 
| @@ -459,6 +459,35 @@ $lg-paddingbottom: 60px; | |
| 459 459 | 
             
                height: 30px;
         | 
| 460 460 | 
             
              }
         | 
| 461 461 | 
             
            }
         | 
| 462 | 
            +
             | 
| 463 | 
            +
            @media (max-width: 580px) {
         | 
| 464 | 
            +
              .am-content.ui-app-area .widget-area .widget-box {
         | 
| 465 | 
            +
                width: 50% !important;
         | 
| 466 | 
            +
              }
         | 
| 467 | 
            +
              .am-content.ui-app-area .block-stats .block-stats-area .parcels-list div {
         | 
| 468 | 
            +
                width: 100% !important;
         | 
| 469 | 
            +
              }
         | 
| 470 | 
            +
              .am-content.ui-app-area .block-stats .block-stats-area .table-responsive tbody tr td {
         | 
| 471 | 
            +
                padding-right: 10px;
         | 
| 472 | 
            +
              }
         | 
| 473 | 
            +
              .am-content.ui-app-area .block-stats .block-stats-area.asking-price-range .w-25 {
         | 
| 474 | 
            +
                width: 50% !important;
         | 
| 475 | 
            +
                margin-bottom: 12px;
         | 
| 476 | 
            +
              }
         | 
| 477 | 
            +
              .am-content.ui-app-area .block-stats .block-stats-area .list-approbed {
         | 
| 478 | 
            +
                width: 100% !important;
         | 
| 479 | 
            +
                padding-top: 320px;
         | 
| 480 | 
            +
                padding-right: 0 !important;
         | 
| 481 | 
            +
              }
         | 
| 482 | 
            +
              .am-content.ui-app-area .block-stats .block-stats-area .maps-frame {
         | 
| 483 | 
            +
                height: 300px;
         | 
| 484 | 
            +
                position: absolute;
         | 
| 485 | 
            +
                right: 0;
         | 
| 486 | 
            +
                top: 0;
         | 
| 487 | 
            +
                width: 100% !important;
         | 
| 488 | 
            +
              }
         | 
| 489 | 
            +
            }
         | 
| 490 | 
            +
             | 
| 462 491 | 
             
            @media (max-width: 480px) {
         | 
| 463 492 | 
             
              .am-content.ui-app-area table {
         | 
| 464 493 | 
             
                table-layout: auto !important;
         | 
    
        data/lib/welcome_css/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: welcome_css
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: '0. | 
| 4 | 
            +
              version: '0.16'
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Jose Camacho
         | 
| 8 | 
            -
            autorequire:
         | 
| 8 | 
            +
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2021- | 
| 11 | 
            +
            date: 2021-10-28 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: rails
         | 
| @@ -44,7 +44,7 @@ dependencies: | |
| 44 44 | 
             
                - - ">="
         | 
| 45 45 | 
             
                  - !ruby/object:Gem::Version
         | 
| 46 46 | 
             
                    version: 4.6.0
         | 
| 47 | 
            -
            description:
         | 
| 47 | 
            +
            description: 
         | 
| 48 48 | 
             
            email:
         | 
| 49 49 | 
             
            - jose@welcomehomes.com
         | 
| 50 50 | 
             
            executables: []
         | 
| @@ -234,6 +234,7 @@ files: | |
| 234 234 | 
             
            - app/assets/stylesheets/_welcome-ui-buttons.scss
         | 
| 235 235 | 
             
            - app/assets/stylesheets/_welcome-ui-menu-app.scss
         | 
| 236 236 | 
             
            - app/assets/stylesheets/_welcome-ui-navbar.scss
         | 
| 237 | 
            +
            - app/assets/stylesheets/_welcome-ui-responsive.scss
         | 
| 237 238 | 
             
            - app/assets/stylesheets/_welcome-ui-sidebar.scss
         | 
| 238 239 | 
             
            - app/assets/stylesheets/_welcome-ui-tables.scss
         | 
| 239 240 | 
             
            - app/assets/stylesheets/_welcome-ui-tabs.scss
         | 
| @@ -251,7 +252,7 @@ licenses: | |
| 251 252 | 
             
            - MIT
         | 
| 252 253 | 
             
            metadata:
         | 
| 253 254 | 
             
              homepage_uri: https://github.com/WelcomeHomes/welcome_css
         | 
| 254 | 
            -
            post_install_message:
         | 
| 255 | 
            +
            post_install_message: 
         | 
| 255 256 | 
             
            rdoc_options: []
         | 
| 256 257 | 
             
            require_paths:
         | 
| 257 258 | 
             
            - lib
         | 
| @@ -266,8 +267,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 266 267 | 
             
                - !ruby/object:Gem::Version
         | 
| 267 268 | 
             
                  version: '0'
         | 
| 268 269 | 
             
            requirements: []
         | 
| 269 | 
            -
            rubygems_version: 3. | 
| 270 | 
            -
            signing_key:
         | 
| 270 | 
            +
            rubygems_version: 3.1.4
         | 
| 271 | 
            +
            signing_key: 
         | 
| 271 272 | 
             
            specification_version: 4
         | 
| 272 273 | 
             
            summary: Stylesheets for dashboards and admin systems
         | 
| 273 274 | 
             
            test_files: []
         |