OLD | NEW |
1 /* Apps */ | 1 /* Apps */ |
2 | 2 |
3 #apps-content { | 3 #apps-content { |
4 position: relative; | 4 position: relative; |
5 width: intrinsic; | 5 width: intrinsic; |
6 max-width: 780px; /* (124 + margin * 2) * 6 */ | 6 max-width: 780px; /* (124 + margin * 2) * 6 */ |
7 } | 7 } |
8 | 8 |
9 html.apps-promo-visible #apps-content { | 9 html.apps-promo-visible #apps-content { |
10 max-width: 650px; /* (124 + margin * 2) * 5 */ | 10 max-width: 650px; /* (124 + margin * 2) * 5 */ |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 html[install-animation-enabled=true] .app[new=new] { | 106 html[install-animation-enabled=true] .app[new=new] { |
107 opacity: 0; | 107 opacity: 0; |
108 } | 108 } |
109 | 109 |
110 html[install-animation-enabled=true] .app[new=installed] { | 110 html[install-animation-enabled=true] .app[new=installed] { |
111 -webkit-animation: bounce .5s ease-in-out; | 111 -webkit-animation: bounce .5s ease-in-out; |
112 -webkit-transition: opacity .5s; | 112 -webkit-transition: opacity .5s; |
113 } | 113 } |
114 | 114 |
115 .app[app-id=web-store-entry] > a { | 115 .app[app-id=web-store-entry] > a { |
116 background-image: url("web_store_icon.png"); | 116 background-image: url("chrome://theme/IDR_WEBSTORE_ICON"); |
117 } | 117 } |
118 | 118 |
119 menu > button.default { | 119 menu > button.default { |
120 font-weight: bold; | 120 font-weight: bold; |
121 } | 121 } |
122 | 122 |
123 #apps-promo { | 123 #apps-promo { |
124 display: none; | 124 display: none; |
125 } | 125 } |
126 | 126 |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 */ | 177 */ |
178 .app[app-id=web-store-entry].loner { | 178 .app[app-id=web-store-entry].loner { |
179 position: absolute; | 179 position: absolute; |
180 left: 100%; | 180 left: 100%; |
181 top: 0; | 181 top: 0; |
182 } | 182 } |
183 | 183 |
184 html[dir=rtl] .app[app-id=web-store-entry].loner { | 184 html[dir=rtl] .app[app-id=web-store-entry].loner { |
185 right: 100%; | 185 right: 100%; |
186 } | 186 } |
OLD | NEW |