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

Unified Diff: tools/skpdiff/viewer_style.css

Issue 1502173003: When was SkPDiff last used? (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/skpdiff/viewer.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/skpdiff/viewer_style.css
diff --git a/tools/skpdiff/viewer_style.css b/tools/skpdiff/viewer_style.css
deleted file mode 100644
index 1e4420fe850ca8dfc1622a1d9f8d136ec0663767..0000000000000000000000000000000000000000
--- a/tools/skpdiff/viewer_style.css
+++ /dev/null
@@ -1,173 +0,0 @@
-body, img, div {
- font-family: Verdana;
- margin: 0;
- padding: 0;
-}
-
-table {
- width: auto;
- border-collapse: collapse;
- border-spacing: 0;
- padding: 8px;
-}
-
-td {
- border-top: 1px solid #DDD;
- padding: 16px;
-}
-thead > tr > td {
- border: none;
-}
-
-button {
- font-family: Verdana;
- font-weight: 900;
-}
-
-input[type="checkbox"] {
- -webkit-appearance: none;
- -moz-appearance: none;
- width: 20px;
- height:20px;
- padding: 2px;
- background: #EEE;
- border-radius: 2px;
- box-shadow: inset 0 0 8px -2px black;
-}
-
-input[type="checkbox"]:checked {
- background: #a9db80;
- background: -webkit-linear-gradient(top, #00b7ea 0%,#009ec3 100%);
-}
-
-input[type="checkbox"]:active {
- background: #a9db80;
- background: -webkit-linear-gradient(top, #009ec3 0%,#00b7ea 100%);
-}
-
-input[type="checkbox"].lastselected {
- padding: 0;
- border: 2px solid #009ec3;
- box-shadow: inset 0 0 8px -2px black, 0 0 6px black;
-}
-
-.commit {
- position: absolute;
- top: 8px;
- right: 8px;
-}
-
-.commit > button {
- border: 1px solid #00687F;
- border-radius: 4px;
- padding: 8px;
- color: white;
- text-shadow: 0 0 4px black;
- box-shadow: 0 0 8px black;
- background: #a9db80;
- background: -webkit-linear-gradient(top, #a9db80 0%,#96c56f 100%);
-}
-
-.commit > button:active {
- background: #96c56f;
- background: -webkit-linear-gradient(top, #96c56f 0%,#a9db80 100%);
-}
-
-.common-name {
- vertical-align: top;
-}
-
-
-.gm-image {
- border: 1px dotted black;
-}
-
-.gm-image:hover {
- border: 1px dashed black;
-}
-
-.selected {
- background: #ffff88;
-}
-
-.left-image {
- float: right;
-}
-
-.right-image {
- text-align: right;
-}
-
-.success-flash {
- -webkit-animation-duration: 0.5s;
- -webkit-animation-name: greenflash;
-}
-
-.failure-flash {
- -webkit-animation-duration: 0.8s;
- -webkit-animation-name: redflash;
-}
-
-@-webkit-keyframes greenflash {
- from {
- background-color: #8F8;
- }
-
- to {
- background-color: #FFF
- }
-}
-
-@-webkit-keyframes redflash {
- from {
- background-color: #F88;
- }
-
- to {
- background-color: #FFF
- }
-}
-
-.result {
- padding: 8px;
- cursor: default;
- -webkit-filter: grayscale(30%)
-}
-
-.result:hover {
- border: 2px dotted #DDD;
- padding: 6px;
- -webkit-filter: grayscale(0)
-}
-
-.result-0 {
- background-color: #268bd2;
-}
-
-.result-1 {
- background-color: #d33682;
-}
-
-.result-2 {
- background-color: #b58900;
-}
-
-.result-3 {
- background-color: #cb4b16;
-}
-
-.result-4 {
- background-color: #6c71c4;
-}
-
-.result-5 {
- background-color: #dc322f;
-}
-
-.result-6 {
- background-color: #2aa198;
-}
-
-.result-7 {
- background-color: #859900;
-}
« 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