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

Side by Side Diff: chrome/browser/resources/options/chromeos/internet_detail.css

Issue 2691883002: Uprefix CSS transitions in ui/ and chrome/ styles (Closed)
Patch Set: transitions only 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 /* Force tab strip to extend to the left and right edges of the window. */ 5 /* Force tab strip to extend to the left and right edges of the window. */
6 #internet-details-content-area { 6 #internet-details-content-area {
7 -webkit-box-orient: vertical; 7 -webkit-box-orient: vertical;
8 display: -webkit-box; 8 display: -webkit-box;
9 padding: 6px 0 0 0; 9 padding: 6px 0 0 0;
10 } 10 }
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 border-top: 1px solid #eee; 95 border-top: 1px solid #eee;
96 padding-top: 8px; 96 padding-top: 8px;
97 } 97 }
98 98
99 #user-dns-settings:not([selected]) { 99 #user-dns-settings:not([selected]) {
100 display: none; 100 display: none;
101 } 101 }
102 102
103 .dns-display { 103 .dns-display {
104 -webkit-margin-start: 24px; 104 -webkit-margin-start: 24px;
105 -webkit-transition: opacity 150ms ease-in-out;
106 color: #bbb; 105 color: #bbb;
107 font-style: italic; 106 font-style: italic;
107 transition: opacity 150ms ease-in-out;
108 } 108 }
109 109
110 .dns-display:not([selected]) { 110 .dns-display:not([selected]) {
111 -webkit-transition: opacity 150ms ease-in-out;
112 display: none; 111 display: none;
112 transition: opacity 150ms ease-in-out;
113 } 113 }
114 114
115 .proxy-subsection { 115 .proxy-subsection {
116 padding-left: 24px; 116 padding-left: 24px;
117 } 117 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/chromeos/change_picture_options.js ('k') | chrome/browser/resources/options/cookies_view.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698