214a024e8c
- fix differing pixels count (we weren't always doing this right) - report number of differing pixels, as well as percentage - report worst difference per RGB channel - apply alpha mask to difference image (changed pixels = opaque, unchanged = transparent) - add tooltips with further explanation of pixel diffs (SkipBuildbotRuns) R=mtklein@google.com Review URL: https://codereview.chromium.org/82823005 git-svn-id: http://skia.googlecode.com/svn/trunk@12366 2bbb7eff-a529-9590-31e7-b0007b416f81
37 lines
658 B
CSS
37 lines
658 B
CSS
/* Special alert areas at the top of the page. */
|
|
.todo-div {
|
|
background-color: #bbffbb;
|
|
}
|
|
.warning-div {
|
|
background-color: #ffbb00;
|
|
}
|
|
|
|
/* Tab which has been selected. */
|
|
.tab-true {
|
|
background-color: #ccccff;
|
|
display: inline-block;
|
|
font-size: 20px;
|
|
}
|
|
/* All other tabs. */
|
|
.tab-false {
|
|
background-color: #8888ff;
|
|
display: inline-block;
|
|
font-size: 20px;
|
|
}
|
|
/* Spacers between tabs. */
|
|
.tab-spacer {
|
|
display: inline-block;
|
|
}
|
|
/* The main working area (connected to the selected tab). */
|
|
.tab-main {
|
|
background-color: #ccccff;
|
|
}
|
|
|
|
.update-results-button {
|
|
font-size: 30px;
|
|
}
|
|
|
|
.image-link {
|
|
text-decoration: none;
|
|
}
|