Fix of U4-4416

http://issues.umbraco.org/issue/U4-4416
This commit is contained in:
Jan Skovgaard
2014-06-08 18:47:07 +02:00
parent d7a0447e2e
commit 0474605d36
2 changed files with 10 additions and 1 deletions

View File

@@ -14,7 +14,7 @@
</li>
</ul>
<a href ng-click="setPackageAndContinue('00000000-0000-0000-0000-000000000000')" class="btn btn-link">
<a href ng-click="setPackageAndContinue('00000000-0000-0000-0000-000000000000')" class="btn btn-link btn-link-reverse">
No thanks, I do not want to install a starter website
</a>
</div>

View File

@@ -268,3 +268,12 @@ input[type="submit"].btn {
color: @grayDark;
text-decoration: none;
}
// Make a reverse type of a button link
.btn-link-reverse{
text-decoration:underline;
&:hover,
&:focus{
text-decoration:none;
}
}