welcome_css 0.13 → 0.14
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-tables.scss +102 -6
- data/app/assets/stylesheets/_welcome-ui.scss +29 -0
- data/lib/welcome_css/version.rb +1 -1
- metadata +2 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 682f7550ac525199d356b0d9e3de2678e404a20f690f718ef56f14f4bbbad8b6
         | 
| 4 | 
            +
              data.tar.gz: 6ffd47d055cb72e54a40f20835f4982ef4739c99c43bc53ff4609dda536a87fc
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: '015882cb06a4530ebff92a4974958c87f16f2d96ad2af38aa2443b25eb63ee41299e4399f1799cdd3a3b621adc03f3b9b5ab582ebd649d413924a509c7447c88'
         | 
| 7 | 
            +
              data.tar.gz: ae4916f7b0284876bbe4fb19ea927bec76747369a23d938fb83e5a295656fdda63b131f020b5cf80364d35c3c5696ec47aac0d87908e774135bf3e4ca61c204d
         | 
| @@ -800,7 +800,7 @@ table .ui-table-row { | |
| 800 800 | 
             
              position: relative;
         | 
| 801 801 | 
             
              padding: 0 3px;
         | 
| 802 802 | 
             
            }
         | 
| 803 | 
            -
            .widget {
         | 
| 803 | 
            +
            .ui-app-area .widget {
         | 
| 804 804 | 
             
              display: block;
         | 
| 805 805 | 
             
              float: left;
         | 
| 806 806 | 
             
              position: relative;
         | 
| @@ -816,6 +816,19 @@ table .ui-table-row { | |
| 816 816 | 
             
              background-color: transparent;
         | 
| 817 817 | 
             
              border: none;
         | 
| 818 818 | 
             
            }
         | 
| 819 | 
            +
            .ui-app-area.am-content .widget-area .widget {
         | 
| 820 | 
            +
              display: block;
         | 
| 821 | 
            +
              float: left;
         | 
| 822 | 
            +
              position: relative;
         | 
| 823 | 
            +
              background-color: #EEF2F7;
         | 
| 824 | 
            +
              border: 1px solid #D2D5DA;
         | 
| 825 | 
            +
              border-radius: $ui-radius;
         | 
| 826 | 
            +
              padding: 15px 20px;
         | 
| 827 | 
            +
              min-height: 300px;
         | 
| 828 | 
            +
            }
         | 
| 829 | 
            +
            .ui-app-area.am-content .widget-area h4 {
         | 
| 830 | 
            +
              margin-bottom: 0;
         | 
| 831 | 
            +
            }
         | 
| 819 832 | 
             
            .widget .widget-title {
         | 
| 820 833 | 
             
              font-size: 18px;
         | 
| 821 834 | 
             
              line-height: 22px;
         | 
| @@ -827,22 +840,30 @@ table .ui-table-row { | |
| 827 840 | 
             
              margin-top: 12px;
         | 
| 828 841 | 
             
              min-height: 90px;
         | 
| 829 842 | 
             
            }
         | 
| 830 | 
            -
            .widget .phase | 
| 843 | 
            +
            .widget .phase,
         | 
| 844 | 
            +
            .block-stats-area .parcels-list .phase {
         | 
| 831 845 | 
             
              border-radius: $ui-radius;
         | 
| 832 846 | 
             
              padding: 0 2px;
         | 
| 833 847 | 
             
              color: $ui_white;
         | 
| 834 848 | 
             
            }
         | 
| 835 | 
            -
            . | 
| 849 | 
            +
            .block-stats-area .parcels-list .phase {
         | 
| 850 | 
            +
              font-size: 13px;
         | 
| 851 | 
            +
            }
         | 
| 852 | 
            +
            .widget .phase.p-pass,
         | 
| 853 | 
            +
            .block-stats-area .parcels-list .phase.p-pass {
         | 
| 836 854 | 
             
              background-color: $ui_blue;
         | 
| 837 855 | 
             
            }
         | 
| 838 | 
            -
            .widget .phase.p-questionable | 
| 856 | 
            +
            .widget .phase.p-questionable,
         | 
| 857 | 
            +
            .block-stats-area .parcels-list .phase.p-questionable {
         | 
| 839 858 | 
             
              background-color: #FAC15F;
         | 
| 840 859 | 
             
              color: $ui_back;
         | 
| 841 860 | 
             
            }
         | 
| 842 | 
            -
            .widget .phase.p-offmarket | 
| 861 | 
            +
            .widget .phase.p-offmarket,
         | 
| 862 | 
            +
            .block-stats-area .parcels-list .phase.p-offmarket {
         | 
| 843 863 | 
             
              background-color: #FF411D;
         | 
| 844 864 | 
             
            }
         | 
| 845 | 
            -
            .widget .phase.p-reject | 
| 865 | 
            +
            .widget .phase.p-reject,
         | 
| 866 | 
            +
            .block-stats-area .parcels-list .phase.p-reject {
         | 
| 846 867 | 
             
              background-color: #FF411D;
         | 
| 847 868 | 
             
            }
         | 
| 848 869 |  | 
| @@ -992,6 +1013,78 @@ table .ui-table-row { | |
| 992 1013 | 
             
              margin-bottom: 0 !important;
         | 
| 993 1014 | 
             
            }
         | 
| 994 1015 |  | 
| 1016 | 
            +
            .block-stats-area .parcels-list {
         | 
| 1017 | 
            +
              border-bottom: 1px solid #C4C4C4;
         | 
| 1018 | 
            +
            }
         | 
| 1019 | 
            +
            .block-stats-area .parcels-list .parcel-item {
         | 
| 1020 | 
            +
              border-bottom: 1px solid #E8E8E8;
         | 
| 1021 | 
            +
            }
         | 
| 1022 | 
            +
            .block-stats-area .parcels-list .parcel-item:last-child {
         | 
| 1023 | 
            +
              border-bottom: none;
         | 
| 1024 | 
            +
            }
         | 
| 1025 | 
            +
            .block-stats-area .dropdown-menu.tags {
         | 
| 1026 | 
            +
              display: none;
         | 
| 1027 | 
            +
              margin-bottom: 0;
         | 
| 1028 | 
            +
              position: absolute;
         | 
| 1029 | 
            +
              right: 0;
         | 
| 1030 | 
            +
              margin-right: 0;
         | 
| 1031 | 
            +
            }
         | 
| 1032 | 
            +
            .block-stats-area table thead {
         | 
| 1033 | 
            +
              background-color: transparent !important;
         | 
| 1034 | 
            +
              border-top: none;
         | 
| 1035 | 
            +
              border-left: none;
         | 
| 1036 | 
            +
              border-right: none;
         | 
| 1037 | 
            +
              border-bottom: 1px solid #C4C4C4;
         | 
| 1038 | 
            +
            }
         | 
| 1039 | 
            +
            .block-stats-area table thead th,
         | 
| 1040 | 
            +
            .block-stats-area table td  {
         | 
| 1041 | 
            +
              border-bottom: none;
         | 
| 1042 | 
            +
              border-top: none;
         | 
| 1043 | 
            +
              padding-left: 0;
         | 
| 1044 | 
            +
              padding-right: 0;
         | 
| 1045 | 
            +
            }
         | 
| 1046 | 
            +
            .block-stats-area table .ui-table-row {
         | 
| 1047 | 
            +
              border: none;
         | 
| 1048 | 
            +
            }
         | 
| 1049 | 
            +
            .block-stats-area .ui-table-row.width-drop .dropdown a {
         | 
| 1050 | 
            +
              color: $ui_back;
         | 
| 1051 | 
            +
              padding: 10px 10px 0px 10px;
         | 
| 1052 | 
            +
              font-size: 14px;
         | 
| 1053 | 
            +
            }
         | 
| 1054 | 
            +
            .block-stats-area .ui-table-row.width-drop .dropdown a:hover {
         | 
| 1055 | 
            +
              text-decoration: none;
         | 
| 1056 | 
            +
            }
         | 
| 1057 | 
            +
             | 
| 1058 | 
            +
            .am-content.ui-app-area .block-stats-area .parcels-list .ui-table-row.width-drop {
         | 
| 1059 | 
            +
              border-bottom: 1px solid #E4E4E4;
         | 
| 1060 | 
            +
            }
         | 
| 1061 | 
            +
            .am-content.ui-app-area .block-stats-area .parcels-list .ui-table-row.width-drop:last-child {
         | 
| 1062 | 
            +
              border-bottom: none;
         | 
| 1063 | 
            +
            }
         | 
| 1064 | 
            +
             | 
| 1065 | 
            +
            .block-stats-area .list-properties {
         | 
| 1066 | 
            +
              border-bottom: 1px solid #D9D9D9;
         | 
| 1067 | 
            +
            }
         | 
| 1068 | 
            +
            .block-stats-area .list-properties-item {
         | 
| 1069 | 
            +
              font-size: 14px;
         | 
| 1070 | 
            +
              border-bottom: 1px solid #D9D9D9;
         | 
| 1071 | 
            +
            }
         | 
| 1072 | 
            +
            .block-stats-area .list-properties-item:last-child {
         | 
| 1073 | 
            +
              border-bottom: none
         | 
| 1074 | 
            +
            }
         | 
| 1075 | 
            +
            .block-stats-area .transit {
         | 
| 1076 | 
            +
              font-size: 14px;
         | 
| 1077 | 
            +
              margin-top: 10px;
         | 
| 1078 | 
            +
              margin-bottom: 20px;
         | 
| 1079 | 
            +
            }
         | 
| 1080 | 
            +
             | 
| 1081 | 
            +
            .block-stats-area .maps-frame {
         | 
| 1082 | 
            +
              height: 100%;
         | 
| 1083 | 
            +
              position: absolute;
         | 
| 1084 | 
            +
              right: 0;
         | 
| 1085 | 
            +
              top: 0;
         | 
| 1086 | 
            +
            }
         | 
| 1087 | 
            +
             | 
| 995 1088 | 
             
            .search-area {
         | 
| 996 1089 | 
             
              display: block;
         | 
| 997 1090 | 
             
              position: relative;
         | 
| @@ -1240,6 +1333,9 @@ table .ui-table-row { | |
| 1240 1333 | 
             
              right: 8px !important;
         | 
| 1241 1334 | 
             
              cursor: pointer;
         | 
| 1242 1335 | 
             
            }
         | 
| 1336 | 
            +
            .title-section .dropdown.dropleft:hover > .dropdown-menu {
         | 
| 1337 | 
            +
              left: 0 !important;
         | 
| 1338 | 
            +
            }
         | 
| 1243 1339 |  | 
| 1244 1340 | 
             
            /* =========================== */
         | 
| 1245 1341 | 
             
            /* Breadcrumbs - UI adaptations */
         | 
| @@ -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.14'
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Jose Camacho
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2021- | 
| 11 | 
            +
            date: 2021-10-01 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: rails
         |