UNPKG

911 BCSSView Raw
1/*-----------------------------------------------------------------------------
2| Copyright (c) Jupyter Development Team.
3| Distributed under the terms of the Modified BSD License.
4|----------------------------------------------------------------------------*/
5
6/**
7 * (DEPRECATED) Support for consuming icons as CSS background images
8 */
9
10.jp-Icon,
11.jp-MaterialIcon {
12 background-position: center;
13 background-repeat: no-repeat;
14 background-size: 16px;
15 min-width: 16px;
16 min-height: 16px;
17}
18
19.jp-Icon-cover {
20 background-position: center;
21 background-repeat: no-repeat;
22 background-size: cover;
23}
24
25/**
26 * (DEPRECATED) Support for specific CSS icon sizes
27 */
28
29.jp-Icon-16 {
30 background-size: 16px;
31 min-width: 16px;
32 min-height: 16px;
33}
34
35.jp-Icon-18 {
36 background-size: 18px;
37 min-width: 18px;
38 min-height: 18px;
39}
40
41.jp-Icon-20 {
42 background-size: 20px;
43 min-width: 20px;
44 min-height: 20px;
45}