Skip to content

Instantly share code, notes, and snippets.

@kg
Created March 21, 2018 04:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kg/4c6e7bf7e9138b640f0bb98fc4e8a8d4 to your computer and use it in GitHub Desktop.
Save kg/4c6e7bf7e9138b640f0bb98fc4e8a8d4 to your computer and use it in GitHub Desktop.
div.lis-ability.on {
-webkit-transform: none !important;
transform: none !important;
}
div.lis-ability.btn-ability-unavailable.on::after {
display: none !important;
}
div.lis-ability::after {
content: "";
display: block;
position: absolute;
left: 4px;
top: 4px;
bottom: -5px;
right: 4px;
pointer-events: none;
border-style: solid;
border-radius: 2px;
box-sizing: border-box;
background-color: rgba(255, 255, 255, 0.0);
border-color: rgba(32, 32, 32, 0.0);
border-width: 0px;
transition: border-color 0.25s, border-width 0.25s, background-color 0.25s;
}
div.lis-ability.on::after {
background-color: rgba(255, 255, 255, 0.25);
border-color: rgba(32, 32, 32, 1);
border-width: 3.33px;
}
div.lis-ability.quick-button::after {
right: -2px;
bottom: -2px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment