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

Side by Side Diff: chrome/browser/resources/new_new_tab.css

Issue 6293010: Change all the places where the multi-purpose sync error link is surfaced to ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 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
OLDNEW
1 html { 1 html {
2 /* This is needed because of chrome://theme/css/new_tab.css */ 2 /* This is needed because of chrome://theme/css/new_tab.css */
3 height: 100%; 3 height: 100%;
4 } 4 }
5 5
6 body { 6 body {
7 margin: 0; 7 margin: 0;
8 height: 100%; 8 height: 100%;
9 overflow: auto; 9 overflow: auto;
10 -webkit-user-select: none; 10 -webkit-user-select: none;
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 white-space: nowrap; 254 white-space: nowrap;
255 overflow-x: hidden; 255 overflow-x: hidden;
256 } 256 }
257 257
258 #sync-status > div > * { 258 #sync-status > div > * {
259 display: inline-block; 259 display: inline-block;
260 max-width: none; 260 max-width: none;
261 white-space: nowrap; 261 white-space: nowrap;
262 overflow: hidden; 262 overflow: hidden;
263 text-overflow: ellipsis; 263 text-overflow: ellipsis;
264 font-size: 100%; 264 font-size: 106%;
265 margin: 0 10px; 265 margin: 0 10px;
266 } 266 }
267 267
268 .notification.hidden { 268 .notification.hidden {
269 opacity: 0; 269 opacity: 0;
270 pointer-events: none; 270 pointer-events: none;
271 } 271 }
272 272
273 /** 273 /**
274 * Unfortunately, there seems to be a bug in WebKit where this div doesn't 274 * Unfortunately, there seems to be a bug in WebKit where this div doesn't
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 } 551 }
552 } 552 }
553 553
554 /* Ensure we have at least 10px horizontal marging. */ 554 /* Ensure we have at least 10px horizontal marging. */
555 @media (max-width: 712px) { 555 @media (max-width: 712px) {
556 #main { 556 #main {
557 margin-left: 10px; 557 margin-left: 10px;
558 margin-right: 10px; 558 margin-right: 10px;
559 } 559 }
560 } 560 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698