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

Side by Side Diff: chrome/browser/resources/print_preview/search/destination_search.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 (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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 #destination-search { 5 #destination-search {
6 z-index: 3; 6 z-index: 3;
7 } 7 }
8 8
9 #destination-search.transparent { 9 #destination-search.transparent {
10 opacity: 0; 10 opacity: 0;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 #destination-search .lists > * { 62 #destination-search .lists > * {
63 -webkit-user-select: none; 63 -webkit-user-select: none;
64 padding: 0 14px 18px; 64 padding: 0 14px 18px;
65 } 65 }
66 66
67 #destination-search .lists > :last-child { 67 #destination-search .lists > :last-child {
68 padding-bottom: 0; 68 padding-bottom: 0;
69 } 69 }
70 70
71 #destination-search .invitation-container { 71 #destination-search .invitation-container {
72 -webkit-animation: invitation-fadein 500ms;
73 -webkit-box-align: center; 72 -webkit-box-align: center;
74 -webkit-box-orient: vertical; 73 -webkit-box-orient: vertical;
74 animation: invitation-fadein 500ms;
75 } 75 }
76 76
77 @-webkit-keyframes invitation-fadein { 77 @keyframes invitation-fadein {
78 from { 78 from {
79 opacity: 0; 79 opacity: 0;
80 } 80 }
81 to { 81 to {
82 opacity: 1; 82 opacity: 1;
83 } 83 }
84 } 84 }
85 85
86 #destination-search .invitation-text { 86 #destination-search .invitation-text {
87 padding-bottom: 12px; 87 padding-bottom: 12px;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 background-image: -webkit-image-set( 136 background-image: -webkit-image-set(
137 url(chrome://theme/IDR_CLOSE_DIALOG_H) 1x, 137 url(chrome://theme/IDR_CLOSE_DIALOG_H) 1x,
138 url(chrome://theme/IDR_CLOSE_DIALOG_H@2x) 2x); 138 url(chrome://theme/IDR_CLOSE_DIALOG_H@2x) 2x);
139 } 139 }
140 140
141 #destination-search .cloudprint-promo .close-button:active { 141 #destination-search .cloudprint-promo .close-button:active {
142 background-image: -webkit-image-set( 142 background-image: -webkit-image-set(
143 url(chrome://theme/IDR_CLOSE_DIALOG_P) 1x, 143 url(chrome://theme/IDR_CLOSE_DIALOG_P) 1x,
144 url(chrome://theme/IDR_CLOSE_DIALOG_P@2x) 2x); 144 url(chrome://theme/IDR_CLOSE_DIALOG_P@2x) 2x);
145 } 145 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698