Remove the old signature of NotificationManager::closePersistent().
[chromium-blink-merge.git] / chrome / browser / resources / chromeos / choose_mobile_network.css
blobe2fb7f17b5c6359c5a06ad9b886d6a49a3d546b6
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 */
6 .scanning-msg {
7 margin-left: 50px;
10 .spinner {
11 -webkit-animation-duration: 2s;
12 -webkit-animation-iteration-count: infinite;
13 -webkit-animation-name: spin;
14 -webkit-animation-timing-function: linear;
15 background-image: -webkit-canvas(spinner-circle);
16 background-position: 50% 50%;
17 background-repeat: no-repeat;
18 float: left;
19 height: 32px;
20 width: 32px;
23 .content-area {
24 height: 120px;
25 overflow: auto;
28 .disabled {
29 opacity: 0.7;
32 @-webkit-keyframes spin {
33 from {
34 -webkit-transform: rotate(0);
36 to {
37 -webkit-transform: rotate(360deg);