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

Side by Side Diff: appengine/findit/static/common.css

Issue 2074273002: [Findit] Add feedback button for manual triage. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@show-result
Patch Set: Rebase and fix tests. Created 4 years, 5 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
OLDNEW
1 body { 1 body {
2 padding: 5px; 2 padding: 5px;
3 } 3 }
4 4
5 table { 5 table {
6 border-collapse: collapse; 6 border-collapse: collapse;
7 border: 1px solid gray; 7 border: 1px solid gray;
8 } 8 }
9 9
10 table td, table th { 10 table td, table th {
11 padding: 5px; 11 padding: 5px;
12 border: 1px solid gray; 12 border: 1px solid gray;
13 } 13 }
14
15 .triage-area {
16 border-radius: 7px;
17 display: inline-block;
18 }
19
20 .triage, .triaged {
21 display: block;
22 float: left;
23 vertical-align: middle;
24 }
25
26 .triage {
27 background-color: #e5e5e5;
28 cursor: pointer;
29 }
30
31 .triaged {
32 cursor: default;
33 }
34
35 .not-display, .hidden-row {
36 display: none;
37 }
OLDNEW
« no previous file with comments | « appengine/findit/model/triage_status.py ('k') | appengine/findit/templates/crash/fracas_result_feedback.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698