File tree 2 files changed +17
-21
lines changed
system/Debug/Toolbar/Views
2 files changed +17
-21
lines changed Original file line number Diff line number Diff line change 202
202
// Give room for OS X scrollbar
203
203
white-space : nowrap ;
204
204
z-index : 10000 ;
205
+ // Endless rotate
206
+ .rotate {
207
+ animation : toolbar- rotate 9s linear infinite ;
208
+ }
209
+ @keyframes toolbar-rotate {
210
+ to {
211
+ transform : rotate (360deg );
212
+ }
213
+ }
205
214
}
206
215
207
216
// Fixed top
501
510
.debug-bar-noverflow {
502
511
overflow : hidden ;
503
512
}
504
-
505
- /* ENDLESS ROTATE */
506
- .rotate {
507
- animation : rotate 9s linear infinite ;
508
- }
509
- @keyframes rotate {
510
- to {
511
- transform : rotate (360deg );
512
- }
513
- }
Original file line number Diff line number Diff line change 140
140
white-space : nowrap;
141
141
z-index : 10000 ;
142
142
}
143
+ # debug-bar .toolbar .rotate {
144
+ animation : toolbar-rotate 9s linear infinite;
145
+ }
146
+ @keyframes toolbar-rotate {
147
+ to {
148
+ transform : rotate (360deg );
149
+ }
150
+ }
143
151
# debug-bar .fixed-top {
144
152
bottom : auto;
145
153
top : 0 ;
796
804
.debug-bar-noverflow {
797
805
overflow : hidden;
798
806
}
799
-
800
- /* ENDLESS ROTATE */
801
- .rotate {
802
- animation : rotate 9s linear infinite;
803
- }
804
-
805
- @keyframes rotate {
806
- to {
807
- transform : rotate (360deg );
808
- }
809
- }
You can’t perform that action at this time.
0 commit comments