welcome_css 0.64 → 0.65
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 +20 -10
- 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: f30297b4d59c9fa8e8a1f89971887ec91a975c3d2889fb292b0a50c23d1c5581
         | 
| 4 | 
            +
              data.tar.gz: 8afba905955950aaa74c863c55e70ce3ca9e123e3825c90d83c1fa57473e1058
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: f7b45dca8beafaba9d14d078bd8a7b49afe9631a37ad9a084888af8469daf4d464a2b5c7d33070c76eb93d6f5de95d89fc8b81ab4492b9388ebddb045c35f911
         | 
| 7 | 
            +
              data.tar.gz: 7bbfd8d82f6ed378ce026ca24e7f2268e5445c08c87452a02c4e0a5865d5fa0af2d76ef1a1ef547a9234f4f9f5b2e847f47c52827aaee896eeaced523a780209
         | 
| @@ -2840,20 +2840,23 @@ table .ui-table-row { | |
| 2840 2840 |  | 
| 2841 2841 | 
             
            /* =========================== */
         | 
| 2842 2842 |  | 
| 2843 | 
            -
            .ui-app-area .items-container .table-item .switch | 
| 2843 | 
            +
            .ui-app-area .items-container .table-item .switch,
         | 
| 2844 | 
            +
            .ui-app-area .items-container .switch {
         | 
| 2844 2845 | 
             
              position: relative;
         | 
| 2845 2846 | 
             
              display: inline-block;
         | 
| 2846 2847 | 
             
              width: 40px;
         | 
| 2847 2848 | 
             
              height: 22px;
         | 
| 2848 2849 | 
             
              margin-top: -8px;
         | 
| 2849 2850 | 
             
            }
         | 
| 2850 | 
            -
            .ui-app-area .items-container .table-item .switch input | 
| 2851 | 
            +
            .ui-app-area .items-container .table-item .switch input,
         | 
| 2852 | 
            +
            .ui-app-area .items-container .switch input {
         | 
| 2851 2853 | 
             
              opacity: 0;
         | 
| 2852 2854 | 
             
              width: 0;
         | 
| 2853 2855 | 
             
              height: 0;
         | 
| 2854 2856 | 
             
            }
         | 
| 2855 2857 |  | 
| 2856 | 
            -
            .ui-app-area .items-container .table-item .slider | 
| 2858 | 
            +
            .ui-app-area .items-container .table-item .slider,
         | 
| 2859 | 
            +
            .ui-app-area .items-container .slider {
         | 
| 2857 2860 | 
             
              position: absolute;
         | 
| 2858 2861 | 
             
              cursor: pointer;
         | 
| 2859 2862 | 
             
              top: 0;
         | 
| @@ -2865,7 +2868,8 @@ table .ui-table-row { | |
| 2865 2868 | 
             
              transition: .4s;
         | 
| 2866 2869 | 
             
            }
         | 
| 2867 2870 |  | 
| 2868 | 
            -
            .ui-app-area .items-container .table-item .slider:before | 
| 2871 | 
            +
            .ui-app-area .items-container .table-item .slider:before,
         | 
| 2872 | 
            +
            .ui-app-area .items-container .slider:before {
         | 
| 2869 2873 | 
             
              position: absolute;
         | 
| 2870 2874 | 
             
              content: "";
         | 
| 2871 2875 | 
             
              height: 15px;
         | 
| @@ -2877,27 +2881,33 @@ table .ui-table-row { | |
| 2877 2881 | 
             
              transition: .4s;
         | 
| 2878 2882 | 
             
            }
         | 
| 2879 2883 |  | 
| 2880 | 
            -
            .ui-app-area .items-container .table-item .slider | 
| 2884 | 
            +
            .ui-app-area .items-container .table-item .slider,
         | 
| 2885 | 
            +
            .ui-app-area .items-container .slider {
         | 
| 2881 2886 | 
             
              background-color: #5DD687;
         | 
| 2882 2887 | 
             
            }
         | 
| 2883 | 
            -
            .ui-app-area .items-container .table-item .slider-off | 
| 2888 | 
            +
            .ui-app-area .items-container .table-item .slider-off,
         | 
| 2889 | 
            +
            .ui-app-area .items-container .slider-off {
         | 
| 2884 2890 | 
             
              background-color: #CCC;
         | 
| 2885 2891 | 
             
            }
         | 
| 2886 2892 |  | 
| 2887 | 
            -
            .ui-app-area .items-container .table-item input:focus + .slider | 
| 2893 | 
            +
            .ui-app-area .items-container .table-item input:focus + .slider,
         | 
| 2894 | 
            +
            .ui-app-area .items-container input:focus + .slider {
         | 
| 2888 2895 | 
             
              box-shadow: 0 0 1px #5DD687;
         | 
| 2889 2896 | 
             
            }
         | 
| 2890 2897 |  | 
| 2891 | 
            -
            .ui-app-area .items-container .table-item input:checked + .slider:before | 
| 2898 | 
            +
            .ui-app-area .items-container .table-item input:checked + .slider:before,
         | 
| 2899 | 
            +
            .ui-app-area .items-container input:checked + .slider:before {
         | 
| 2892 2900 | 
             
              -webkit-transform: translateX(15px);
         | 
| 2893 2901 | 
             
              -ms-transform: translateX(15px);
         | 
| 2894 2902 | 
             
              transform: translateX(15px);
         | 
| 2895 2903 | 
             
            }
         | 
| 2896 2904 |  | 
| 2897 | 
            -
            .ui-app-area .items-container .table-item .slider.round | 
| 2905 | 
            +
            .ui-app-area .items-container .table-item .slider.round,
         | 
| 2906 | 
            +
            .ui-app-area .items-container .slider.round {
         | 
| 2898 2907 | 
             
              border-radius: 34px;
         | 
| 2899 2908 | 
             
            }
         | 
| 2900 | 
            -
            .ui-app-area .items-container .table-item .slider.round:before | 
| 2909 | 
            +
            .ui-app-area .items-container .table-item .slider.round:before,
         | 
| 2910 | 
            +
            .ui-app-area .items-container .slider.round:before {
         | 
| 2901 2911 | 
             
              border-radius: 50%;
         | 
| 2902 2912 | 
             
            }
         | 
| 2903 2913 |  | 
    
        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.65'
         | 
| 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-04- | 
| 11 | 
            +
            date: 2022-04-05 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: rails
         |