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

Side by Side Diff: experimental/skpdiff/viewer_style.css

Issue 18925004: modularize the display of diffs for skpdiff (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: swapimg -> swapImg Created 7 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 | Annotate | Revision Log
« no previous file with comments | « experimental/skpdiff/viewer.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 body, img, div { 1 body, img, div {
2 font-family: Verdana; 2 font-family: Verdana;
3 margin: 0; 3 margin: 0;
4 padding: 0; 4 padding: 0;
5 } 5 }
6 6
7 table { 7 table {
8 width:100%; 8 width:100%;
9 border-collapse: collapse; 9 border-collapse: collapse;
10 border-spacing: 0; 10 border-spacing: 0;
11 padding: 8px; 11 padding: 8px;
12 } 12 }
13 13
14 td { 14 td {
15 border-top: 1px solid #DDD; 15 border-top: 1px solid #DDD;
16 padding: 8px; 16 padding: 8px;
17 } 17 }
18 thead > tr > td { 18 thead > tr > td {
19 border: none; 19 border: none;
20 } 20 }
21 21
22 .gm-image { 22 .gm-image {
23 width:300px; 23 border: 1px dotted black;
24 } 24 }
25 25
26 .baseline-image { 26 .gm-image:hover {
27 border: 1px dashed black;
28 }
29
30 .left-image {
27 float: right; 31 float: right;
28 } 32 }
29 33
30 .test-image { 34 .right-image {
31 text-align: right; 35 text-align: right;
32 } 36 }
33 37
34 .result { 38 .result {
35 padding: 8px; 39 padding: 8px;
36 cursor: default; 40 cursor: default;
37 opacity: 0.7; 41 opacity: 0.7;
38 } 42 }
39 43
40 .result:hover { 44 .result:hover {
(...skipping 26 matching lines...) Expand all
67 background-color: #dc322f; 71 background-color: #dc322f;
68 } 72 }
69 73
70 .result-6 { 74 .result-6 {
71 background-color: #2aa198; 75 background-color: #2aa198;
72 } 76 }
73 77
74 .result-7 { 78 .result-7 {
75 background-color: #859900; 79 background-color: #859900;
76 } 80 }
OLDNEW
« no previous file with comments | « experimental/skpdiff/viewer.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698