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

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

Issue 27512002: Update skpdiff to include a name with each file. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 2 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 | « tools/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: auto;
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: 16px;
17 } 17 }
18 thead > tr > td { 18 thead > tr > td {
19 border: none; 19 border: none;
20 } 20 }
21 21
22 button { 22 button {
23 font-family: Verdana; 23 font-family: Verdana;
24 font-weight: 900; 24 font-weight: 900;
25 } 25 }
26 26
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 box-shadow: 0 0 8px black; 66 box-shadow: 0 0 8px black;
67 background: #a9db80; 67 background: #a9db80;
68 background: -webkit-linear-gradient(top, #a9db80 0%,#96c56f 100%); 68 background: -webkit-linear-gradient(top, #a9db80 0%,#96c56f 100%);
69 } 69 }
70 70
71 .commit > button:active { 71 .commit > button:active {
72 background: #96c56f; 72 background: #96c56f;
73 background: -webkit-linear-gradient(top, #96c56f 0%,#a9db80 100%); 73 background: -webkit-linear-gradient(top, #96c56f 0%,#a9db80 100%);
74 } 74 }
75 75
76 .common-name {
77 vertical-align: top;
78 }
79
80
76 .gm-image { 81 .gm-image {
77 border: 1px dotted black; 82 border: 1px dotted black;
78 } 83 }
79 84
80 .gm-image:hover { 85 .gm-image:hover {
81 border: 1px dashed black; 86 border: 1px dashed black;
82 } 87 }
83 88
84 .selected { 89 .selected {
85 background: #ffff88; 90 background: #ffff88;
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 background-color: #dc322f; 164 background-color: #dc322f;
160 } 165 }
161 166
162 .result-6 { 167 .result-6 {
163 background-color: #2aa198; 168 background-color: #2aa198;
164 } 169 }
165 170
166 .result-7 { 171 .result-7 {
167 background-color: #859900; 172 background-color: #859900;
168 } 173 }
OLDNEW
« no previous file with comments | « tools/skpdiff/viewer.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698