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

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

Issue 2766903002: DevTools: make what's new look nice. (Closed)
Patch Set: image added 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 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
index b2109c28cfcc5d645ecc6d9265063949d886d13a..e09c204a6bd9e74ba5a49e0c70397ee8da7d61a2 100644
--- a/third_party/WebKit/Source/devtools/front_end/help/releaseNote.css
+++ b/third_party/WebKit/Source/devtools/front_end/help/releaseNote.css
@@ -4,57 +4,100 @@
* found in the LICENSE file.
*/
+:host {
+}
+
+.hbox {
+ overflow-y: auto;
+ overflow-x: hidden;
+}
+
+.release-note-top-section {
+ color: white;
+ height: 36px;
+ line-height: 36px;
+ padding: 0 15px;
+ font-size: 16px;
+ flex: none;
+ background-color: #3367d6;
+ box-shadow: 0 2px 4px rgba(0,0,0,.28);
+}
+
.release-note-container {
display: flex;
flex-direction: column;
- overflow: hidden;
}
-.release-note-update-text {
- font-weight: bold;
+.release-note-container ul {
+ display: flex;
+ padding: 10px 16px;
+ flex-direction: column;
+ flex: none;
+ margin: 4px 12px 0 2px;
+ max-width: 600px;
}
-.release-note-content-container {
+.release-note-container li {
display: flex;
- flex-direction: row;
- overflow-x: hidden;
- overflow-y: auto;
- padding: 12px 12px 0 12px;
+ flex-direction:column;
+ flex: none;
+ line-height: 24px;
+ font-size: 14px;
}
-.release-note-text-container {
- min-width: 220px;
- max-width: 300px;
+
+.release-note-container li:hover {
+ color: #039be5;
}
-.release-note-action-container {
- padding: 12px;
- min-height: 48px;
+.release-note-title,
+.release-note-subtitle {
+ color: inherit;
+ text-decoration: none;
}
-.release-note-highlight-container {
- line-height: 1.5;
- -webkit-padding-start: 16px;
- -webkit-margin-after: 0;
+.release-note-subtitle {
+ font-size: 13px;
+ line-height: 13px;
+ padding-bottom: 8px;
}
-.release-note-link, .release-note-featured-link {
- color: #039be5;
- text-decoration: none;
+.release-note-container li:not(:hover) .release-note-subtitle {
+ color: #999;
+}
+
+.release-note-action-container > button,
+.release-note-action-container > button:hover {
+ margin: 10px 20px;
+ background: none;
+ border: none;
+ font-weight: 500;
+ text-transform: uppercase;
+ color: #757575;
+ font-size: 13px;
+}
+
+.release-note-action-container > button:hover {
+ cursor: pointer;
+ color: #666;
}
-.release-note-link:hover,
-.release-note-featured-link:hover,
-.image-hover .release-note-featured-link {
- text-decoration: underline;
+.release-note-action-container {
+ flex: none;
}
.release-note-image {
- width: 200px;
- margin-left: 12px;
- border: 1px solid lightgrey;
+ flex-shrink: 2;
+}
+
+img {
+ margin: 20px;
+ width: 260px;
+ height: 200px;
+ flex: none;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, .3);
}
-.close-release-note {
- margin-left: 4px;
+img:hover {
+ box-shadow: 0 2px 4px rgba(0, 0, 0, .5);
}

Powered by Google App Engine
This is Rietveld 408576698