Add files via upload

This commit is contained in:
bmFtZQ 2021-03-25 02:15:46 +08:00 committed by GitHub
parent 76397089d0
commit 60198dceef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,12 @@
/* Hide tab close button when mouse not hovering over it */
.tab-close-button {
transform: translateY(32px) !important;
margin-inline-start: -16px !important;
transition-property: margin, transform !important;
transition-duration: 200ms !important;
transition-timing-function: cubic-bezier(1, 0, 0, 1) !important;
}
:-moz-any(.tabbrowser-tab:hover:hover, .tabbrowser-tab[visuallyselected]) .tab-close-button {
transform: none !important;
margin-inline-start: 0 !important;
}