summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/bug_report.css
diff options
context:
space:
mode:
authorrkc@google.com <rkc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-19 17:42:20 +0000
committerrkc@google.com <rkc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-19 17:42:20 +0000
commit74a9f9f48c5832f548368eb8b43933f6b2a10e60 (patch)
tree5067464449bbb6725d8daaec1dc9399eb0866ab2 /chrome/browser/resources/bug_report.css
parent4685af7696690319a792030aafb329169cb93fa2 (diff)
downloadchromium_src-74a9f9f48c5832f548368eb8b43933f6b2a10e60.zip
chromium_src-74a9f9f48c5832f548368eb8b43933f6b2a10e60.tar.gz
chromium_src-74a9f9f48c5832f548368eb8b43933f6b2a10e60.tar.bz2
Checkin for CL: http://codereview.chromium.org/3061044/show
TEST=Backend: Various reports submitted from Chrome OS and Windows builds sent to the feedback test server. For Chromium OS, sent reports with current screenshot and saved screenshots; verified all reports for data accuracy and completion. Frontend: Tested the UI features by excersizing various options; tested not selecting any issue, tested switching between screenshot types. Review URL: http://codereview.chromium.org/3181027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56708 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources/bug_report.css')
-rw-r--r--chrome/browser/resources/bug_report.css99
1 files changed, 99 insertions, 0 deletions
diff --git a/chrome/browser/resources/bug_report.css b/chrome/browser/resources/bug_report.css
new file mode 100644
index 0000000..09230c1
--- /dev/null
+++ b/chrome/browser/resources/bug_report.css
@@ -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;
+}