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

Unified 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, 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 side-by-side diff with in-line comments
Download patch
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..06b1a7ed42757d00db50a7ce80dd8fb17dab868a
--- /dev/null
+++ b/third_party/WebKit/Source/devtools/front_end/help/releaseNote.css
@@ -0,0 +1,51 @@
+/*
+ * 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 {
+ /* Bottom padding is used when DevTools width is small and the image wraps */
+ padding: 0 0 12px 0;
+}
+
+.release-note-image {
+ width: 200px;
+}
+
+.release-note-text-container {
+ max-width: 300px;
+}
+
+.close-release-note {
+ margin-left: 4px;
+}

Powered by Google App Engine
This is Rietveld 408576698