| 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 :host { | 7 :host { |
| 8 } | 8 } |
| 9 | 9 |
| 10 .hbox { | 10 .hbox { |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 .release-note-subtitle { | 59 .release-note-subtitle { |
| 60 font-size: 13px; | 60 font-size: 13px; |
| 61 line-height: 13px; | 61 line-height: 13px; |
| 62 padding-bottom: 8px; | 62 padding-bottom: 8px; |
| 63 } | 63 } |
| 64 | 64 |
| 65 .release-note-container li:not(:hover) .release-note-subtitle { | 65 .release-note-container li:not(:hover) .release-note-subtitle { |
| 66 color: #999; | 66 color: #999; |
| 67 } | 67 } |
| 68 | 68 |
| 69 .release-note-action-container > button, | 69 .release-note-action-container > button { |
| 70 .release-note-action-container > button:hover { | 70 margin: 10px 0 20px 20px; |
| 71 margin: 10px 20px; | |
| 72 background: none; | |
| 73 border: none; | |
| 74 font-weight: 500; | |
| 75 text-transform: uppercase; | |
| 76 color: #757575; | 71 color: #757575; |
| 77 font-size: 13px; | |
| 78 box-shadow: none; | |
| 79 } | |
| 80 | |
| 81 .release-note-action-container > button:hover { | |
| 82 cursor: pointer; | |
| 83 color: #666; | |
| 84 } | 72 } |
| 85 | 73 |
| 86 .release-note-action-container { | 74 .release-note-action-container { |
| 87 flex: none; | 75 flex: none; |
| 88 } | 76 } |
| 89 | 77 |
| 90 .release-note-image { | 78 .release-note-image { |
| 91 flex-shrink: 2; | 79 flex-shrink: 2; |
| 92 } | 80 } |
| 93 | 81 |
| 94 img { | 82 img { |
| 95 margin: 20px; | 83 margin: 20px; |
| 96 width: 260px; | 84 width: 260px; |
| 97 height: 200px; | 85 height: 200px; |
| 98 flex: none; | 86 flex: none; |
| 99 box-shadow: 0 2px 4px rgba(0, 0, 0, .3); | 87 box-shadow: 0 2px 4px rgba(0, 0, 0, .3); |
| 100 } | 88 } |
| 101 | 89 |
| 102 img:hover { | 90 img:hover { |
| 103 box-shadow: 0 2px 4px rgba(0, 0, 0, .5); | 91 box-shadow: 0 2px 4px rgba(0, 0, 0, .5); |
| 104 } | 92 } |
| OLD | NEW |