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

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

Issue 2719013005: DevTools: improve design of What's New (Closed)
Patch Set: cl fb 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteText.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
index 06b1a7ed42757d00db50a7ce80dd8fb17dab868a..7dbb2309fb35bc4e2a25525ccaffbd5644a5c14a 100644
--- a/third_party/WebKit/Source/devtools/front_end/help/releaseNote.css
+++ b/third_party/WebKit/Source/devtools/front_end/help/releaseNote.css
@@ -4,22 +4,37 @@
* found in the LICENSE file.
*/
-.release-note-header {
- font-size: 15px;
+.release-note-container {
+ display: flex;
+ flex-direction: column;
+ overflow: hidden;
}
-.release-note-container {
- margin: 12px;
+.release-note-update-text {
+ font-weight: bold;
+}
+
+.release-note-content-container {
display: flex;
flex-direction: row;
- flex-wrap: wrap-reverse;
- align-content: flex-start;
+ overflow-x: hidden;
+ overflow-y: auto;
+ padding: 12px 12px 0 12px;
+}
+
+.release-note-text-container {
+ min-width: 220px;
+ max-width: 300px;
+}
+
+.release-note-action-container {
+ padding: 12px;
+ min-height: 48px;
}
.release-note-highlight-container {
- margin: 12px 0 12px -25px;
line-height: 1.5;
- width: 100%;
+ -webkit-padding-start: 16px;
}
.release-note-link, .release-note-featured-link {
@@ -33,19 +48,10 @@
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;
}
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/help/ReleaseNoteText.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698