UNPKG

1.86 kBCSSView Raw
1/********************************************************************************
2 * Copyright (C) 2019 TypeFox and others.
3 *
4 * This program and the accompanying materials are made available under the
5 * terms of the Eclipse Public License v. 2.0 which is available at
6 * http://www.eclipse.org/legal/epl-2.0.
7 *
8 * This Source Code may also be made available under the following Secondary
9 * Licenses when the conditions for such availability set forth in the Eclipse
10 * Public License v. 2.0 are satisfied: GNU General Public License, version 2
11 * with the GNU Classpath Exception which is available at
12 * https://www.gnu.org/software/classpath/license.html.
13 *
14 * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
15 ********************************************************************************/
16
17.theia-open-change-icon {
18 width: var(--theia-icon-size);
19 height: var(--theia-icon-size);
20 background: var(--theia-icon-open-change) no-repeat;
21}
22
23.theia-open-file-icon {
24 width: var(--theia-icon-size);
25 height: var(--theia-icon-size);
26 background: var(--theia-icon-open-file) no-repeat;
27}
28
29.theia-open-preview-icon {
30 width: var(--theia-icon-size);
31 height: var(--theia-icon-size);
32 background: var(--theia-icon-preview) no-repeat;
33}
34
35.theia-open-json-icon {
36 width: var(--theia-icon-size);
37 height: var(--theia-icon-size);
38 background: var(--theia-icon-open-json) no-repeat;
39}
40
41.theia-collapse-all-icon {
42 background: var(--theia-icon-collapse-all) center center no-repeat;
43}
44
45.theia-remove-all-icon {
46 background: var(--theia-icon-remove-all) center center no-repeat;
47}
48
49.theia-add-icon {
50 background: var(--theia-icon-add) center center no-repeat;
51}
52
53@keyframes theia-spin {
54 100% {
55 transform:rotate(360deg);
56 }
57}
58
59.theia-animation-spin {
60 animation: theia-spin 1.5s linear infinite;
61}