MDL-51528 themes: active tab cursor

Set the cursor to a pointer for an active tab with a link to
indicate that the tab is still clickable, even though it is
active. See also MDL-46470 and MDL-51207.
This commit is contained in:
Ryan Wyllie
2015-10-09 06:34:43 +00:00
parent a25baf3184
commit 49ee2d0d2a
2 changed files with 9 additions and 1 deletions
@@ -2430,3 +2430,11 @@ dd:after {
dd:after {
clear: both;
}
// Active tabs with links should have a different
// cursor to indicate they are clickable.
.nav-tabs > .active > a[href],
.nav-tabs > .active > a[href]:hover,
.nav-tabs > .active > a[href]:focus {
cursor: pointer;
}
File diff suppressed because one or more lines are too long