| OLD | NEW |
| 1 /* Apps */ | 1 /* Apps */ |
| 2 | 2 |
| 3 #apps-section .app, | 3 #apps-section .app, |
| 4 #apps-section .app[new=installed] { | 4 #apps-section .app[new=installed] { |
| 5 -webkit-box-sizing: border-box; | 5 -webkit-box-sizing: border-box; |
| 6 -webkit-perspective: 400; | 6 -webkit-perspective: 400; |
| 7 border-radius: 10px; | 7 border-radius: 10px; |
| 8 color: black; | 8 color: black; |
| 9 display: inline-block; | 9 display: inline-block; |
| 10 margin: 5px 3px; | 10 margin: 5px 3px; |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 | 114 |
| 115 #apps-section .app[new=new] { | 115 #apps-section .app[new=new] { |
| 116 opacity: 0; | 116 opacity: 0; |
| 117 } | 117 } |
| 118 | 118 |
| 119 #apps-section .app[new=installed] { | 119 #apps-section .app[new=installed] { |
| 120 -webkit-animation: bounce .5s ease-in-out; | 120 -webkit-animation: bounce .5s ease-in-out; |
| 121 -webkit-transition: opacity .5s; | 121 -webkit-transition: opacity .5s; |
| 122 } | 122 } |
| 123 | 123 |
| 124 #web-store-entry { |
| 125 background-image: url("web_store_icon.png"); |
| 126 } |
| 127 |
| 124 /* Make items on the wrong side non focusable by hiding them. */ | 128 /* Make items on the wrong side non focusable by hiding them. */ |
| 125 .app:not(.config) > .back button, | 129 .app:not(.config) > .back button, |
| 126 .app.config > .front button, | 130 .app.config > .front button, |
| 127 .app.config > .front a { | 131 .app.config > .front a { |
| 128 display: none; | 132 display: none; |
| 129 } | 133 } |
| 130 | 134 |
| 131 html[has_3d=true] .app.config > .front { | 135 html[has_3d=true] .app.config > .front { |
| 132 -webkit-transform: rotateY(180deg); | 136 -webkit-transform: rotateY(180deg); |
| 133 } | 137 } |
| (...skipping 10 matching lines...) Expand all Loading... |
| 144 display: none; | 148 display: none; |
| 145 } | 149 } |
| 146 | 150 |
| 147 html[has_3d=false] .app > .back { | 151 html[has_3d=false] .app > .back { |
| 148 display: none; | 152 display: none; |
| 149 } | 153 } |
| 150 | 154 |
| 151 html[has_3d=false] .app.config > .back { | 155 html[has_3d=false] .app.config > .back { |
| 152 display: block; | 156 display: block; |
| 153 } | 157 } |
| OLD | NEW |