Skip to content

Commit

Permalink
CSS corrections, and other utility fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lonnieezell committed Jun 24, 2023
1 parent 4507ee0 commit 84844cd
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
12 changes: 11 additions & 1 deletion admin/css/debug-toolbar/toolbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
overflow: hidden;
overflow-y: auto;
padding: 0 12px 0 12px;

// Give room for OS X scrollbar
white-space: nowrap;
z-index: 10000;
Expand Down Expand Up @@ -501,3 +501,13 @@
.debug-bar-noverflow {
overflow: hidden;
}

/* ENDLESS ROTATE */
.rotate {
animation: rotate 9s linear infinite;
}
@keyframes rotate {
to {
transform: rotate(360deg);
}
}
1 change: 1 addition & 0 deletions system/Debug/Toolbar/Views/toolbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -807,6 +807,7 @@
.rotate {
animation: rotate 9s linear infinite;
}

@keyframes rotate {
to {
transform: rotate(360deg);
Expand Down
3 changes: 3 additions & 0 deletions system/HotReloader/IteratorFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@

/**
* @internal
*
* @template-extends RecursiveFilterIterator<RecursiveIterator>
* @template-implements RecursiveIterator<RecursiveIterator>
*/
final class IteratorFilter extends RecursiveFilterIterator implements RecursiveIterator
{
Expand Down

0 comments on commit 84844cd

Please sign in to comment.