Skip to content

Commit

Permalink
Change spinner to gear
Browse files Browse the repository at this point in the history
  • Loading branch information
jcraigk committed Oct 23, 2023
1 parent 3f6a1ce commit 1a5d443
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
27 changes: 13 additions & 14 deletions app/javascript/packs/application.css.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,6 @@ $highlight3: #cbebf2;
$highlight4: #fff494;
$scrubbing: #1a80f6;

@keyframes rotateCounterClockwise {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.spinner {
animation: rotateCounterClockwise 3s linear infinite;
font-size: 7em;
}

@keyframes pulsate-highlight {
0% { background: $background_gray; }
100% { background: $highlight4; }
Expand All @@ -61,7 +48,19 @@ $scrubbing: #1a80f6;
0% { box-shadow: 0 0 5px $highlight1; }
100% { box-shadow: 0 0 35px $highlight1; }
}

@keyframes rotateClockwise {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.spinner {
animation: rotateClockwise 3s linear infinite;
font-size: 7em;
color: $gray_70;
}
.ui-tooltip {
font-family: 'Open Sans Condensed', sans-serif;
background: $gray_70;
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/_ajax_loading.html.slim
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#ajax_loading
span.spinner.glyphicon.glyphicon-refresh aria-hidden='true'
span.spinner.glyphicon.glyphicon-cog aria-hidden='true'

0 comments on commit 1a5d443

Please sign in to comment.