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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 .bug-report-label {
2 text-align: start;
3 vertical-align: text-top;
4 }
5
6 .bug-report-text {
7 width: 40em;
8 resize: none;
9 }
10
11 .bug-report-button {
12 width: 8em;
13 }
14
15 hr {
16 border: none;
17 height: 1px;
18 background: #cccccc;
19 margin-top: 10px;
20 margin-bottom: 10px;
21 width: 33.5em;
22 }
23
24 .thumbnail-list {
25 -webkit-margin-start: 1em;
26 width: 33.5em;
27 display: block;
28 margin-top: 0.5em;
29 margin-bottom: 1em;
30 }
31
32 .image-thumbnail-container {
33 display: inline-block;
34 border: 2px solid white;
35 -webkit-border-radius: 3px;
36 z-index: 0;
37 }
38
39 .image-thumbnail-container-selected {
40 display: inline-block;
41 border: 2px solid green;
42 -webkit-border-radius: 3px;
43 z-index: 0;
44 }
45
46 .image-thumbnail-container:hover {
47 border: 2px solid #B8DAB0;
48 z-index: 0;
49 }
50
51 .image-popup {
52 width: 50%;
53 }
54
55 .image-thumbnail {
56 position: relative;
57 z-index: 1;
58 display: inline-block;
59 padding: 0px;
60 border: 2px solid white;
61 }
62
63 .image-thumbnail:hover {
64 z-index: 2;
65 }
66
67 .image-thumbnail div {
68 display: none;
69 }
70
71 .image-thumbnail img {
72 display: block;
73 width: 75px;
74 }
75
76 .image-thumbnail:hover div {
77 display: block;
78 position: absolute;
79 top: 130%;
80 left:0;
81 padding: 1px;
82 border: 1px dashed blue;
83 background-color: transparent;
84 text-align: center
85 }
86
87 .image-thumbnail:hover div img {
88 position: absolute;
89 width: 400px;
90 }
91
92 th {
93 padding-top: 10px;
94 color: #233478;
95 }
96
97 body {
98 -webkit-user-select: none;
99 }
OLDNEW
« 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