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

Side by Side Diff: chrome/browser/resources/supervised_user_internals.css

Issue 2535573002: Reduce usage of webkit CSS prefixes in chrome/browser/resources (Closed)
Patch Set: rebase Created 3 years, 10 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 /* Copyright 2015 The Chromium Authors. All rights reserved. 1 /* Copyright 2015 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 #info { 5 #info {
6 -webkit-column-width: 350px; 6 -webkit-column-width: 350px;
7 } 7 }
8 8
9 #info > div { 9 #info > div {
10 -webkit-column-break-inside: avoid; 10 -webkit-column-break-inside: avoid;
(...skipping 26 matching lines...) Expand all
37 37
38 .section-details .detail, 38 .section-details .detail,
39 .section-details .value { 39 .section-details .value {
40 width: 50%; 40 width: 50%;
41 } 41 }
42 42
43 .section-details tr:nth-child(odd) { 43 .section-details tr:nth-child(odd) {
44 background: rgb(239, 243, 255); 44 background: rgb(239, 243, 255);
45 } 45 }
46 46
47 @-webkit-keyframes highlight1 { 47 @keyframes highlight1 {
48 0% { 48 0% {
49 background: rgb(255, 255, 0); 49 background: rgb(255, 255, 0);
50 } 50 }
51 100% { 51 100% {
52 background: #fff; 52 background: #fff;
53 } 53 }
54 } 54 }
55 55
56 @-webkit-keyframes highlight2 { 56 @keyframes highlight2 {
57 0% { 57 0% {
58 background: rgb(155, 158, 166); 58 background: rgb(155, 158, 166);
59 } 59 }
60 100% { 60 100% {
61 background: rgb(239, 243, 255); 61 background: rgb(239, 243, 255);
62 } 62 }
63 } 63 }
64 64
65 .section-details [highlighted] { 65 .section-details [highlighted] {
66 -webkit-animation-duration: 3s; 66 animation-duration: 3s;
67 -webkit-animation-name: highlight1; 67 animation-name: highlight1;
68 -webkit-animation-timing-function: linear; 68 animation-timing-function: linear;
69 } 69 }
70 70
71 .section-details [highlighted]:nth-child(odd) { 71 .section-details [highlighted]:nth-child(odd) {
72 -webkit-animation-duration: 3s; 72 animation-duration: 3s;
73 -webkit-animation-name: highlight2; 73 animation-name: highlight2;
74 -webkit-animation-timing-function: linear; 74 animation-timing-function: linear;
75 } 75 }
76 76
77 .section-details .uninitialized { 77 .section-details .uninitialized {
78 color: #7f7f7f; 78 color: #7f7f7f;
79 } 79 }
80 80
81 #filtering-results-container { 81 #filtering-results-container {
82 border: 1px solid; 82 border: 1px solid;
83 height: 500px; 83 height: 500px;
84 max-width: 500px; 84 max-width: 500px;
(...skipping 14 matching lines...) Expand all
99 margin: 0.5em; 99 margin: 0.5em;
100 } 100 }
101 101
102 .filtering-results-entry .result { 102 .filtering-results-entry .result {
103 margin: 0.5em; 103 margin: 0.5em;
104 } 104 }
105 105
106 .filtering-results-entry .reason { 106 .filtering-results-entry .reason {
107 margin: 0.5em; 107 margin: 0.5em;
108 } 108 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698