edge_framework 0.0.2 → 0.0.3
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 +8 -8
 - data/assets/sass/edge/_base.scss +1 -3
 - data/assets/sass/edge/components/_main.scss +10 -0
 - data/lib/edge/version.rb +1 -1
 - data/site/assets/css/app.css +2 -0
 - data/site/assets/css/edge.css +4 -0
 - data/site/assets/sass/app.scss +5 -1
 - metadata +2 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,15 +1,15 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            !binary "U0hBMQ==":
         
     | 
| 
       3 
3 
     | 
    
         
             
              metadata.gz: !binary |-
         
     | 
| 
       4 
     | 
    
         
            -
                 
     | 
| 
      
 4 
     | 
    
         
            +
                NmU0YWY1MDczNDQ5NTExZjVkMjM1M2E0Y2JlNGYzNmRiMTE5MTRmOA==
         
     | 
| 
       5 
5 
     | 
    
         
             
              data.tar.gz: !binary |-
         
     | 
| 
       6 
     | 
    
         
            -
                 
     | 
| 
      
 6 
     | 
    
         
            +
                OTQwNGMxMTE4MGM4YzY2YjJjZWM2ZDYwMDJjODQxNGYxYWEzMDY4Nw==
         
     | 
| 
       7 
7 
     | 
    
         
             
            !binary "U0hBNTEy":
         
     | 
| 
       8 
8 
     | 
    
         
             
              metadata.gz: !binary |-
         
     | 
| 
       9 
     | 
    
         
            -
                 
     | 
| 
       10 
     | 
    
         
            -
                 
     | 
| 
       11 
     | 
    
         
            -
                 
     | 
| 
      
 9 
     | 
    
         
            +
                NTI0YWE0ZWU1ZGU1NTlhZTU4YmYwYTQ0ZmY0YzI2OTA0MzljZTg4MGViYWUx
         
     | 
| 
      
 10 
     | 
    
         
            +
                NzhlOTVlZGRkNTUyMTViZWE2ODNjOTcxNjY3ZDljNzA5NTRlMjg5ZTgxOTQw
         
     | 
| 
      
 11 
     | 
    
         
            +
                ZjNkMjNmYzZiZThhOTMzOWVlN2RjMjgyZjUwN2Q2ODk5OWIzZWY=
         
     | 
| 
       12 
12 
     | 
    
         
             
              data.tar.gz: !binary |-
         
     | 
| 
       13 
     | 
    
         
            -
                 
     | 
| 
       14 
     | 
    
         
            -
                 
     | 
| 
       15 
     | 
    
         
            -
                 
     | 
| 
      
 13 
     | 
    
         
            +
                ZThiNTMzODhlOWVmYWE0NmRkZmU2YmQ2MDJkYmVkZGE4NjU2NzI2MTE1MzQ3
         
     | 
| 
      
 14 
     | 
    
         
            +
                ZmIyYzYwMTczOTE2NTlmYjdhYTI5YzJkNGZkMDkzMzI3MWJhMGRkYmM4ZGJl
         
     | 
| 
      
 15 
     | 
    
         
            +
                YzRhOGQ5ZTRkZjQ1ZTVmZjllNWYwYTQ5YTRiZDZiMGQ5ZmYxYTU=
         
     | 
    
        data/assets/sass/edge/_base.scss
    CHANGED
    
    | 
         @@ -177,12 +177,10 @@ $retina-screen : 192dpi !default; 
     | 
|
| 
       177 
177 
     | 
    
         
             
            // --------------------------------
         
     | 
| 
       178 
178 
     | 
    
         
             
            @mixin selection($color: lighten($main-color, 35%) ) {
         
     | 
| 
       179 
179 
     | 
    
         
             
            	::-moz-selection {
         
     | 
| 
       180 
     | 
    
         
            -
            		background  : $ 
     | 
| 
       181 
     | 
    
         
            -
            		text-shadow : none;
         
     | 
| 
      
 180 
     | 
    
         
            +
            		background  : $color;
         
     | 
| 
       182 
181 
     | 
    
         
             
            	}
         
     | 
| 
       183 
182 
     | 
    
         
             
            	::selection {
         
     | 
| 
       184 
183 
     | 
    
         
             
            		background  : $color;
         
     | 
| 
       185 
     | 
    
         
            -
            		text-shadow : none;
         
     | 
| 
       186 
184 
     | 
    
         
             
            	}
         
     | 
| 
       187 
185 
     | 
    
         
             
            }
         
     | 
| 
       188 
186 
     | 
    
         | 
| 
         @@ -105,6 +105,16 @@ body { 
     | 
|
| 
       105 
105 
     | 
    
         
             
            	to { padding: 0; }
         
     | 
| 
       106 
106 
     | 
    
         
             
            }
         
     | 
| 
       107 
107 
     | 
    
         | 
| 
      
 108 
     | 
    
         
            +
            // Disable text-shadow on selection
         
     | 
| 
      
 109 
     | 
    
         
            +
            ::-moz-selection {
         
     | 
| 
      
 110 
     | 
    
         
            +
            	background  : #3297fd;
         
     | 
| 
      
 111 
     | 
    
         
            +
            	text-shadow : none;
         
     | 
| 
      
 112 
     | 
    
         
            +
            }
         
     | 
| 
      
 113 
     | 
    
         
            +
            ::selection {
         
     | 
| 
      
 114 
     | 
    
         
            +
            	background  : #3297fd;
         
     | 
| 
      
 115 
     | 
    
         
            +
            	text-shadow : none;
         
     | 
| 
      
 116 
     | 
    
         
            +
            }
         
     | 
| 
      
 117 
     | 
    
         
            +
             
     | 
| 
       108 
118 
     | 
    
         
             
            // -----------------------------------
         
     | 
| 
       109 
119 
     | 
    
         
             
            /* Miscellaneous useful HTML classes */
         
     | 
| 
       110 
120 
     | 
    
         
             
            // -----------------------------------
         
     | 
    
        data/lib/edge/version.rb
    CHANGED
    
    
    
        data/site/assets/css/app.css
    CHANGED
    
    | 
         @@ -22,3 +22,5 @@ html, body { height: 100%; background-color: #eee; } 
     | 
|
| 
       22 
22 
     | 
    
         
             
            .ic.squirtle { background-position: -100px -100px; height: 100px; width: 100px; }
         
     | 
| 
       23 
23 
     | 
    
         
             
            .ic.venusaur { background-position: 0 -700px; height: 200px; width: 200px; }
         
     | 
| 
       24 
24 
     | 
    
         
             
            @media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { .ic { background: url('../img/icons@2x-sf605bc03f7.png'); background-size: 200px 900px; } }
         
     | 
| 
      
 25 
     | 
    
         
            +
             
     | 
| 
      
 26 
     | 
    
         
            +
            body { text-shadow: 2px 2px 3px yellow; }
         
     | 
    
        data/site/assets/css/edge.css
    CHANGED
    
    | 
         @@ -113,6 +113,10 @@ body { -webkit-animation: bugfix infinite 1s; } 
     | 
|
| 
       113 
113 
     | 
    
         
             
            @-webkit-keyframes bugfix { from { padding: 0; }
         
     | 
| 
       114 
114 
     | 
    
         
             
              to { padding: 0; } }
         
     | 
| 
       115 
115 
     | 
    
         | 
| 
      
 116 
     | 
    
         
            +
            ::-moz-selection { background: #3297fd; text-shadow: none; }
         
     | 
| 
      
 117 
     | 
    
         
            +
             
     | 
| 
      
 118 
     | 
    
         
            +
            ::selection { background: #3297fd; text-shadow: none; }
         
     | 
| 
      
 119 
     | 
    
         
            +
             
     | 
| 
       116 
120 
     | 
    
         
             
            /* Miscellaneous useful HTML classes */
         
     | 
| 
       117 
121 
     | 
    
         
             
            .left { float: left !important; }
         
     | 
| 
       118 
122 
     | 
    
         | 
    
        data/site/assets/sass/app.scss
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: edge_framework
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.0.3
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Henner Setyono
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2013-08- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2013-08-25 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: sass
         
     |