Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Side by Side Diff: chrome/browser/resources/ntp/apps.css

Issue 3001003: NTP: Use the store as the last thumbnail in case we have no apps installed.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/profile.cc ('k') | chrome/browser/resources/ntp/apps.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/profile.cc ('k') | chrome/browser/resources/ntp/apps.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698