Chromium Code Reviews| Index: third_party/WebKit/Source/devtools/front_end/help/releaseNote.css |
| diff --git a/third_party/WebKit/Source/devtools/front_end/help/releaseNote.css b/third_party/WebKit/Source/devtools/front_end/help/releaseNote.css |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2b294cc65e4cdd5cbf0a33ed17693c78f8990430 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/devtools/front_end/help/releaseNote.css |
| @@ -0,0 +1,50 @@ |
| +/* |
| + * Copyright 2017 The Chromium Authors. All rights reserved. |
| + * Use of this source code is governed by a BSD-style license that can be |
| + * found in the LICENSE file. |
| + */ |
| + |
| +.release-note-header { |
| + font-size: 15px; |
| +} |
| + |
| +.release-note-container { |
| + margin: 12px; |
| + display: flex; |
| + flex-direction: row; |
| + flex-wrap: wrap-reverse; |
| + align-content: flex-start; |
| +} |
| + |
| +.release-note-highlight-container { |
| + margin: 12px 0 12px -25px; |
| + line-height: 1.5; |
| + width: 100%; |
| +} |
| + |
| +.release-note-link, .release-note-featured-link { |
| + color: #039be5; |
| + text-decoration: none; |
| +} |
| + |
| +.release-note-link:hover, |
| +.release-note-featured-link:hover, |
| +.image-hover .release-note-featured-link { |
| + text-decoration: underline; |
| +} |
| + |
| +.release-note-image-container { |
| + padding: 0 0 12px 0; |
|
alph
2017/02/23 00:39:08
do you need the bottom padding?
chenwilliam
2017/02/23 02:31:05
It's used when DevTools width is small and the ima
|
| +} |
| + |
| +.release-note-image { |
| + width: 200px; |
| +} |
| + |
| +.release-note-text-container { |
| + width: 300px; |
|
alph
2017/02/23 00:39:08
max-width perhaps?
chenwilliam
2017/02/23 02:31:05
Done.
|
| +} |
| + |
| +.close-release-note { |
| + margin-left: 4px; |
| +} |