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

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: make test platform independent Created 3 years, 9 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 text-decoration: none;
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 /* Bottom padding is used when DevTools width is small and the image wraps * /
38 padding: 0 0 12px 0;
39 }
40
41 .release-note-image {
42 width: 200px;
43 }
44
45 .release-note-text-container {
46 max-width: 300px;
47 }
48
49 .close-release-note {
50 margin-left: 4px;
51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698