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

Side by Side Diff: chrome/browser/resources/chromeos/network_menu.css

Issue 588363002: WebUI: Update some more uses of the old-style i18ntemplate/LocalStrings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: IDS_CANCEL change is in a different cl Created 6 years, 3 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
(Empty)
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
3 * found in the LICENSE file.
4 */
5
6 input:invalid {
7 background-color: rgb(255, 102, 102);
8 }
9
10 .left-icon {
11 background-position: 4px top !important;
12 }
13
14 .network-menu-item {
15 width: 100%;
16 }
17
18 .network-label-icon {
19 -webkit-box-align: center;
20 display: -webkit-box;
21 min-height: 24px;
22 }
23
24 .network-label {
25 -webkit-box-flex: 1;
26 }
27
28 .network-icon {
29 background-position: 50% 50%;
30 background-repeat: no-repeat;
31 height: 24px;
32 width: 24px;
33 }
34
35 .network-status {
36 color: grey;
37 }
38
39 .spinner {
40 -webkit-animation-duration: 2s;
41 -webkit-animation-iteration-count: infinite;
42 -webkit-animation-name: spin;
43 -webkit-animation-timing-function: linear;
44 background-image: -webkit-canvas(spinner-circle);
45 }
46
47 @-webkit-keyframes spin {
48 from {
49 -webkit-transform: rotate(0);
50 }
51 to {
52 -webkit-transform: rotate(360deg);
53 }
54 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/mobile_setup_portal.js ('k') | chrome/browser/resources/chromeos/network_menu.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698