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

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

Issue 2535573002: Reduce usage of webkit CSS prefixes in chrome/browser/resources (Closed)
Patch Set: CSSOM Created 4 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 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 body { 5 body {
6 margin: 10px; 6 margin: 10px;
7 min-width: 47em; 7 min-width: 47em;
8 } 8 }
9 9
10 a { 10 a {
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 .show-in-tmi-mode { 92 .show-in-tmi-mode {
93 overflow: hidden; 93 overflow: hidden;
94 } 94 }
95 95
96 body.hide-tmi-mode-initial .show-in-tmi-mode { 96 body.hide-tmi-mode-initial .show-in-tmi-mode {
97 height: 0 !important; 97 height: 0 !important;
98 opacity: 0; 98 opacity: 0;
99 } 99 }
100 100
101 body.hide-tmi-mode .show-in-tmi-mode { 101 body.hide-tmi-mode .show-in-tmi-mode {
102 -webkit-transition: all 100ms ease-out;
103 height: 0 !important; 102 height: 0 !important;
104 opacity: 0; 103 opacity: 0;
104 transition: all 100ms ease-out;
105 } 105 }
106 106
107 body.show-tmi-mode-initial .show-in-tmi-mode { 107 body.show-tmi-mode-initial .show-in-tmi-mode {
108 opacity: 1; 108 opacity: 1;
109 } 109 }
110 110
111 body.show-tmi-mode .show-in-tmi-mode { 111 body.show-tmi-mode .show-in-tmi-mode {
112 -webkit-transition: all 100ms ease-in;
113 opacity: 1; 112 opacity: 1;
113 transition: all 100ms ease-in;
114 } 114 }
115 115
116 .wbox-tmi-mode { 116 .wbox-tmi-mode {
117 -webkit-box-align: stretch; 117 -webkit-box-align: stretch;
118 -webkit-box-flex: 1; 118 -webkit-box-flex: 1;
119 } 119 }
120 120
121 .tmi-mode-image { 121 .tmi-mode-image {
122 margin-top: 2px; 122 margin-top: 2px;
123 padding-left: 5px; 123 padding-left: 5px;
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 /* Match the indentation of .plugin-text. */ 225 /* Match the indentation of .plugin-text. */
226 .plugin-actions { 226 .plugin-actions {
227 -webkit-padding-start: 5px; 227 -webkit-padding-start: 5px;
228 margin-bottom: 0.2em; 228 margin-bottom: 0.2em;
229 margin-top: 0.2em; 229 margin-top: 0.2em;
230 } 230 }
231 231
232 button { 232 button {
233 font-size: 104%; 233 font-size: 104%;
234 } 234 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698