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

Side by Side Diff: chrome/browser/resources/bug_report.css

Issue 9006003: Refactor and fix feedback (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 2011 -> 2012 Created 8 years, 11 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
« no previous file with comments | « chrome/browser/feedback/proto/web.proto ('k') | chrome/browser/resources/bug_report.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 .bug-report-label {
2 text-align: start;
3 vertical-align: text-top;
4 font-weight: 300;
5 }
6
7 .bug-report-text {
8 width: 40em;
9 }
10
11 .bug-report-dropdown {
12 width: 15em;
13 }
14
15 .bug-report-table {
16 width: 40em;
17 border-spacing: 0px;
18 }
19
20 .bug-report-field {
21 width: 22em;
22 border-style: solid;
23 border-width: 1px;
24 }
25
26 .bug-report-fieldlabel {
27 width: 13em;
28 font-weight: 300;
29 }
30
31 .bug-report-button {
32
33 }
34
35 hr {
36 border: none;
37 height: 1px;
38 background: #cccccc;
39 margin-top: 10px;
40 margin-bottom: 10px;
41 width: 40em;
42 }
43
44 .thumbnail-list {
45 -webkit-margin-start: 1em;
46 width: 33.5em;
47 display: block;
48 margin-top: 0.5em;
49 margin-bottom: 1em;
50 }
51
52 .image-thumbnail-container {
53 display: inline-block;
54 border: 2px solid white;
55 border-radius: 3px;
56 z-index: 0;
57 }
58
59 .image-thumbnail-container-selected {
60 display: inline-block;
61 border: 2px solid green;
62 border-radius: 3px;
63 z-index: 0;
64 }
65
66 .image-thumbnail-container:hover {
67 border: 2px solid #B8DAB0;
68 z-index: 0;
69 }
70
71 .image-popup {
72 width: 50%;
73 }
74
75 .image-thumbnail {
76 position: relative;
77 z-index: 1;
78 display: inline-block;
79 padding: 0px;
80 border: 2px solid white;
81 }
82
83 .image-thumbnail:hover {
84 z-index: 2;
85 }
86
87 .image-thumbnail div {
88 display: none;
89 }
90
91 .image-thumbnail img {
92 display: block;
93 width: 200px;
94 }
95
96 .image-thumbnail:hover div {
97 display: block;
98 position: absolute;
99 top: 130%;
100 left: 0;
101 padding: 1px;
102 border: 1px dashed blue;
103 background-color: transparent;
104 text-align: center
105 }
106
107 .image-thumbnail:hover div img {
108 position: absolute;
109 width: 400px;
110 }
111
112 .image-thumbnail-current {
113 position: relative;
114 z-index: 1;
115 display: inline-block;
116 padding: 0px;
117 border: 2px solid white;
118 }
119
120 .image-thumbnail-current:hover {
121 z-index: 2;
122 }
123
124 .image-thumbnail-current div {
125 display: none;
126 }
127
128 .image-thumbnail-current img {
129 display: block;
130 width: 200px;
131 }
132
133 .image-thumbnail-current:hover div {
134 display: block;
135 position: absolute;
136 top: 130%;
137 left: 0;
138 padding: 1px;
139 border: 1px dashed blue;
140 background-color: transparent;
141 text-align: center
142 }
143
144 .image-thumbnail-current:hover div img {
145 position: absolute;
146 width: 400px;
147 padding: 2px;
148 border: 1px dashed blue;
149 }
150
151 th {
152 padding-top: 10px;
153 font-weight: normal;
154 }
155
156 .formpane {
157 margin-right: 20px;
158 }
159
160 .bug-report-input {
161 border-style: solid;
162 border-width: 1px;
163 }
164
165 #user-email-text {
166 border: none;
167 }
168
169 #buttons-pane {
170 padding: 0px 0px;
171 }
172
173 #privacy-note {
174 -webkit-padding-start: 24px;
175 -webkit-padding-end: 24px;
176 padding-top: 24px;
177 padding-bottom: 34px;
178 text-align: start;
179 font-size: 70%;
180 font-weight: normal;
181 color: #53627d;
182 margin: 0;
183 width: 47em;
184 }
OLDNEW
« no previous file with comments | « chrome/browser/feedback/proto/web.proto ('k') | chrome/browser/resources/bug_report.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698