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

Side by Side Diff: chrome/browser/resources/chromeos/login/network_dropdown.css

Issue 2231143002: Cleanup: fix some CSS comment styles (especially copyrights) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: michaelpg@ review Created 4 years, 4 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 * This is the stylesheet used by the network drop-down control. 5 * This is the stylesheet used by the network drop-down control. */
6 */
7 6
8 .dropdown-title { 7 .dropdown-title {
9 -webkit-appearance: none; 8 -webkit-appearance: none;
10 -webkit-box-align: start; 9 -webkit-box-align: start;
11 -webkit-padding-end: 20px; 10 -webkit-padding-end: 20px;
12 -webkit-padding-start: 1px; 11 -webkit-padding-start: 1px;
13 -webkit-user-select: none; 12 -webkit-user-select: none;
14 background-image: url(../../../../../ui/webui/resources/images/select.png), 13 background-image: url(../../../../../ui/webui/resources/images/select.png),
15 linear-gradient(to bottom, 14 linear-gradient(to bottom,
16 rgb(237, 237, 237), 15 rgb(237, 237, 237),
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 } 136 }
138 137
139 .dropdown-overlay { 138 .dropdown-overlay {
140 bottom: 0; 139 bottom: 0;
141 left: 0; 140 left: 0;
142 position: fixed; 141 position: fixed;
143 right: 0; 142 right: 0;
144 top: 0; 143 top: 0;
145 z-index: 5; 144 z-index: 5;
146 } 145 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698