welcome_css 0.35 → 0.38
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 +15 -2
- data/app/assets/stylesheets/_welcome-ui-menu-app.scss +3 -2
- data/app/assets/stylesheets/_welcome-ui-navbar.scss +49 -1
- data/app/assets/stylesheets/_welcome-ui-responsive.scss +43 -0
- data/app/assets/stylesheets/_welcome-ui-sidebar.scss +106 -84
- data/app/assets/stylesheets/_welcome-ui-tables.scss +187 -32
- data/app/assets/stylesheets/_welcome-ui-tabs.scss +8 -0
- data/app/assets/stylesheets/_welcome-ui-typography.scss +10 -0
- data/app/assets/stylesheets/_welcome-ui.scss +169 -12
- data/app/assets/stylesheets/_welcome_bootstrap_variables.scss +0 -1
- 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: f53b1b42e87314c8ce00c0ebb3ca114c912b0d2ca2c56046dcae0f218f89d227
         | 
| 4 | 
            +
              data.tar.gz: 366ba048fe4381ec309a392f1f772b09152e761e2390a80d13c13174c00fec67
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: f44fed499e71b88836fc651e40bbb9665358f9dc53b9caac60ecadc384c6f7c7a4b227841af432b79dc36bfe195ae61b1859189fa712e3916e9f8fc6f8239b03
         | 
| 7 | 
            +
              data.tar.gz: 7fb8107c5ff35284283025243402958215644e5113e0077b47853827611d72b245b0c534813724994797ffd19a5c6c3a93217bf8a4a3f94c1a790c10921d65cc
         | 
| @@ -1,6 +1,38 @@ | |
| 1 1 | 
             
            /***************************************/
         | 
| 2 2 | 
             
            /*GT Eesti*/
         | 
| 3 3 | 
             
            /**************************************/
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            @font-face {
         | 
| 6 | 
            +
              font-family: 'gilroy-bold';
         | 
| 7 | 
            +
              src: asset-url('gilroy/bold/gilroy-bold.woff2') format('woff2'),
         | 
| 8 | 
            +
                   asset-url('gilroy/bold/gilroy-bold.woff') format('woff'),
         | 
| 9 | 
            +
                   asset-url('gilroy/bold/gilroy-bold.ttf') format('truetype'),
         | 
| 10 | 
            +
                   asset-url('gilroy/bold/gilroy-bold.svg#gilroy-bold') format('svg');
         | 
| 11 | 
            +
              font-weight: normal;
         | 
| 12 | 
            +
              font-style: normal;
         | 
| 13 | 
            +
            }
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            @font-face {
         | 
| 16 | 
            +
              font-family: 'nunitosans-regular';
         | 
| 17 | 
            +
              src: asset-url('nunito/regular/nunitosans-regular.woff2') format('woff2'),
         | 
| 18 | 
            +
                   asset-url('nunito/regular/nunitosans-regular.woff') format('woff'),
         | 
| 19 | 
            +
                   asset-url('nunito/regular/nunitosans-regular.ttf') format('truetype'),
         | 
| 20 | 
            +
                   asset-url('nunito/regular/nunitosans-regular.svg#nunitosans-regular') format('svg');
         | 
| 21 | 
            +
              font-weight: normal;
         | 
| 22 | 
            +
              font-style: normal;
         | 
| 23 | 
            +
            }
         | 
| 24 | 
            +
            @font-face {
         | 
| 25 | 
            +
              font-family: 'nunitosans-bold';
         | 
| 26 | 
            +
              src: asset-url('nunito/bold/nunitosans-bold.woff2') format('woff2'),
         | 
| 27 | 
            +
                   asset-url('nunito/bold/nunitosans-bold.woff') format('woff'),
         | 
| 28 | 
            +
                   asset-url('nunito/bold/nunitosans-bold.ttf') format('truetype'),
         | 
| 29 | 
            +
                   asset-url('nunito/bold/nunitosans-bold.svg#nunitosans-bold') format('svg');
         | 
| 30 | 
            +
              font-weight: normal;
         | 
| 31 | 
            +
              font-style: normal;
         | 
| 32 | 
            +
            }
         | 
| 33 | 
            +
             | 
| 34 | 
            +
            /**************************************/
         | 
| 35 | 
            +
             | 
| 4 36 | 
             
            @font-face {
         | 
| 5 37 | 
             
                font-family: 'gt-eesti-light';
         | 
| 6 38 | 
             
                src: asset-url('GT-Eesti/Light/GTEestiDisplay-Light.eot');
         | 
| @@ -47,6 +47,8 @@ | |
| 47 47 | 
             
              width: 100%;
         | 
| 48 48 | 
             
              font-size: $ui_font_small;
         | 
| 49 49 | 
             
              border-bottom: 1px solid $ui_middlegray;
         | 
| 50 | 
            +
              text-align: left;
         | 
| 51 | 
            +
              padding: 6px 20px 6px 20px;
         | 
| 50 52 | 
             
            }
         | 
| 51 53 | 
             
            .ui-app-area .dropdown .btn-group .btn:hover {
         | 
| 52 54 | 
             
              color: $ui_white;
         | 
| @@ -98,7 +100,7 @@ | |
| 98 100 | 
             
              background-color: $ui_white;
         | 
| 99 101 | 
             
              font-size: $ui_font_normal;
         | 
| 100 102 | 
             
              color: $ui_back;
         | 
| 101 | 
            -
              border: 1px solid  | 
| 103 | 
            +
              border: 1px solid #D9D9D9;
         | 
| 102 104 | 
             
              font-family: 'hk_groteskmedium';
         | 
| 103 105 | 
             
              font-weight: 400;
         | 
| 104 106 | 
             
            }
         | 
| @@ -117,6 +119,9 @@ | |
| 117 119 | 
             
              border: 1px solid $ui_back;
         | 
| 118 120 | 
             
              font-family: 'gt-eesti-medium';
         | 
| 119 121 | 
             
            }
         | 
| 122 | 
            +
            .btn-pad-lg {
         | 
| 123 | 
            +
              padding: 6px 30px !important;
         | 
| 124 | 
            +
            }
         | 
| 120 125 |  | 
| 121 126 | 
             
            /* ========================================= */
         | 
| 122 127 |  | 
| @@ -228,7 +233,7 @@ | |
| 228 233 | 
             
              background-position: right 10px top 18px;
         | 
| 229 234 | 
             
            }
         | 
| 230 235 | 
             
            #ui-tabs .dropdown.dropdown-select .dropdown-menu {
         | 
| 231 | 
            -
              width:  | 
| 236 | 
            +
              width: 300px;
         | 
| 232 237 | 
             
            }
         | 
| 233 238 | 
             
            .btn-dot {
         | 
| 234 239 | 
             
              top: 6px;
         | 
| @@ -259,6 +264,14 @@ | |
| 259 264 | 
             
              height: 30px;
         | 
| 260 265 | 
             
            }*/
         | 
| 261 266 |  | 
| 267 | 
            +
            .btn.btn-upload {
         | 
| 268 | 
            +
              padding: 6px 12px 6px 30px !important;
         | 
| 269 | 
            +
              background-image: image-url('icons/icn-upload.svg');
         | 
| 270 | 
            +
              background-repeat: no-repeat;
         | 
| 271 | 
            +
              background-size: 14px;
         | 
| 272 | 
            +
              background-position: left 8px top 9px;
         | 
| 273 | 
            +
            }
         | 
| 274 | 
            +
             | 
| 262 275 | 
             
            /* ========================================= */
         | 
| 263 276 |  | 
| 264 277 | 
             
            .am-content.ui-app-area .btn-add {
         | 
| @@ -3,14 +3,15 @@ | |
| 3 3 |  | 
| 4 4 | 
             
            .menu-app {
         | 
| 5 5 | 
             
              background-color: $ui_white;
         | 
| 6 | 
            -
              box-shadow: $ui-shadow-right | 
| 6 | 
            +
              /*box-shadow: $ui-shadow-right;*/
         | 
| 7 7 | 
             
              border-right: 1px solid #D9D9D9;
         | 
| 8 8 | 
             
            }
         | 
| 9 9 | 
             
            .menu-app .list-group-item {
         | 
| 10 10 | 
             
              border: none;
         | 
| 11 11 | 
             
              font-size: $ui_font_normal;
         | 
| 12 12 | 
             
              border-left: 2px solid $ui_white;
         | 
| 13 | 
            -
              font-family: ' | 
| 13 | 
            +
              font-family: 'nunitosans-semibold';
         | 
| 14 | 
            +
              /*font-family: 'nunitosans-bold';*/
         | 
| 14 15 | 
             
            }
         | 
| 15 16 | 
             
            .menu-app .list-group-item-action:hover,
         | 
| 16 17 | 
             
            .menu-app .list-group-item-action:focus {
         | 
| @@ -10,5 +10,53 @@ ul#navbar { | |
| 10 10 | 
             
            .navbar-ui .nav-link {
         | 
| 11 11 | 
             
              color: $ui_back;
         | 
| 12 12 | 
             
              font-size: $ui_font_small;
         | 
| 13 | 
            -
              font-family: 'hk-grotesk-semibold' | 
| 13 | 
            +
              /*font-family: 'hk-grotesk-semibold';*/
         | 
| 14 | 
            +
              font-family: 'nunitosans-semibold';
         | 
| 15 | 
            +
            }
         | 
| 16 | 
            +
             | 
| 17 | 
            +
            .alert-msg {
         | 
| 18 | 
            +
              position: fixed;
         | 
| 19 | 
            +
              top: 6px;
         | 
| 20 | 
            +
              right: 12px;
         | 
| 21 | 
            +
              left: auto;
         | 
| 22 | 
            +
              z-index: 1030;
         | 
| 23 | 
            +
              background-color: #EBF7EE;
         | 
| 24 | 
            +
              border: 1px solid #C0E3CA;
         | 
| 25 | 
            +
              width: 292px !important;
         | 
| 26 | 
            +
              padding: 19px 20px;
         | 
| 27 | 
            +
              font-size: 14px;
         | 
| 28 | 
            +
            }
         | 
| 29 | 
            +
            .am-top-header .col-6:first-child {
         | 
| 30 | 
            +
              display: none;
         | 
| 31 | 
            +
            }
         | 
| 32 | 
            +
            .col-6.admin-options {
         | 
| 33 | 
            +
              max-width: 100%;
         | 
| 34 | 
            +
              width: 100%;
         | 
| 35 | 
            +
              flex: auto;
         | 
| 36 | 
            +
            }
         | 
| 37 | 
            +
            .navbar-nav.am-icons-nav {
         | 
| 38 | 
            +
              position: absolute;
         | 
| 39 | 
            +
              left: -12px;
         | 
| 40 | 
            +
            }
         | 
| 41 | 
            +
             | 
| 42 | 
            +
            @media (max-width: 768px) {
         | 
| 43 | 
            +
              .am-top-header .col-6:first-child {
         | 
| 44 | 
            +
                display: block;
         | 
| 45 | 
            +
              }
         | 
| 46 | 
            +
              .navbar-nav.am-icons-nav {
         | 
| 47 | 
            +
                position: fixed;
         | 
| 48 | 
            +
                left: unset;
         | 
| 49 | 
            +
              }
         | 
| 50 | 
            +
              .am-left-sidebar .am-logo {
         | 
| 51 | 
            +
                display: none !important;
         | 
| 52 | 
            +
              }
         | 
| 53 | 
            +
              .am-wrapper.main-app .ui-app-area.construction-area {
         | 
| 54 | 
            +
                width: 100%;
         | 
| 55 | 
            +
                padding: 0;
         | 
| 56 | 
            +
                position: fixed;
         | 
| 57 | 
            +
                z-index: 9999;
         | 
| 58 | 
            +
              }
         | 
| 59 | 
            +
              .am-wrapper.main-app .ui-app-area.construction-area nav {
         | 
| 60 | 
            +
                height: 50px !important;
         | 
| 61 | 
            +
              }
         | 
| 14 62 | 
             
            }
         | 
| @@ -202,6 +202,15 @@ | |
| 202 202 | 
             
              .white-header .col-lg-5 {
         | 
| 203 203 | 
             
                width: 50%;
         | 
| 204 204 | 
             
              }
         | 
| 205 | 
            +
              .responsive-left {
         | 
| 206 | 
            +
                float: left !important;
         | 
| 207 | 
            +
              }
         | 
| 208 | 
            +
            }
         | 
| 209 | 
            +
             | 
| 210 | 
            +
            @media (min-width: 769px) {
         | 
| 211 | 
            +
              .navbar .logo-area {
         | 
| 212 | 
            +
                display: none;
         | 
| 213 | 
            +
              }
         | 
| 205 214 | 
             
            }
         | 
| 206 215 |  | 
| 207 216 | 
             
            @media (max-width: 768px) {
         | 
| @@ -232,6 +241,22 @@ | |
| 232 241 | 
             
              .land-app .ui-app-area .filter-block .w-50 {
         | 
| 233 242 | 
             
                width: 100% !important;
         | 
| 234 243 | 
             
              }
         | 
| 244 | 
            +
              .am-left-sidebar {
         | 
| 245 | 
            +
                padding-top: 55px !important;
         | 
| 246 | 
            +
              }
         | 
| 247 | 
            +
              .am-left-sidebar .logo-area {
         | 
| 248 | 
            +
                display: none;
         | 
| 249 | 
            +
              }
         | 
| 250 | 
            +
              label[data-function*=swipe] {
         | 
| 251 | 
            +
                z-index: 9999999;
         | 
| 252 | 
            +
              }
         | 
| 253 | 
            +
              .am-navbar-header {
         | 
| 254 | 
            +
                width: 150px;
         | 
| 255 | 
            +
              }
         | 
| 256 | 
            +
              .am-content.ui-app-area .floor-widget .floor-container .floor_areas .floor_area-item,
         | 
| 257 | 
            +
              .am-content.ui-app-area .block-widget .blocks-container .blocks_areas .block_area-item {
         | 
| 258 | 
            +
                width: 25%;
         | 
| 259 | 
            +
              }
         | 
| 235 260 | 
             
            }
         | 
| 236 261 |  | 
| 237 262 | 
             
            @media (max-width: 580px) {
         | 
| @@ -319,6 +344,7 @@ | |
| 319 344 | 
             
              }
         | 
| 320 345 |  | 
| 321 346 | 
             
              /* =========================== */
         | 
| 347 | 
            +
             | 
| 322 348 | 
             
              .land-app .ui-app-area .small-tabs .px-4,
         | 
| 323 349 | 
             
              .land-app .ui-app-area .small-tabs .py-4 {
         | 
| 324 350 | 
             
                padding-left: 0 !important;
         | 
| @@ -336,6 +362,17 @@ | |
| 336 362 | 
             
              .land-app .ui-app-area .full-block .full-block-content .w-20 {
         | 
| 337 363 | 
             
                margin-bottom: 15px;
         | 
| 338 364 | 
             
              }
         | 
| 365 | 
            +
             | 
| 366 | 
            +
              /* =========================== */
         | 
| 367 | 
            +
             | 
| 368 | 
            +
              .ui-app-area .table-item {
         | 
| 369 | 
            +
                width: 32%;
         | 
| 370 | 
            +
              }
         | 
| 371 | 
            +
             | 
| 372 | 
            +
              .tab-content.px-4 {
         | 
| 373 | 
            +
                padding-left: 0 !important;
         | 
| 374 | 
            +
                padding-right: 0 !important;
         | 
| 375 | 
            +
              }
         | 
| 339 376 | 
             
            }
         | 
| 340 377 |  | 
| 341 378 | 
             
            @media (max-width: 460px) {
         | 
| @@ -355,6 +392,12 @@ | |
| 355 392 | 
             
                float: right;
         | 
| 356 393 | 
             
                text-align: right;
         | 
| 357 394 | 
             
              }
         | 
| 395 | 
            +
             | 
| 396 | 
            +
              /* =========================== */
         | 
| 397 | 
            +
             | 
| 398 | 
            +
              .ui-app-area .table-item {
         | 
| 399 | 
            +
                width: 48%;
         | 
| 400 | 
            +
              }
         | 
| 358 401 | 
             
            }
         | 
| 359 402 |  | 
| 360 403 | 
             
            @media (min-width: 576px) {
         |