blob: d7f7ca8e1ca487bd0bfe562eabc1dec6d163a68a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
.inline-spinner,
.spinner {
background-image: url('chrome://resources/images/spinner.svg');
background-size: 100%;
}
.inline-spinner {
display: inline-block;
height: 16px;
width: 16px;
}
.spinner {
height: 22px;
width: 22px;
}
|