Chromium Code Reviews| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 68 | 68 |
| 69 .release-note-action-container > button, | 69 .release-note-action-container > button, |
| 70 .release-note-action-container > button:hover { | 70 .release-note-action-container > button:hover { |
| 71 margin: 10px 20px; | 71 margin: 10px 20px; |
| 72 background: none; | 72 background: none; |
| 73 border: none; | 73 border: none; |
| 74 font-weight: 500; | 74 font-weight: 500; |
| 75 text-transform: uppercase; | 75 text-transform: uppercase; |
| 76 color: #757575; | 76 color: #757575; |
| 77 font-size: 13px; | 77 font-size: 13px; |
| 78 box-shadow: none; | |
|
luoe
2017/05/30 22:39:45
I realized that converting these buttons to UI.cre
pfeldman
2017/05/31 21:40:36
Is there anything we need to do on the branch?
luoe
2017/05/31 21:42:49
Nope! I haven't landed any other harmony/cleanup-
| |
| 78 } | 79 } |
| 79 | 80 |
| 80 .release-note-action-container > button:hover { | 81 .release-note-action-container > button:hover { |
| 81 cursor: pointer; | 82 cursor: pointer; |
| 82 color: #666; | 83 color: #666; |
| 83 } | 84 } |
| 84 | 85 |
| 85 .release-note-action-container { | 86 .release-note-action-container { |
| 86 flex: none; | 87 flex: none; |
| 87 } | 88 } |
| 88 | 89 |
| 89 .release-note-image { | 90 .release-note-image { |
| 90 flex-shrink: 2; | 91 flex-shrink: 2; |
| 91 } | 92 } |
| 92 | 93 |
| 93 img { | 94 img { |
| 94 margin: 20px; | 95 margin: 20px; |
| 95 width: 260px; | 96 width: 260px; |
| 96 height: 200px; | 97 height: 200px; |
| 97 flex: none; | 98 flex: none; |
| 98 box-shadow: 0 2px 4px rgba(0, 0, 0, .3); | 99 box-shadow: 0 2px 4px rgba(0, 0, 0, .3); |
| 99 } | 100 } |
| 100 | 101 |
| 101 img:hover { | 102 img:hover { |
| 102 box-shadow: 0 2px 4px rgba(0, 0, 0, .5); | 103 box-shadow: 0 2px 4px rgba(0, 0, 0, .5); |
| 103 } | 104 } |
| OLD | NEW |