CSS: Add style for buttons that should look like links

refs #5543
This commit is contained in:
Eric Lippmann 2015-09-25 00:22:28 +02:00
parent b4e44c9d6d
commit 3e2db992ce

View File

@ -56,3 +56,17 @@
color: @text-color-light;
font-size: @font-size-small;
}
button.link,
input[type="submit"].link {
// Reset defaults
background: none;
border: none;
padding: 0;
font-weight: @font-weight-bold;
&:hover {
text-decoration: underline;
}
}