0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00

Introduce button active state

Fixes #740
This commit is contained in:
John O'Nolan 2013-09-15 19:28:06 +01:00
parent 03f2fd87bb
commit 6abc9ea3c5

View file

@ -168,7 +168,7 @@ form {
%button {
@include box-sizing(border-box);
min-height: 35px;
width:auto;
width: auto;
display: inline-block;
padding: 0.9em 1.37em;
cursor: pointer;
@ -191,6 +191,10 @@ form {
text-decoration: none;
}
&:active {
box-shadow: rgba(0,0,0,0.3) 0 1px 3px inset;
}
&.large {
padding: 1em 1.8em;
font-size: 14px;