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

Unified Diff: chrome/browser/resources/bug_report.css

Issue 3061044: HTML UI implementation for the Google Feedback client for Chrome/ChromeOS.... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 10 years, 4 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 | « chrome/browser/dom_ui/dom_ui_screenshot_source.cc ('k') | chrome/browser/resources/bug_report.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/bug_report.css
===================================================================
--- chrome/browser/resources/bug_report.css (revision 0)
+++ chrome/browser/resources/bug_report.css (revision 0)
@@ -0,0 +1,99 @@
+.bug-report-label {
+ text-align: start;
+ vertical-align: text-top;
+}
+
+.bug-report-text {
+ width: 40em;
+ resize: none;
+}
+
+.bug-report-button {
+ width: 8em;
+}
+
+hr {
+ border: none;
+ height: 1px;
+ background: #cccccc;
+ margin-top: 10px;
+ margin-bottom: 10px;
+ width: 33.5em;
+}
+
+.thumbnail-list {
+ -webkit-margin-start: 1em;
+ width: 33.5em;
+ display: block;
+ margin-top: 0.5em;
+ margin-bottom: 1em;
+}
+
+.image-thumbnail-container {
+ display: inline-block;
+ border: 2px solid white;
+ -webkit-border-radius: 3px;
+ z-index: 0;
+}
+
+.image-thumbnail-container-selected {
+ display: inline-block;
+ border: 2px solid green;
+ -webkit-border-radius: 3px;
+ z-index: 0;
+}
+
+.image-thumbnail-container:hover {
+ border: 2px solid #B8DAB0;
+ z-index: 0;
+}
+
+.image-popup {
+ width: 50%;
+}
+
+.image-thumbnail {
+ position: relative;
+ z-index: 1;
+ display: inline-block;
+ padding: 0px;
+ border: 2px solid white;
+}
+
+.image-thumbnail:hover {
+ z-index: 2;
+}
+
+.image-thumbnail div {
+ display: none;
+}
+
+.image-thumbnail img {
+ display: block;
+ width: 75px;
+}
+
+.image-thumbnail:hover div {
+ display: block;
+ position: absolute;
+ top: 130%;
+ left:0;
+ padding: 1px;
+ border: 1px dashed blue;
+ background-color: transparent;
+ text-align: center
+}
+
+.image-thumbnail:hover div img {
+ position: absolute;
+ width: 400px;
+}
+
+th {
+ padding-top: 10px;
+ color: #233478;
+}
+
+body {
+ -webkit-user-select: none;
+}
« no previous file with comments | « chrome/browser/dom_ui/dom_ui_screenshot_source.cc ('k') | chrome/browser/resources/bug_report.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698