baseline-scss 0.3.0 → 0.3.1
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/lib/baseline_scss/version.rb +1 -1
 - data/src/_reboot.scss +17 -12
 - data/src/content/_lists.scss +8 -0
 - 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: e48b5f45c2753571692f1e89ad8c0c475d1cb1ee410de5db9b0dabd440876237
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 8699e04814f358a44d953ffc7f709de4a848ccbd7e5376bd93a0616ce62741f9
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 9de06aebbebb8951a25502ada6a24962e73714fb40e5f1a26d18edba482ed10702d7b705bcc7e8096ae3c2f095b57a7a64e80b214d42cc04dc9f1f4dee3dd455
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: c2fa489c3acbb8ec16f0a247a89c517e492d4d80c289f3544181af88a281b3812b2eea1865a1f34e2e6e9f31704703f356d1ab4c3d174e543d680749a021fb2c
         
     | 
    
        data/src/_reboot.scss
    CHANGED
    
    | 
         @@ -23,7 +23,7 @@ 
     | 
|
| 
       23 
23 
     | 
    
         
             
              @include outline();
         
     | 
| 
       24 
24 
     | 
    
         
             
            }
         
     | 
| 
       25 
25 
     | 
    
         
             
            // Don't outline elements that programmatically receive focus but wouldn't normally show an outline.
         
     | 
| 
       26 
     | 
    
         
            -
            [tabindex= 
     | 
| 
      
 26 
     | 
    
         
            +
            [tabindex='-1']:focus:not(:focus-visible) {
         
     | 
| 
       27 
27 
     | 
    
         
             
              outline: 0 !important;
         
     | 
| 
       28 
28 
     | 
    
         
             
            }
         
     | 
| 
       29 
29 
     | 
    
         | 
| 
         @@ -119,12 +119,26 @@ textarea { 
     | 
|
| 
       119 
119 
     | 
    
         
             
              }
         
     | 
| 
       120 
120 
     | 
    
         
             
            }
         
     | 
| 
       121 
121 
     | 
    
         | 
| 
       122 
     | 
    
         
            -
            [role= 
     | 
| 
      
 122 
     | 
    
         
            +
            [role='button'] {
         
     | 
| 
       123 
123 
     | 
    
         
             
              cursor: pointer; // Set the cursor for non-`<button>` buttons.
         
     | 
| 
       124 
124 
     | 
    
         
             
            }
         
     | 
| 
       125 
125 
     | 
    
         | 
| 
       126 
     | 
    
         
            -
            [type= 
     | 
| 
      
 126 
     | 
    
         
            +
            [type='search'] {
         
     | 
| 
       127 
127 
     | 
    
         
             
              outline-offset: -.2rem;
         
     | 
| 
      
 128 
     | 
    
         
            +
             
     | 
| 
      
 129 
     | 
    
         
            +
              &::-ms-clear,
         
     | 
| 
      
 130 
     | 
    
         
            +
              &::-ms-reveal {
         
     | 
| 
      
 131 
     | 
    
         
            +
                display: none;
         
     | 
| 
      
 132 
     | 
    
         
            +
                height: 0;
         
     | 
| 
      
 133 
     | 
    
         
            +
                width : 0;
         
     | 
| 
      
 134 
     | 
    
         
            +
              }
         
     | 
| 
      
 135 
     | 
    
         
            +
             
     | 
| 
      
 136 
     | 
    
         
            +
              &::-webkit-search-decoration,
         
     | 
| 
      
 137 
     | 
    
         
            +
              &::-webkit-search-cancel-button,
         
     | 
| 
      
 138 
     | 
    
         
            +
              &::-webkit-search-results-button,
         
     | 
| 
      
 139 
     | 
    
         
            +
              &::-webkit-search-results-decoration {
         
     | 
| 
      
 140 
     | 
    
         
            +
                display: none;
         
     | 
| 
      
 141 
     | 
    
         
            +
              }
         
     | 
| 
       128 
142 
     | 
    
         
             
            }
         
     | 
| 
       129 
143 
     | 
    
         | 
| 
       130 
144 
     | 
    
         
             
            output {
         
     | 
| 
         @@ -162,15 +176,6 @@ textarea { 
     | 
|
| 
       162 
176 
     | 
    
         
             
              padding: 0;
         
     | 
| 
       163 
177 
     | 
    
         
             
            }
         
     | 
| 
       164 
178 
     | 
    
         | 
| 
       165 
     | 
    
         
            -
            // Lists
         
     | 
| 
       166 
     | 
    
         
            -
            dt {
         
     | 
| 
       167 
     | 
    
         
            -
              font-weight: bold;
         
     | 
| 
       168 
     | 
    
         
            -
            }
         
     | 
| 
       169 
     | 
    
         
            -
             
     | 
| 
       170 
     | 
    
         
            -
            dd {
         
     | 
| 
       171 
     | 
    
         
            -
              margin-left: 0;
         
     | 
| 
       172 
     | 
    
         
            -
            }
         
     | 
| 
       173 
     | 
    
         
            -
             
     | 
| 
       174 
179 
     | 
    
         
             
            // Multimedia
         
     | 
| 
       175 
180 
     | 
    
         
             
            audio,
         
     | 
| 
       176 
181 
     | 
    
         
             
            canvas,
         
     | 
    
        data/src/content/_lists.scss
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: baseline-scss
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.3. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.3.1
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - David Susco
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire:
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2023-02- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2023-02-22 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: rake
         
     |