Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/help/releaseNote.css

Issue 2912563003: DevTools: cleanup button styles (Closed)
Patch Set: ac Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698