welcome_css 0.69 → 0.70
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 +11 -3
- data/lib/welcome_css/version.rb +1 -1
- metadata +1 -1
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 900d80a096fbf9b5ca677ca4ea459dad78ecabd1865f29f00719ae050037cc13
         | 
| 4 | 
            +
              data.tar.gz: f9e3bb63f58deab1fad812bbd40a29c98859731701e43501133587ce7b306837
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 72ac055854f011a2c6998cd4625bf9fa394bdeb5d5a7d289e919483549e06273528be2a8dec464bb9ca5709a5b4394327b8ddb11a10aca0dd1061f05fab81f92
         | 
| 7 | 
            +
              data.tar.gz: cbd78f01e2475fd72e6d8e78db201fa3fdba123c5d6d5fd175c9a8c008051ab9502d5fcda4a365a068e37edbe331a7c6176b1e39b11894086135abf6825990b9
         | 
| @@ -3315,12 +3315,17 @@ table .ui-table-row { | |
| 3315 3315 | 
             
              width: 24%;
         | 
| 3316 3316 | 
             
              margin: 0 3px;
         | 
| 3317 3317 | 
             
              border: none !important;
         | 
| 3318 | 
            +
              padding-left: 20px;
         | 
| 3319 | 
            +
              background-image: image-url('icons/icn-rearrange.svg');
         | 
| 3320 | 
            +
              background-repeat: no-repeat;
         | 
| 3321 | 
            +
              background-size: 14px;
         | 
| 3322 | 
            +
              background-position: left 0px top 14px;
         | 
| 3318 3323 | 
             
            }
         | 
| 3319 3324 | 
             
            #model-area-themes [contenteditable] {
         | 
| 3320 3325 | 
             
              display: block;
         | 
| 3321 3326 | 
             
              float: left;
         | 
| 3322 3327 | 
             
              position: relative;
         | 
| 3323 | 
            -
              width:  | 
| 3328 | 
            +
              width: 95%;
         | 
| 3324 3329 | 
             
              height: 42px;
         | 
| 3325 3330 | 
             
              padding: 10px 34px 10px 25px;
         | 
| 3326 3331 | 
             
              border: 1px solid #ddd;
         | 
| @@ -3332,6 +3337,9 @@ table .ui-table-row { | |
| 3332 3337 | 
             
              background-position: left 7px top 15px;
         | 
| 3333 3338 | 
             
              margin-bottom: 18px;
         | 
| 3334 3339 | 
             
            }
         | 
| 3340 | 
            +
            #model-area-themes [contenteditable]:hover {
         | 
| 3341 | 
            +
              cursor: text;
         | 
| 3342 | 
            +
            }
         | 
| 3335 3343 | 
             
            #model-area-themes [data-remote] {
         | 
| 3336 3344 | 
             
              display: block;
         | 
| 3337 3345 | 
             
              position: absolute;
         | 
| @@ -3340,7 +3348,7 @@ table .ui-table-row { | |
| 3340 3348 | 
             
              border: 1px solid #ff0000;
         | 
| 3341 3349 | 
             
              border-radius: 4px;
         | 
| 3342 3350 | 
             
              top: 0;
         | 
| 3343 | 
            -
              right:  | 
| 3351 | 
            +
              right: 12px;
         | 
| 3344 3352 | 
             
              background-image: image-url('icons/icn-trash.svg');
         | 
| 3345 3353 | 
             
              background-repeat: no-repeat;
         | 
| 3346 3354 | 
             
              background-size: 15px;
         | 
| @@ -3348,7 +3356,7 @@ table .ui-table-row { | |
| 3348 3356 | 
             
              text-indent: -9999px;
         | 
| 3349 3357 | 
             
            }
         | 
| 3350 3358 | 
             
            #model-area-themes [draggable]:hover {
         | 
| 3351 | 
            -
               | 
| 3359 | 
            +
              cursor: move;
         | 
| 3352 3360 | 
             
            }
         | 
| 3353 3361 | 
             
            .modal-content #model-area-themes div:last-child {
         | 
| 3354 3362 | 
             
              display: block;
         | 
    
        data/lib/welcome_css/version.rb
    CHANGED