Skip to content

Commit ff2b8ca

Browse files
authored
Merge pull request #33708 from nextcloud/enh/guest-scss
Move guest.css to scss
2 parents 5c4b4bd + d8ff113 commit ff2b8ca

File tree

6 files changed

+1526
-482
lines changed

6 files changed

+1526
-482
lines changed

core/css/animations.css

Lines changed: 43 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/css/animations.css.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/css/animations.scss

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
/*!
2+
* @copyright Copyright (c) 2022 Julius Härtl <[email protected]>
3+
*
4+
* @author Julius Härtl <[email protected]>
5+
*
6+
* @license GNU AGPL version 3 or any later version
7+
*
8+
* This program is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU Affero General Public License as
10+
* published by the Free Software Foundation, either version 3 of the
11+
* License, or (at your option) any later version.
12+
*
13+
* This program is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
* GNU Affero General Public License for more details.
17+
*
18+
* You should have received a copy of the GNU Affero General Public License
19+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
20+
*/
21+
22+
@-webkit-keyframes rotate {
23+
from {
24+
-webkit-transform: rotate(0deg);
25+
transform: rotate(0deg);
26+
}
27+
to {
28+
-webkit-transform: rotate(360deg);
29+
transform: rotate(360deg);
30+
}
31+
}
32+
@keyframes rotate {
33+
from {
34+
-webkit-transform: rotate(0deg);
35+
transform: rotate(0deg);
36+
}
37+
to {
38+
-webkit-transform: rotate(360deg);
39+
transform: rotate(360deg);
40+
}
41+
}

0 commit comments

Comments
 (0)