Tweak CSS to use outline instead of border.

This commit is contained in:
Laurence Rowe 2012-09-27 20:03:35 +01:00
parent 5b6d974902
commit 598204639d
2 changed files with 5 additions and 1 deletions

View File

@ -4,6 +4,9 @@ Changelog
1.0.6 (unreleased)
------------------
* Tweak CSS to use outline instead of border.
[elro]
* Avoid theming ajax response.
[elro]

View File

@ -35,7 +35,7 @@
padding-bottom: 0.25em;
}
.contenttreeWidget .navTreeItem a:hover {
border: 1px dotted #205C90;
outline: 1px dotted #205C90;
}
.contenttreeWidget li.navTreeCurrentItem {
border: none !important;
@ -44,6 +44,7 @@
.contenttreeWidget li.navTreeCurrentItem > a,
.contenttreeWidget li.navTreeCurrentItem > a:hover {
border: none;
outline: none;
background-color: #205C90;
color: #fff !important;
}