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

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

Issue 2881453003: DevTools: update buttons to new style (Closed)
Patch Set: a Created 3 years, 7 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 .release-note-action-container > button:hover {
71 margin: 10px 20px; 71 margin: 10px 0 20px 20px;
72 background: none;
73 border: none;
74 font-weight: 500; 72 font-weight: 500;
75 text-transform: uppercase; 73 text-transform: uppercase;
76 color: #757575; 74 color: #757575;
77 font-size: 13px;
78 }
79
80 .release-note-action-container > button:hover {
81 cursor: pointer; 75 cursor: pointer;
82 color: #666;
83 } 76 }
84 77
85 .release-note-action-container { 78 .release-note-action-container {
86 flex: none; 79 flex: none;
87 } 80 }
88 81
89 .release-note-image { 82 .release-note-image {
90 flex-shrink: 2; 83 flex-shrink: 2;
91 } 84 }
92 85
93 img { 86 img {
94 margin: 20px; 87 margin: 20px;
95 width: 260px; 88 width: 260px;
96 height: 200px; 89 height: 200px;
97 flex: none; 90 flex: none;
98 box-shadow: 0 2px 4px rgba(0, 0, 0, .3); 91 box-shadow: 0 2px 4px rgba(0, 0, 0, .3);
99 } 92 }
100 93
101 img:hover { 94 img:hover {
102 box-shadow: 0 2px 4px rgba(0, 0, 0, .5); 95 box-shadow: 0 2px 4px rgba(0, 0, 0, .5);
103 } 96 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698