Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* | |
| 2 * Copyright 2017 The Chromium Authors. All rights reserved. | |
| 3 * Use of this source code is governed by a BSD-style license that can be | |
| 4 * found in the LICENSE file. | |
| 5 */ | |
| 6 | |
| 7 .release-note-header { | |
| 8 font-size: 15px; | |
| 9 } | |
| 10 | |
| 11 .release-note-container { | |
| 12 margin: 12px; | |
| 13 display: flex; | |
| 14 flex-direction: row; | |
| 15 flex-wrap: wrap-reverse; | |
| 16 align-content: flex-start; | |
| 17 } | |
| 18 | |
| 19 .release-note-highlight-container { | |
| 20 margin: 12px 0 12px -25px; | |
| 21 line-height: 1.5; | |
| 22 width: 100%; | |
| 23 } | |
| 24 | |
| 25 .release-note-link, .release-note-featured-link { | |
| 26 color: #039be5; | |
| 27 text-decoration: none; | |
| 28 } | |
| 29 | |
| 30 .release-note-link:hover, | |
| 31 .release-note-featured-link:hover, | |
| 32 .image-hover .release-note-featured-link { | |
| 33 text-decoration: underline; | |
| 34 } | |
| 35 | |
| 36 .release-note-image-container { | |
| 37 padding: 0 0 12px 0; | |
|
alph
2017/02/23 00:39:08
do you need the bottom padding?
chenwilliam
2017/02/23 02:31:05
It's used when DevTools width is small and the ima
| |
| 38 } | |
| 39 | |
| 40 .release-note-image { | |
| 41 width: 200px; | |
| 42 } | |
| 43 | |
| 44 .release-note-text-container { | |
| 45 width: 300px; | |
|
alph
2017/02/23 00:39:08
max-width perhaps?
chenwilliam
2017/02/23 02:31:05
Done.
| |
| 46 } | |
| 47 | |
| 48 .close-release-note { | |
| 49 margin-left: 4px; | |
| 50 } | |
| OLD | NEW |