| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2017 The Chromium Authors. All rights reserved. | 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 | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 .release-note-header { | 7 .release-note-container { |
| 8 font-size: 15px; | 8 display: flex; |
| 9 flex-direction: column; |
| 10 overflow: hidden; |
| 9 } | 11 } |
| 10 | 12 |
| 11 .release-note-container { | 13 .release-note-update-text { |
| 12 margin: 12px; | 14 font-weight: bold; |
| 15 } |
| 16 |
| 17 .release-note-content-container { |
| 13 display: flex; | 18 display: flex; |
| 14 flex-direction: row; | 19 flex-direction: row; |
| 15 flex-wrap: wrap-reverse; | 20 overflow-x: hidden; |
| 16 align-content: flex-start; | 21 overflow-y: auto; |
| 22 padding: 12px 12px 0 12px; |
| 23 } |
| 24 |
| 25 .release-note-text-container { |
| 26 min-width: 220px; |
| 27 max-width: 300px; |
| 28 } |
| 29 |
| 30 .release-note-action-container { |
| 31 padding: 12px; |
| 32 min-height: 48px; |
| 17 } | 33 } |
| 18 | 34 |
| 19 .release-note-highlight-container { | 35 .release-note-highlight-container { |
| 20 margin: 12px 0 12px -25px; | |
| 21 line-height: 1.5; | 36 line-height: 1.5; |
| 22 width: 100%; | 37 -webkit-padding-start: 16px; |
| 23 } | 38 } |
| 24 | 39 |
| 25 .release-note-link, .release-note-featured-link { | 40 .release-note-link, .release-note-featured-link { |
| 26 color: #039be5; | 41 color: #039be5; |
| 27 text-decoration: none; | 42 text-decoration: none; |
| 28 } | 43 } |
| 29 | 44 |
| 30 .release-note-link:hover, | 45 .release-note-link:hover, |
| 31 .release-note-featured-link:hover, | 46 .release-note-featured-link:hover, |
| 32 .image-hover .release-note-featured-link { | 47 .image-hover .release-note-featured-link { |
| 33 text-decoration: underline; | 48 text-decoration: underline; |
| 34 } | 49 } |
| 35 | 50 |
| 36 .release-note-image-container { | |
| 37 /* Bottom padding is used when DevTools width is small and the image wraps *
/ | |
| 38 padding: 0 0 12px 0; | |
| 39 } | |
| 40 | |
| 41 .release-note-image { | 51 .release-note-image { |
| 42 width: 200px; | 52 width: 200px; |
| 43 } | 53 } |
| 44 | 54 |
| 45 .release-note-text-container { | |
| 46 max-width: 300px; | |
| 47 } | |
| 48 | |
| 49 .close-release-note { | 55 .close-release-note { |
| 50 margin-left: 4px; | 56 margin-left: 4px; |
| 51 } | 57 } |
| OLD | NEW |