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

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

Issue 2649023007: DevTools: implement release note behind an experiment (Closed)
Patch Set: finalize Created 3 years, 10 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
(Empty)
1 /*
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
4 * found in the LICENSE file.
5 */
6
7 .release-note-header {
8 font-size: 15px;
9 }
10
11 .release-note-container {
12 margin: 12px;
13 display: flex;
14 flex-direction: row;
15 flex-wrap: wrap-reverse;
16 align-content: flex-start;
17 }
18
19 .release-note-highlight-container {
20 margin: 12px 0 12px -25px;
21 line-height: 1.5;
22 width: 100%;
23 }
24
25 .release-note-link, .release-note-featured-link {
26 color: #039be5;
27 cursor: pointer;
28 }
29
30 .release-note-link:hover,
31 .release-note-featured-link:hover,
32 .image-hover .release-note-featured-link {
33 text-decoration: underline;
34 }
35
36 .release-note-image-container {
37 cursor: pointer;
38 padding: 0 0 12px 0;
39 }
40
41 .release-note-image {
42 width: 200px;
43 }
44
45 .release-note-text-container {
46 width: 300px;
47 }
48
49 .close-release-note {
50 margin-left: 4px;
51 }
52
53 /* Buttons and dropdowns */
54 .dth-button {
55 -webkit-appearance: none;
56 box-sizing: border-box;
57 outline: 0;
58 height: 24px;
59 font-family: ".SFNSDisplay-Regular", "Segoe UI", "Oxygen", "Ubuntu", "Cantar ell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
60 font-size: 12px;
61 line-height: 16px;
62 border: 1px solid;
63 border-radius: 2px;
64 padding: 3px 12px;
65 font-weight: 600;
66 color: #333;
67 background-color: #fff;
68 border-color: rgba(0, 0, 0, 0.2);
69 }
70
71 .dth-button:hover, .dth-button:focus, .dth-button:active {
72 background-color: #fafafa;
73 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
74 }
75
76 .dth-button:active {
77 background-color: #f2f2f2;
78 }
79
80 .dth-button:focus {
81 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(66, 133, 244, 0.4);
82 }
83
84 .dth-button.is-primary {
85 background-color: #4285F4;
86 border: 0;
87 color: #fff;
88 }
89
90 .dth-button.is-primary:hover, .dth-button.is-primary:focus {
91 background-color: #3B78E7;
92 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698