Skip to content

Instantly share code, notes, and snippets.

@badcrocodile
Forked from TwisterMc/common.css
Last active May 2, 2018 16:06
Show Gist options
  • Save badcrocodile/b6288f073c8ef5426805ffcba314eaac to your computer and use it in GitHub Desktop.
Save badcrocodile/b6288f073c8ef5426805ffcba314eaac to your computer and use it in GitHub Desktop.
Vivaldi Tab Loading Indicator
/* append this to the bottom of the common.css file */
/* via https://forum.vivaldi.net/topic/6289/tab-loading-indicator/24?page=2 */
/* Applications/Vivaldi/Contents/Versions/1.1323.4343/vivaldi/style/common.css
@keyframes fade{
from {opacity:1}
to {opacity:0.4}
}
/* Either pulse the "X"... */
.button-toolbar.reload.loading svg{
animation-name: fade;
animation-duration: 400ms;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
animation-direction:alternate;
}
/* ...or pulse the addressbar: */
.addressfield .progressing{
animation-name: fade;
animation-duration: 400ms;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
animation-direction:alternate;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment