-
-
Save badcrocodile/b6288f073c8ef5426805ffcba314eaac to your computer and use it in GitHub Desktop.
Vivaldi Tab Loading Indicator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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