welcome_css 0.35 → 0.36
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/_fonts.scss +32 -0
- data/app/assets/stylesheets/_welcome-ui-buttons.scss +12 -2
- data/app/assets/stylesheets/_welcome-ui-menu-app.scss +3 -2
- data/app/assets/stylesheets/_welcome-ui-navbar.scss +40 -1
- data/app/assets/stylesheets/_welcome-ui-responsive.scss +35 -0
- data/app/assets/stylesheets/_welcome-ui-sidebar.scss +106 -84
- data/app/assets/stylesheets/_welcome-ui-tables.scss +168 -27
- data/app/assets/stylesheets/_welcome-ui.scss +155 -12
- data/app/assets/stylesheets/_welcome_bootstrap_variables.scss +0 -1
- data/lib/welcome_css/version.rb +1 -1
- metadata +2 -2
| @@ -109,9 +109,10 @@ table .ui-table-row { | |
| 109 109 |  | 
| 110 110 | 
             
            /* Table Cells  */
         | 
| 111 111 | 
             
            .ui-table thead {
         | 
| 112 | 
            -
              background-color: #edeff4 | 
| 113 | 
            -
               | 
| 114 | 
            -
               | 
| 112 | 
            +
              /*background-color: #edeff4;*/
         | 
| 113 | 
            +
              background-color: $ui_white;
         | 
| 114 | 
            +
              /*border-bottom: 1px solid #000;*/
         | 
| 115 | 
            +
              font-family: 'nunitosans-bold';
         | 
| 115 116 | 
             
            }
         | 
| 116 117 | 
             
            .ui-table table {
         | 
| 117 118 | 
             
              background-color: $ui_white;
         | 
| @@ -122,10 +123,10 @@ table .ui-table-row { | |
| 122 123 | 
             
            }
         | 
| 123 124 | 
             
            .ui-table td {
         | 
| 124 125 | 
             
              padding: 26px 20px;
         | 
| 125 | 
            -
              font-family: ' | 
| 126 | 
            +
              font-family: 'nunitosans-regular';
         | 
| 126 127 | 
             
            }
         | 
| 127 128 | 
             
            .ui-table td a {
         | 
| 128 | 
            -
              font-family: ' | 
| 129 | 
            +
              font-family: 'nunitosans-bold';
         | 
| 129 130 | 
             
            }
         | 
| 130 131 | 
             
            .ui-table .ui-sort {
         | 
| 131 132 | 
             
              color: $ui_back;
         | 
| @@ -135,6 +136,13 @@ table .ui-table-row { | |
| 135 136 | 
             
              background-size: 8px;
         | 
| 136 137 | 
             
              background-position: left 10px top 6px;
         | 
| 137 138 | 
             
            }
         | 
| 139 | 
            +
            .ui-table thead tr {
         | 
| 140 | 
            +
              background-image: url('icons/icn-dot.svg');
         | 
| 141 | 
            +
              background-repeat: repeat-x;
         | 
| 142 | 
            +
              background-position: bottom 1px left;
         | 
| 143 | 
            +
              background-size: 1px;
         | 
| 144 | 
            +
            }
         | 
| 145 | 
            +
             | 
| 138 146 | 
             
            .ui-app-area .table thead th {
         | 
| 139 147 | 
             
              border-bottom: transparent;
         | 
| 140 148 | 
             
            }
         | 
| @@ -147,10 +155,26 @@ table .ui-table-row { | |
| 147 155 | 
             
            .ui-toptable .col-lg-6:first-child {
         | 
| 148 156 | 
             
              align-self: flex-end;
         | 
| 149 157 | 
             
            }
         | 
| 158 | 
            +
            .ui-toptable h4 {
         | 
| 159 | 
            +
              font-size: 18px !important;
         | 
| 160 | 
            +
            }
         | 
| 161 | 
            +
            .ui-table table thead .sort,
         | 
| 162 | 
            +
            .ui-table .table thead .sort {
         | 
| 163 | 
            +
              background-image: image-url('icons/icn-sort.svg');
         | 
| 164 | 
            +
              background-repeat: no-repeat;
         | 
| 165 | 
            +
              background-size: 8px;
         | 
| 166 | 
            +
              background-position: left 14px top 22px;
         | 
| 167 | 
            +
              padding-left: 28px;
         | 
| 168 | 
            +
            }
         | 
| 169 | 
            +
            .ui-table table thead .sort a,
         | 
| 170 | 
            +
            .ui-table .table thead .sort a {
         | 
| 171 | 
            +
              color: #000
         | 
| 172 | 
            +
            }
         | 
| 150 173 |  | 
| 151 174 | 
             
            /* =========================== */
         | 
| 152 175 |  | 
| 153 | 
            -
            .am-content.ui-app-area .block | 
| 176 | 
            +
            .am-content.ui-app-area .block,
         | 
| 177 | 
            +
            .am-wrapper.main-app .block {
         | 
| 154 178 | 
             
              display: block;
         | 
| 155 179 | 
             
              float: left;
         | 
| 156 180 | 
             
              position: relative;
         | 
| @@ -163,6 +187,7 @@ table .ui-table-row { | |
| 163 187 | 
             
            }
         | 
| 164 188 | 
             
            .ui-app-area .dropdown .btn-group {
         | 
| 165 189 | 
             
              display: block;
         | 
| 190 | 
            +
              padding: 3px 6px 0px 6px;
         | 
| 166 191 | 
             
            }
         | 
| 167 192 | 
             
            .ui-app-area .dropdown .btn-group .btn {
         | 
| 168 193 | 
             
              width: 100%;
         | 
| @@ -211,9 +236,23 @@ table .ui-table-row { | |
| 211 236 | 
             
              padding-left: 15px;
         | 
| 212 237 | 
             
            }
         | 
| 213 238 |  | 
| 239 | 
            +
            .ui-app-area .dropdown .btn-group a,
         | 
| 240 | 
            +
            .ui-app-area .dropdown .btn-group button {
         | 
| 241 | 
            +
              border-radius: 6px !important;
         | 
| 242 | 
            +
              margin-bottom: 3px;
         | 
| 243 | 
            +
            }
         | 
| 244 | 
            +
             | 
| 214 245 | 
             
            /* =========================== */
         | 
| 215 246 | 
             
            /* Table Area Titles */
         | 
| 216 247 |  | 
| 248 | 
            +
            .land-app .view-header h1,
         | 
| 249 | 
            +
            .land-app .white-header h1 {
         | 
| 250 | 
            +
              font-size: $header-title;
         | 
| 251 | 
            +
            }
         | 
| 252 | 
            +
            .land-app .view-header h2,
         | 
| 253 | 
            +
            .land-app .white-header h2 {
         | 
| 254 | 
            +
              font-size: $header-title;
         | 
| 255 | 
            +
            }
         | 
| 217 256 | 
             
            .land-app .view-header h3,
         | 
| 218 257 | 
             
            .land-app .white-header h3 {
         | 
| 219 258 | 
             
              font-size: $header-title;
         | 
| @@ -532,7 +571,7 @@ table .ui-table-row { | |
| 532 571 | 
             
              border: 1px solid #DDDDDD;
         | 
| 533 572 | 
             
              padding: 10px;
         | 
| 534 573 | 
             
            }
         | 
| 535 | 
            -
             | 
| 574 | 
            +
             | 
| 536 575 | 
             
            .ui-app-area form #search:focus {
         | 
| 537 576 | 
             
              box-shadow: 0 0 5px $ui_blue;
         | 
| 538 577 | 
             
              border: 1px solid $ui_blue;
         | 
| @@ -555,13 +594,24 @@ table .ui-table-row { | |
| 555 594 | 
             
            .am-left-sidebar.col-12.col-lg-2.p-0.menu-app {
         | 
| 556 595 | 
             
              display: block;
         | 
| 557 596 | 
             
              float: left;
         | 
| 558 | 
            -
              position:  | 
| 597 | 
            +
              position: absolute;
         | 
| 598 | 
            +
            }
         | 
| 599 | 
            +
            .am-left-sidebar:before {
         | 
| 600 | 
            +
              box-shadow: 0 0 15px rgba(174,174,174,0.15);
         | 
| 601 | 
            +
              border-right: 1px solid #D9D9D9;
         | 
| 602 | 
            +
              background-color: #fff !important;
         | 
| 559 603 | 
             
            }
         | 
| 560 604 | 
             
            .am-content.col-12.col-lg-10.mx-auto.ui-app-area {
         | 
| 561 605 | 
             
              display: block;
         | 
| 562 606 | 
             
              float: right;
         | 
| 563 607 | 
             
              position: relative;
         | 
| 564 608 | 
             
            }
         | 
| 609 | 
            +
            .am-wrapper.main-app .ui-app-area .main-content {
         | 
| 610 | 
            +
              display: block;
         | 
| 611 | 
            +
              float: left;
         | 
| 612 | 
            +
              position: relative;
         | 
| 613 | 
            +
              width: 100%;
         | 
| 614 | 
            +
            }
         | 
| 565 615 | 
             
            .table-striped tbody tr:nth-of-type(odd), .table-striped tbody tr {
         | 
| 566 616 | 
             
              background-color:#fff;
         | 
| 567 617 | 
             
            }
         | 
| @@ -761,6 +811,10 @@ table .ui-table-row { | |
| 761 811 | 
             
            .am-content.ui-app-area .table-widget {
         | 
| 762 812 | 
             
              background-color: $ui_white;
         | 
| 763 813 | 
             
            }
         | 
| 814 | 
            +
            .am-content.ui-app-area table.no-ui {
         | 
| 815 | 
            +
              background-color: transparent;
         | 
| 816 | 
            +
              box-shadow: none;
         | 
| 817 | 
            +
            }
         | 
| 764 818 |  | 
| 765 819 | 
             
            /* =========================== */
         | 
| 766 820 |  | 
| @@ -845,7 +899,7 @@ table .ui-table-row { | |
| 845 899 | 
             
              border-bottom: 1px solid #d9d9d9;
         | 
| 846 900 | 
             
              margin-left: 0px;
         | 
| 847 901 | 
             
              margin-right: 0px;
         | 
| 848 | 
            -
              padding: 20px 0 !important;
         | 
| 902 | 
            +
              padding: 10px 0 20px 0 !important;
         | 
| 849 903 | 
             
            }
         | 
| 850 904 | 
             
            .main-app .ui-app-area .nav-tabs .nav-link {
         | 
| 851 905 | 
             
              padding: 0.5rem 0;
         | 
| @@ -1354,7 +1408,7 @@ table .ui-table-row { | |
| 1354 1408 | 
             
              margin: -4px 0 0 -6px;
         | 
| 1355 1409 | 
             
            }
         | 
| 1356 1410 | 
             
            .search-area button img {
         | 
| 1357 | 
            -
              width: -moz-available; | 
| 1411 | 
            +
              width: -moz-available;
         | 
| 1358 1412 | 
             
              width: -webkit-fill-available;
         | 
| 1359 1413 | 
             
              width: fill-available;
         | 
| 1360 1414 | 
             
              max-width: 35px;
         | 
| @@ -1411,7 +1465,7 @@ table .ui-table-row { | |
| 1411 1465 | 
             
            .land-app .ui-app-area .full-block .full-block-content .w-50,
         | 
| 1412 1466 | 
             
            .land-app .ui-app-area .full-block .full-block-content .w-75,
         | 
| 1413 1467 | 
             
            .land-app .ui-app-area .full-block .full-block-content .w-80 {
         | 
| 1414 | 
            -
             padding-right: 5px; | 
| 1468 | 
            +
             padding-right: 5px;
         | 
| 1415 1469 | 
             
            }
         | 
| 1416 1470 | 
             
            .land-app .ui-app-area .full-block .full-block-content:last-child {
         | 
| 1417 1471 | 
             
              margin-bottom: 0px;
         | 
| @@ -1575,6 +1629,48 @@ table .ui-table-row { | |
| 1575 1629 |  | 
| 1576 1630 | 
             
            /* =========================== */
         | 
| 1577 1631 |  | 
| 1632 | 
            +
            .ui-app-area .table-item {
         | 
| 1633 | 
            +
              background-color: $ui_white;
         | 
| 1634 | 
            +
              padding: 20px 15px;
         | 
| 1635 | 
            +
             | 
| 1636 | 
            +
              box-shadow: 0 0 6px 0 rgba(207,207,207,0.50);
         | 
| 1637 | 
            +
              border-radius: 4px;
         | 
| 1638 | 
            +
              margin-bottom: 30px;
         | 
| 1639 | 
            +
             | 
| 1640 | 
            +
              width: 24%;
         | 
| 1641 | 
            +
              margin-left: 0.5%;
         | 
| 1642 | 
            +
              margin-right: 0.5%;
         | 
| 1643 | 
            +
            }
         | 
| 1644 | 
            +
            .ui-app-area .table-item td {
         | 
| 1645 | 
            +
              display: block;
         | 
| 1646 | 
            +
              float: left;
         | 
| 1647 | 
            +
              position: relative;
         | 
| 1648 | 
            +
              width: 100%;
         | 
| 1649 | 
            +
            }
         | 
| 1650 | 
            +
            .ui-app-area .table-item .sort {
         | 
| 1651 | 
            +
              z-index: 9999;
         | 
| 1652 | 
            +
            }
         | 
| 1653 | 
            +
            .ui-app-area .table-item .sort img {
         | 
| 1654 | 
            +
              display: block;
         | 
| 1655 | 
            +
              position: absolute;
         | 
| 1656 | 
            +
              right: 0;
         | 
| 1657 | 
            +
              top: 0;
         | 
| 1658 | 
            +
            }
         | 
| 1659 | 
            +
            .ui-app-area .table-item .sort img:hover {
         | 
| 1660 | 
            +
              cursor: pointer;
         | 
| 1661 | 
            +
            }
         | 
| 1662 | 
            +
            .ui-app-area .table-item .status {
         | 
| 1663 | 
            +
              font-size: 11px;
         | 
| 1664 | 
            +
              border-radius: 4px;
         | 
| 1665 | 
            +
              border: 1px solid #000;
         | 
| 1666 | 
            +
              display: block;
         | 
| 1667 | 
            +
              float: left;
         | 
| 1668 | 
            +
              position: relative;
         | 
| 1669 | 
            +
              padding: 2px 6px;
         | 
| 1670 | 
            +
            }
         | 
| 1671 | 
            +
             | 
| 1672 | 
            +
            /* =========================== */
         | 
| 1673 | 
            +
             | 
| 1578 1674 | 
             
            .land-app .ui-app-area .dropzone {
         | 
| 1579 1675 | 
             
              background-color: #fff;
         | 
| 1580 1676 | 
             
            }
         | 
| @@ -1705,6 +1801,10 @@ table .ui-table-row { | |
| 1705 1801 | 
             
              left: 0 !important;
         | 
| 1706 1802 | 
             
            }
         | 
| 1707 1803 |  | 
| 1804 | 
            +
            .am-content.ui-app-area .dropdown.dropleft:hover > .dropdown-menu {
         | 
| 1805 | 
            +
              right: 0px !important;
         | 
| 1806 | 
            +
            }
         | 
| 1807 | 
            +
             | 
| 1708 1808 | 
             
            /* =========================== */
         | 
| 1709 1809 | 
             
            /* Breadcrumbs - UI adaptations */
         | 
| 1710 1810 |  | 
| @@ -1922,7 +2022,8 @@ table .ui-table-row { | |
| 1922 2022 | 
             
              -moz-box-shadow: 1px 1px 12px 0px rgba(141,141,141,0.25);
         | 
| 1923 2023 | 
             
              margin-bottom: 4px;
         | 
| 1924 2024 | 
             
              width: 32%;
         | 
| 1925 | 
            -
              margin-top:  | 
| 2025 | 
            +
              margin-top: 0px;
         | 
| 2026 | 
            +
              margin-bottom: 30px;
         | 
| 1926 2027 | 
             
              float: left;
         | 
| 1927 2028 | 
             
            }
         | 
| 1928 2029 | 
             
            .am-content.ui-app-area .model-widget:nth-child(odd) {
         | 
| @@ -1942,6 +2043,12 @@ table .ui-table-row { | |
| 1942 2043 | 
             
              width: 100%;
         | 
| 1943 2044 | 
             
              margin-bottom: 12px;
         | 
| 1944 2045 | 
             
            }
         | 
| 2046 | 
            +
            .am-content.ui-app-area .model-widget .model-info .sort img,
         | 
| 2047 | 
            +
            .am-content.ui-app-area .floor-widget .sort img {
         | 
| 2048 | 
            +
              position: absolute;
         | 
| 2049 | 
            +
              right: 2px;
         | 
| 2050 | 
            +
              top: 0;
         | 
| 2051 | 
            +
            }
         | 
| 1945 2052 | 
             
            .am-content.ui-app-area .model-widget .model-info:last-child {
         | 
| 1946 2053 | 
             
              margin-bottom: 0px;
         | 
| 1947 2054 | 
             
            }
         | 
| @@ -1958,10 +2065,12 @@ table .ui-table-row { | |
| 1958 2065 | 
             
              margin-left: 0;
         | 
| 1959 2066 | 
             
              margin-right: 4px;
         | 
| 1960 2067 | 
             
              top: 0;
         | 
| 1961 | 
            -
              border: 1px solid #979797;
         | 
| 1962 2068 | 
             
              border-radius: $ui-radius;
         | 
| 1963 | 
            -
              padding: 1px 6px;
         | 
| 1964 2069 | 
             
              font-size: 12px;
         | 
| 2070 | 
            +
              font-weight: bold;
         | 
| 2071 | 
            +
            }
         | 
| 2072 | 
            +
            .am-content.ui-app-area .model-widget .model-info .active-status h6 {
         | 
| 2073 | 
            +
              font-weight: 600;
         | 
| 1965 2074 | 
             
            }
         | 
| 1966 2075 | 
             
            .am-content.ui-app-area .model-widget .model-info .active-status .active {
         | 
| 1967 2076 | 
             
              background-image: image-url('icons/icn-active.svg');
         | 
| @@ -1970,6 +2079,16 @@ table .ui-table-row { | |
| 1970 2079 | 
             
              background-position: top 5px left 0px;
         | 
| 1971 2080 | 
             
              padding-left: 12px;
         | 
| 1972 2081 | 
             
            }
         | 
| 2082 | 
            +
            .am-content.ui-app-area .model-widget .model-info .active-status .status {
         | 
| 2083 | 
            +
              display: none;
         | 
| 2084 | 
            +
            }
         | 
| 2085 | 
            +
            .am-content.ui-app-area .model-widget .model-info .active-status .inactive {
         | 
| 2086 | 
            +
              background-image: image-url('icons/icn-inactive.svg');
         | 
| 2087 | 
            +
              background-repeat: no-repeat;
         | 
| 2088 | 
            +
              background-size: 8px;
         | 
| 2089 | 
            +
              background-position: top 5px left 0px;
         | 
| 2090 | 
            +
              padding-left: 12px;
         | 
| 2091 | 
            +
            }
         | 
| 1973 2092 | 
             
            .am-content.ui-app-area .model-widget .model-info .model-title {
         | 
| 1974 2093 | 
             
              display: block;
         | 
| 1975 2094 | 
             
              float: left;
         | 
| @@ -1977,10 +2096,10 @@ table .ui-table-row { | |
| 1977 2096 | 
             
            }
         | 
| 1978 2097 | 
             
            .am-content.ui-app-area .model-widget .model-info .model-studio-status {
         | 
| 1979 2098 | 
             
              display: block;
         | 
| 1980 | 
            -
              float:  | 
| 2099 | 
            +
              float: left;
         | 
| 1981 2100 | 
             
            }
         | 
| 1982 2101 | 
             
            .am-content.ui-app-area .model-widget .model-info .model-studio-status .model-studio-active {
         | 
| 1983 | 
            -
              float:  | 
| 2102 | 
            +
              float: left;
         | 
| 1984 2103 | 
             
              font-size: 12px;
         | 
| 1985 2104 | 
             
              border: 1px solid #979797;
         | 
| 1986 2105 | 
             
              border-radius: $ui-radius;
         | 
| @@ -1997,7 +2116,7 @@ table .ui-table-row { | |
| 1997 2116 | 
             
              display: inline-block;
         | 
| 1998 2117 | 
             
              width: 8px;
         | 
| 1999 2118 | 
             
              height: 8px;
         | 
| 2000 | 
            -
              background-color: # | 
| 2119 | 
            +
              background-color: #4A4A4A;
         | 
| 2001 2120 | 
             
              border-radius: 50%;
         | 
| 2002 2121 | 
             
            }
         | 
| 2003 2122 | 
             
            .am-content.ui-app-area .model-widget .model-img img {
         | 
| @@ -2017,7 +2136,8 @@ table .ui-table-row { | |
| 2017 2136 |  | 
| 2018 2137 | 
             
            /* =========================== */
         | 
| 2019 2138 |  | 
| 2020 | 
            -
            .am-content.ui-app-area .floor-widget | 
| 2139 | 
            +
            .am-content.ui-app-area .floor-widget,
         | 
| 2140 | 
            +
            .am-content.ui-app-area .block-widget {
         | 
| 2021 2141 | 
             
              display: block;
         | 
| 2022 2142 | 
             
              float: left;
         | 
| 2023 2143 | 
             
              position: relative;
         | 
| @@ -2030,30 +2150,35 @@ table .ui-table-row { | |
| 2030 2150 | 
             
              margin-bottom: 30px;
         | 
| 2031 2151 | 
             
              width: 100%;
         | 
| 2032 2152 | 
             
            }
         | 
| 2033 | 
            -
            .am-content.ui-app-area .floor-widget .floor-container | 
| 2153 | 
            +
            .am-content.ui-app-area .floor-widget .floor-container,
         | 
| 2154 | 
            +
            .am-content.ui-app-area .block-widget .blocks-container {
         | 
| 2034 2155 | 
             
              display: block;
         | 
| 2035 2156 | 
             
              float: left;
         | 
| 2036 2157 | 
             
              position: relative;
         | 
| 2037 2158 | 
             
              width: 100%;
         | 
| 2038 2159 | 
             
            }
         | 
| 2039 | 
            -
            .am-content.ui-app-area .floor-widget .floor-container h3 | 
| 2160 | 
            +
            .am-content.ui-app-area .floor-widget .floor-container h3,
         | 
| 2161 | 
            +
            .am-content.ui-app-area .block-widget .blocks-container h3 {
         | 
| 2040 2162 | 
             
              font-size: 24px;
         | 
| 2041 2163 | 
             
              border-left: 4px solid #D9DBE5;
         | 
| 2042 2164 | 
             
              padding-left: 15px;
         | 
| 2043 2165 | 
             
            }
         | 
| 2044 2166 | 
             
            .am-content.ui-app-area .floor-widget .floor-container .floor_title_add-edit,
         | 
| 2045 | 
            -
            .am-content.ui-app-area .floor-widget .floor-container .floor_areas | 
| 2167 | 
            +
            .am-content.ui-app-area .floor-widget .floor-container .floor_areas,
         | 
| 2168 | 
            +
            .am-content.ui-app-area .block-widget .blocks-container .blocks_areas {
         | 
| 2046 2169 | 
             
              display: block;
         | 
| 2047 2170 | 
             
              float: left;
         | 
| 2048 2171 | 
             
              position: relative;
         | 
| 2049 2172 | 
             
              width: 100%;
         | 
| 2050 2173 | 
             
            }
         | 
| 2051 | 
            -
            .am-content.ui-app-area .floor-widget .floor-container .floor_title_add-edit | 
| 2174 | 
            +
            .am-content.ui-app-area .floor-widget .floor-container .floor_title_add-edit,
         | 
| 2175 | 
            +
            .am-content.ui-app-area .block-widget .blocks-container .block_title_add-edit {
         | 
| 2052 2176 | 
             
              padding-bottom: 15px;
         | 
| 2053 2177 | 
             
              border-bottom: 1px solid #D9D9D9;
         | 
| 2054 2178 | 
             
              margin-bottom: 25px;
         | 
| 2055 2179 | 
             
            }
         | 
| 2056 | 
            -
            .am-content.ui-app-area .floor-widget .floor-container .floor_areas .floor_area-item | 
| 2180 | 
            +
            .am-content.ui-app-area .floor-widget .floor-container .floor_areas .floor_area-item,
         | 
| 2181 | 
            +
            .am-content.ui-app-area .block-widget .blocks-container .blocks_areas .block_area-item {
         | 
| 2057 2182 | 
             
              display: block;
         | 
| 2058 2183 | 
             
              float: left;
         | 
| 2059 2184 | 
             
              position: relative;
         | 
| @@ -2061,7 +2186,8 @@ table .ui-table-row { | |
| 2061 2186 | 
             
              width: 20%;
         | 
| 2062 2187 | 
             
              padding: 0 5px;
         | 
| 2063 2188 | 
             
            }
         | 
| 2064 | 
            -
            .am-content.ui-app-area .floor-widget .floor-container .floor_areas .floor_area-item .area-item | 
| 2189 | 
            +
            .am-content.ui-app-area .floor-widget .floor-container .floor_areas .floor_area-item .area-item,
         | 
| 2190 | 
            +
            .am-content.ui-app-area .block-widget .blocks-container .blocks_areas .block_area-item .area-item {
         | 
| 2065 2191 | 
             
              display: block;
         | 
| 2066 2192 | 
             
              float: left;
         | 
| 2067 2193 | 
             
              position: relative;
         | 
| @@ -2071,10 +2197,12 @@ table .ui-table-row { | |
| 2071 2197 | 
             
              box-shadow: 0 0 6px 0 rgba(207,207,207,0.50);
         | 
| 2072 2198 | 
             
              border-radius: $ui-radius;
         | 
| 2073 2199 | 
             
            }
         | 
| 2074 | 
            -
            .am-content.ui-app-area .floor-widget .floor-container .floor_areas .floor_area-item .area-item:hover | 
| 2200 | 
            +
            .am-content.ui-app-area .floor-widget .floor-container .floor_areas .floor_area-item .area-item:hover,
         | 
| 2201 | 
            +
            .am-content.ui-app-area .block-widget .blocks-container .blocks_areas .block_area-item .area-item:hover {
         | 
| 2075 2202 | 
             
              box-shadow: 0 0 14px 0 rgba(207,207,207,0.50);
         | 
| 2076 2203 | 
             
            }
         | 
| 2077 | 
            -
            .am-content.ui-app-area .floor-widget .floor-container .floor_areas .floor_area-item .area-item a | 
| 2204 | 
            +
            .am-content.ui-app-area .floor-widget .floor-container .floor_areas .floor_area-item .area-item a,
         | 
| 2205 | 
            +
            .am-content.ui-app-area .block-widget .blocks-container .blocks_areas .block_area-item .area-item a {
         | 
| 2078 2206 | 
             
              display: flex;
         | 
| 2079 2207 | 
             
              width: 100%;
         | 
| 2080 2208 | 
             
              height: 70px;
         | 
| @@ -2083,7 +2211,8 @@ table .ui-table-row { | |
| 2083 2211 | 
             
              color: #000;
         | 
| 2084 2212 | 
             
              align-items: center;
         | 
| 2085 2213 | 
             
            }
         | 
| 2086 | 
            -
            .am-content.ui-app-area .floor-widget .floor-container .floor_areas .floor_area-item .area-item a:hover | 
| 2214 | 
            +
            .am-content.ui-app-area .floor-widget .floor-container .floor_areas .floor_area-item .area-item a:hover,
         | 
| 2215 | 
            +
            .am-content.ui-app-area .block-widget .blocks-container .blocks_areas .block_area-item .area-item a:hover {
         | 
| 2087 2216 | 
             
              text-decoration: none;
         | 
| 2088 2217 | 
             
            }
         | 
| 2089 2218 |  | 
| @@ -2091,6 +2220,18 @@ table .ui-table-row { | |
| 2091 2220 | 
             
                padding-right: 10px;
         | 
| 2092 2221 | 
             
            }
         | 
| 2093 2222 |  | 
| 2223 | 
            +
            .am-content.ui-app-area .full-tabs {
         | 
| 2224 | 
            +
              margin-top: 30px;
         | 
| 2225 | 
            +
            }
         | 
| 2226 | 
            +
            .am-content.ui-app-area .full-tabs .nav-tabs {
         | 
| 2227 | 
            +
              border-bottom: 1px solid #D8DBE5 !important;
         | 
| 2228 | 
            +
            }
         | 
| 2229 | 
            +
            .am-content.ui-app-area .full-tabs .nav-tabs .nav-link {
         | 
| 2230 | 
            +
              padding-left: 22px;
         | 
| 2231 | 
            +
              padding-right: 22px;
         | 
| 2232 | 
            +
              color: #000;
         | 
| 2233 | 
            +
            }
         | 
| 2234 | 
            +
             | 
| 2094 2235 | 
             
            /* =========================== */
         | 
| 2095 2236 |  | 
| 2096 2237 | 
             
            .am-content.ui-app-area .add-block {
         | 
| @@ -1,28 +1,64 @@ | |
| 1 1 | 
             
            // Variables
         | 
| 2 2 |  | 
| 3 3 | 
             
            /* ====================================== */
         | 
| 4 | 
            -
            // Welcome UI Fonts
         | 
| 5 4 |  | 
| 6 5 | 
             
            body {
         | 
| 7 6 | 
             
              -webkit-font-smoothing: antialiased;
         | 
| 8 7 | 
             
              -moz-osx-font-smoothing: grayscale;
         | 
| 8 | 
            +
              background-color: #FAFAFA !important;
         | 
| 9 9 | 
             
            }
         | 
| 10 10 |  | 
| 11 | 
            +
            /* ====================================== */
         | 
| 12 | 
            +
            // Welcome UI - Fonts
         | 
| 13 | 
            +
             | 
| 14 | 
            +
            .s-text {
         | 
| 15 | 
            +
              font-size: 14px;
         | 
| 16 | 
            +
            }
         | 
| 17 | 
            +
            $s-text: 14px;
         | 
| 18 | 
            +
             | 
| 19 | 
            +
            .m-text {
         | 
| 20 | 
            +
              font-size: 18px;
         | 
| 21 | 
            +
            }
         | 
| 22 | 
            +
            $m-text: 18px;
         | 
| 23 | 
            +
             | 
| 24 | 
            +
            .l-text {
         | 
| 25 | 
            +
              font-size: 22px;
         | 
| 26 | 
            +
            }
         | 
| 27 | 
            +
            $l-text: 22px;
         | 
| 28 | 
            +
             | 
| 29 | 
            +
            .text-bold {
         | 
| 30 | 
            +
              font-weight: 600;
         | 
| 31 | 
            +
            }
         | 
| 32 | 
            +
            $text-bold: 600;
         | 
| 33 | 
            +
             | 
| 11 34 | 
             
            $ui_font_small: 14px;
         | 
| 12 35 | 
             
            $ui_font_normal: 16px;
         | 
| 13 36 |  | 
| 37 | 
            +
            /* --------------- */
         | 
| 38 | 
            +
             | 
| 14 39 | 
             
            h1, h2, h3, h4 {
         | 
| 15 | 
            -
              font-family: 'gt-eesti-regular' | 
| 40 | 
            +
              /*font-family: 'gt-eesti-regular';*/
         | 
| 41 | 
            +
              font-family: 'gilroy-bold';
         | 
| 16 42 | 
             
            }
         | 
| 17 43 | 
             
            .ui-app-area {
         | 
| 18 | 
            -
              font-family: 'hk_groteskmedium' | 
| 44 | 
            +
              /*font-family: 'hk_groteskmedium';*/
         | 
| 45 | 
            +
              font-family: 'nunitosans-regular';
         | 
| 19 46 | 
             
            }
         | 
| 20 47 | 
             
            .ui-app-area strong {
         | 
| 21 | 
            -
              font-family: 'hk_groteskbold' | 
| 48 | 
            +
              /*font-family: 'hk_groteskbold';*/
         | 
| 49 | 
            +
              font-family: 'nunitosans-bold';
         | 
| 50 | 
            +
            }
         | 
| 51 | 
            +
             | 
| 52 | 
            +
            /* --------------- */
         | 
| 53 | 
            +
             | 
| 54 | 
            +
            .am-content.ui-app-area .page-head h2 {
         | 
| 55 | 
            +
              font-family: 'gilroy-bold';
         | 
| 56 | 
            +
              font-size: 26px;
         | 
| 57 | 
            +
              line-height: 32px;
         | 
| 22 58 | 
             
            }
         | 
| 23 59 |  | 
| 24 60 | 
             
            /* ====================================== */
         | 
| 25 | 
            -
            // Welcome UI Colors
         | 
| 61 | 
            +
            // Welcome UI - Colors
         | 
| 26 62 |  | 
| 27 63 | 
             
            $ui_back:          #000000 !important;
         | 
| 28 64 | 
             
            $ui_white:         #ffffff !important;
         | 
| @@ -58,29 +94,98 @@ $ui-radius: .25rem !important; | |
| 58 94 | 
             
            // Welcome UI - Margin & Padding
         | 
| 59 95 |  | 
| 60 96 | 
             
            $sm-margintop: 10px;
         | 
| 97 | 
            +
            $s-mt: 5px;
         | 
| 98 | 
            +
             | 
| 61 99 | 
             
            $sm-marginbottom: 10px;
         | 
| 100 | 
            +
            $s-mb: 5px;
         | 
| 62 101 |  | 
| 63 102 | 
             
            $md-margintop: 30px;
         | 
| 103 | 
            +
            $m-mt: 15px;
         | 
| 104 | 
            +
             | 
| 64 105 | 
             
            $md-marginbottom: 30px;
         | 
| 106 | 
            +
            $m-mb: 15px;
         | 
| 65 107 |  | 
| 66 108 | 
             
            $lg-margintop: 60px;
         | 
| 109 | 
            +
            $l-mt: 30px;
         | 
| 110 | 
            +
             | 
| 67 111 | 
             
            $lg-marginbottom: 60px;
         | 
| 112 | 
            +
            $l-mb: 30px;
         | 
| 113 | 
            +
             | 
| 114 | 
            +
            $sm-paddingtop: 5px;
         | 
| 115 | 
            +
            $s-pt: 5px;
         | 
| 68 116 |  | 
| 69 117 | 
             
            $md-paddingtop: 30px;
         | 
| 70 | 
            -
            $ | 
| 118 | 
            +
            $m-pt: 15px;
         | 
| 71 119 |  | 
| 72 120 | 
             
            $lg-paddingtop: 60px;
         | 
| 121 | 
            +
            $l-pt: 30px;
         | 
| 122 | 
            +
             | 
| 123 | 
            +
            $sm-paddingbottom: 10px;
         | 
| 124 | 
            +
            $s-pb: 5px;
         | 
| 125 | 
            +
             | 
| 126 | 
            +
            $md-paddingbottom: 30px;
         | 
| 127 | 
            +
            $m-pb: 15px;
         | 
| 128 | 
            +
             | 
| 73 129 | 
             
            $lg-paddingbottom: 60px;
         | 
| 130 | 
            +
            $l-pb: 30px;
         | 
| 131 | 
            +
             | 
| 132 | 
            +
            $s-padding: 20px 15px;
         | 
| 133 | 
            +
            $m-padding: 30px 30px;
         | 
| 134 | 
            +
            $l-padding: 60px 60px;
         | 
| 74 135 |  | 
| 75 136 | 
             
            /* ====================================== */
         | 
| 137 | 
            +
            // Welcome UI - Buttons & Effects
         | 
| 138 | 
            +
             | 
| 139 | 
            +
            .pointer:hover {
         | 
| 140 | 
            +
              cursor: pointer;
         | 
| 141 | 
            +
            }
         | 
| 142 | 
            +
             | 
| 143 | 
            +
            /* ====================================== */
         | 
| 144 | 
            +
            // Welcome UI - Hide & Show
         | 
| 145 | 
            +
             | 
| 146 | 
            +
            @media (max-width: 992px) {
         | 
| 147 | 
            +
              .no-responsive {
         | 
| 148 | 
            +
                display: none !important;
         | 
| 149 | 
            +
              }
         | 
| 150 | 
            +
            }
         | 
| 151 | 
            +
             | 
| 152 | 
            +
            /* ====================================== */
         | 
| 153 | 
            +
            // Welcome UI - Shadows
         | 
| 76 154 |  | 
| 77 155 | 
             
            $ui-shadow: 1px -1px 13px 0px rgba(174,174,174,0.15);
         | 
| 156 | 
            +
            .shadow {
         | 
| 157 | 
            +
              box-shadow: 1px -1px 13px 0px rgba(174,174,174,0.15);
         | 
| 158 | 
            +
            }
         | 
| 159 | 
            +
             | 
| 160 | 
            +
            $ui-light-shadow: 1px -1px 7px 0px rgba(174,174,174,0.05);
         | 
| 161 | 
            +
            .light-shadow {
         | 
| 162 | 
            +
              box-shadow: 1px -1px 7px 0px rgba(174,174,174,0.05);
         | 
| 163 | 
            +
            }
         | 
| 164 | 
            +
             | 
| 78 165 | 
             
            $ui-shadow-right: 0 0 15px rgba(174,174,174,0.15%);
         | 
| 166 | 
            +
            .right-shadow {
         | 
| 167 | 
            +
              box-shadow: 0 0 15px rgba(174,174,174,0.15%);
         | 
| 168 | 
            +
            }
         | 
| 79 169 |  | 
| 80 170 | 
             
            /* ====================================== */
         | 
| 171 | 
            +
            // Welcome UI - Block text sizes
         | 
| 81 172 |  | 
| 82 173 | 
             
            $header-title: 22px;
         | 
| 83 174 |  | 
| 175 | 
            +
            /* ====================================== */
         | 
| 176 | 
            +
            // Welcome UI - Blocks
         | 
| 177 | 
            +
             | 
| 178 | 
            +
            .simple-block {
         | 
| 179 | 
            +
              display: block;
         | 
| 180 | 
            +
              float: left;
         | 
| 181 | 
            +
              position: relative;
         | 
| 182 | 
            +
              background-color: $ui_white;
         | 
| 183 | 
            +
              padding: $s-padding;
         | 
| 184 | 
            +
            }
         | 
| 185 | 
            +
            .rounded {
         | 
| 186 | 
            +
              border-radius: $ui-radius;
         | 
| 187 | 
            +
            }
         | 
| 188 | 
            +
             | 
| 84 189 | 
             
            /* ====================================== */
         | 
| 85 190 |  | 
| 86 191 | 
             
            $block-title: 16px;
         | 
| @@ -98,13 +203,18 @@ $block-result-color: #000; | |
| 98 203 | 
             
              margin-right: -15px;
         | 
| 99 204 | 
             
              margin-left: -15px;
         | 
| 100 205 | 
             
            }
         | 
| 101 | 
            -
             | 
| 102 206 | 
             
            .ui-app-area h4 {
         | 
| 103 207 | 
             
              font-size: 20px;
         | 
| 104 208 | 
             
            }
         | 
| 105 209 | 
             
            .land-app, .main-app {
         | 
| 106 210 | 
             
              background-color: $ui_lightergray;
         | 
| 107 211 | 
             
            }
         | 
| 212 | 
            +
            .main-app {
         | 
| 213 | 
            +
              display: block;
         | 
| 214 | 
            +
              float: left;
         | 
| 215 | 
            +
              position: relative;
         | 
| 216 | 
            +
              width: 100%;
         | 
| 217 | 
            +
            }
         | 
| 108 218 | 
             
            .land-app .main-btns .ui-menu-dots {
         | 
| 109 219 | 
             
              display: block;
         | 
| 110 220 | 
             
              float: right;
         | 
| @@ -118,25 +228,44 @@ $block-result-color: #000; | |
| 118 228 | 
             
            .ui-app-area .no-margin {
         | 
| 119 229 | 
             
              margin: 0;
         | 
| 120 230 | 
             
            }
         | 
| 231 | 
            +
            .ui-app-area .no-padding {
         | 
| 232 | 
            +
              padding: 0;
         | 
| 233 | 
            +
            }
         | 
| 121 234 |  | 
| 122 235 | 
             
            /* ====================================== */
         | 
| 123 236 |  | 
| 124 237 | 
             
            .am-wrapper.main-app .menu-app {
         | 
| 125 238 | 
             
              width: 16%;
         | 
| 239 | 
            +
              position: absolute;
         | 
| 240 | 
            +
              top: 0;
         | 
| 126 241 | 
             
            }
         | 
| 127 242 | 
             
            .am-wrapper.main-app .navbar {
         | 
| 128 243 | 
             
              background-color: $ui_white;
         | 
| 129 | 
            -
              height:  | 
| 244 | 
            +
              height: 40px;
         | 
| 130 245 | 
             
              box-shadow: 0 0 50px rgba(0, 0, 0, 0.05%);
         | 
| 246 | 
            +
              display: block;
         | 
| 247 | 
            +
              float: right;
         | 
| 248 | 
            +
              position: relative;
         | 
| 249 | 
            +
              width: auto;
         | 
| 250 | 
            +
              top: 6px;
         | 
| 251 | 
            +
              right: 15px;
         | 
| 252 | 
            +
              padding: 4px 0px 0px 0px;
         | 
| 253 | 
            +
              margin-bottom: 4px;
         | 
| 131 254 | 
             
            }
         | 
| 132 255 | 
             
            .am-wrapper.main-app .ui-app-area {
         | 
| 133 256 | 
             
              padding: 15px;
         | 
| 134 257 | 
             
              width: 84%;
         | 
| 135 258 | 
             
              float: right;
         | 
| 136 | 
            -
               | 
| 259 | 
            +
              position: absolute;
         | 
| 260 | 
            +
              margin: 0;
         | 
| 261 | 
            +
              display: block;
         | 
| 262 | 
            +
              right: 0;
         | 
| 263 | 
            +
              top: 42px;
         | 
| 264 | 
            +
              /*background-color: #fafafa !important;*/
         | 
| 137 265 | 
             
            }
         | 
| 138 266 | 
             
            .am-wrapper.main-app .ui-app-area .page-head {
         | 
| 139 267 | 
             
              padding: 20px;
         | 
| 268 | 
            +
              margin-bottom: 30px;
         | 
| 140 269 | 
             
            }
         | 
| 141 270 | 
             
            .am-wrapper.main-app .ui-app-area .main-content {
         | 
| 142 271 | 
             
              padding: 0;
         | 
| @@ -281,7 +410,7 @@ $block-result-color: #000; | |
| 281 410 | 
             
              position: relative;
         | 
| 282 411 | 
             
              height: auto;
         | 
| 283 412 | 
             
              width: 100%;
         | 
| 284 | 
            -
              padding: 0 0 0  | 
| 413 | 
            +
              padding: 0 0 0 22px;
         | 
| 285 414 | 
             
            }
         | 
| 286 415 | 
             
            .am-left-sidebar .sidebar-elements > li > ul >
         | 
| 287 416 | 
             
            .nav-items .am-scroller .content {
         | 
| @@ -370,7 +499,10 @@ $block-result-color: #000; | |
| 370 499 | 
             
            }
         | 
| 371 500 | 
             
            @media (min-width: 769px) {
         | 
| 372 501 | 
             
              input[type="radio"]#swipe, input[type="checkbox"]#swipe {
         | 
| 373 | 
            -
                display: none; | 
| 502 | 
            +
                display: none;
         | 
| 503 | 
            +
              }
         | 
| 504 | 
            +
              .navbar .welcome-homes-logo {
         | 
| 505 | 
            +
                display: none;
         | 
| 374 506 | 
             
              }
         | 
| 375 507 | 
             
            }
         | 
| 376 508 | 
             
            @media (max-width: 768px) {
         | 
| @@ -383,6 +515,17 @@ $block-result-color: #000; | |
| 383 515 | 
             
              .am-wrapper.main-app .navbar {
         | 
| 384 516 | 
             
                height: 50px;
         | 
| 385 517 | 
             
                display: block;
         | 
| 518 | 
            +
                width: 100%;
         | 
| 519 | 
            +
                right: 0;
         | 
| 520 | 
            +
                top: 0;
         | 
| 521 | 
            +
                z-index: 1;
         | 
| 522 | 
            +
              }
         | 
| 523 | 
            +
              .navbar .welcome-homes-logo {
         | 
| 524 | 
            +
                display: block;
         | 
| 525 | 
            +
                margin-top: 12px !important;
         | 
| 526 | 
            +
              }
         | 
| 527 | 
            +
              .navbar .logo-area {
         | 
| 528 | 
            +
                border-bottom: none;
         | 
| 386 529 | 
             
              }
         | 
| 387 530 | 
             
              .am-top-header {
         | 
| 388 531 | 
             
                position: fixed !important;
         | 
| @@ -395,7 +538,7 @@ $block-result-color: #000; | |
| 395 538 | 
             
              }
         | 
| 396 539 | 
             
              .am-wrapper.main-app .ui-app-area {
         | 
| 397 540 | 
             
                width: 100%;
         | 
| 398 | 
            -
                margin-top:  | 
| 541 | 
            +
                margin-top: 20px;
         | 
| 399 542 | 
             
                display: block;
         | 
| 400 543 | 
             
              }
         | 
| 401 544 | 
             
              .am-wrapper.main-app .menu-app {
         | 
    
        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.36'
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Jose Camacho
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2022-02- | 
| 11 | 
            +
            date: 2022-02-17 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: rails
         |