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

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

Issue 4245002: Add instant to tabbed options. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: smorgan review Created 10 years, 1 month 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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 border: 1px solid rgb(118, 118, 118); 190 border: 1px solid rgb(118, 118, 118);
191 border-radius: 3px; 191 border-radius: 3px;
192 padding: 0 3px; 192 padding: 0 3px;
193 background: -webkit-gradient(linear, left top, left bottom, 193 background: -webkit-gradient(linear, left top, left bottom,
194 from(white), 194 from(white),
195 to(rgb(228, 229, 240))); 195 to(rgb(228, 229, 240)));
196 width: auto; 196 width: auto;
197 max-width: 300px; 197 max-width: 300px;
198 } 198 }
199 199
200 .hbox {
201 display: -webkit-box;
202 -webkit-box-orient: horizontal;
203 }
204
205 .foreign-session-client { 200 .foreign-session-client {
206 float: left; 201 float: left;
207 max-width: 114px; /* Selected so that we can fit 5 items in EN-US */ 202 max-width: 114px; /* Selected so that we can fit 5 items in EN-US */
208 font-weight: normal; 203 font-weight: normal;
209 margin: 0; 204 margin: 0;
210 position: relative; 205 position: relative;
211 } 206 }
212 207
213 html[dir=rtl] .foreign-session-client { 208 html[dir=rtl] .foreign-session-client {
214 float: right; 209 float: right;
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 } 507 }
513 } 508 }
514 509
515 /* Ensure we have at least 10px horizontal marging. */ 510 /* Ensure we have at least 10px horizontal marging. */
516 @media (max-width: 712px) { 511 @media (max-width: 712px) {
517 #main { 512 #main {
518 margin-left: 10px; 513 margin-left: 10px;
519 margin-right: 10px; 514 margin-right: 10px;
520 } 515 }
521 } 516 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/dom_ui.css ('k') | chrome/browser/resources/options/advanced_options.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698