OLD | NEW |
---|---|
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 html[dir='rtl'] body.uber-frame > .page { | 5 html[dir='rtl'] body.uber-frame > .page { |
6 -webkit-margin-end: 0; | 6 -webkit-margin-end: 0; |
7 } | 7 } |
8 | 8 |
9 body.uber-frame > .page.big-topbar-page { | 9 body.uber-frame > .page.big-topbar-page { |
10 padding-top: 78px; | 10 padding-top: 78px; |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
247 .entry-box, | 247 .entry-box, |
248 .site-domain-row { | 248 .site-domain-row { |
249 -webkit-align-items: center; | 249 -webkit-align-items: center; |
250 cursor: default; | 250 cursor: default; |
251 display: -webkit-flex; | 251 display: -webkit-flex; |
252 /* An odd line-height ensures a consistent baseline on all platforms. */ | 252 /* An odd line-height ensures a consistent baseline on all platforms. */ |
253 line-height: 1.75em; | 253 line-height: 1.75em; |
254 margin-bottom: 6px; | 254 margin-bottom: 6px; |
255 /* The box should be no bigger than its parent. */ | 255 /* The box should be no bigger than its parent. */ |
256 max-width: 100%; | 256 max-width: 100%; |
257 min-height: 2em; | |
257 overflow: hidden; | 258 overflow: hidden; |
258 padding-bottom: 1px; | 259 padding-bottom: 1px; |
259 } | 260 } |
260 | 261 |
261 .site-domain-wrapper { | 262 .site-domain-wrapper { |
262 cursor: pointer; | 263 cursor: pointer; |
263 display: -webkit-flex; | 264 display: -webkit-flex; |
264 width: 100%; | 265 width: 100%; |
265 } | 266 } |
266 | 267 |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
502 } | 503 } |
503 | 504 |
504 .entry .starred { | 505 .entry .starred { |
505 visibility: visible; | 506 visibility: visible; |
506 } | 507 } |
507 | 508 |
508 .entry .title > a { | 509 .entry .title > a { |
509 color: rgb(48, 57, 66); | 510 color: rgb(48, 57, 66); |
510 margin: 2px; | 511 margin: 2px; |
511 padding: 2px; | 512 padding: 2px; |
513 <if expr="is_mac"> | |
Evan Stade
2014/09/10 18:38:35
nit: add a comment abuot why the if exprs are nece
Dan Beam
2014/09/10 19:02:08
Done.
| |
514 margin: 4px; | |
515 padding: 0; | |
516 </if> | |
517 <if expr="is_win"> | |
518 padding: 0 2px; | |
519 </if> | |
512 text-decoration: none; | 520 text-decoration: none; |
513 } | 521 } |
514 | 522 |
515 .entry .title > a.to-be-removed { | 523 .entry .title > a.to-be-removed { |
516 text-decoration: line-through; | 524 text-decoration: line-through; |
517 } | 525 } |
518 | 526 |
519 .entry .title > a:hover { | 527 .entry .title > a:hover { |
520 text-decoration: underline; | 528 text-decoration: underline; |
521 } | 529 } |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
613 background-image: url(../../../../ui/webui/resources/images/phone_small.png); | 621 background-image: url(../../../../ui/webui/resources/images/phone_small.png); |
614 background-position: 14px center; | 622 background-position: 14px center; |
615 padding-left: 43px; | 623 padding-left: 43px; |
616 } | 624 } |
617 | 625 |
618 #action-menu[data-devicetype='tablet']::before { | 626 #action-menu[data-devicetype='tablet']::before { |
619 background-image: url(../../../../ui/webui/resources/images/tablet_small.png); | 627 background-image: url(../../../../ui/webui/resources/images/tablet_small.png); |
620 background-position: 17px center; | 628 background-position: 17px center; |
621 padding-left: 49px; | 629 padding-left: 49px; |
622 } | 630 } |
OLD | NEW |