Merge pull request #484 from owncloud/links-in-note

add underline to links in note boxes
This commit is contained in:
Volkan Gezer 2014-09-17 01:06:56 +02:00
commit e397396721

View File

@ -211,3 +211,11 @@ div.thumbnail > img {
padding-bottom: 6px;
}
/* make links discoverable in note boxes */
.note a {
border-bottom: 1px dotted #428bca;
}
.note a:hover, .note a:focus {
border-bottom: 1px solid #428bca;
text-decoration: none;
}