1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 16:51:11 +03:00

2.0 style changes

Attempted to remove the dashed outline around active or focused links. CSS outline property is supposed to control this. However, FF ignores and adds a dashed line anyway. Seems like a FF bug.
This commit is contained in:
Chris Houseknecht 2014-06-27 11:39:19 -04:00
parent fcf41d74cf
commit 8c616e1004
2 changed files with 7 additions and 1 deletions

View File

@ -48,14 +48,20 @@ textarea {
a {
color: @link-color;
text-decoration: none;
outline: none;
outline-color: #fff;
&:hover,
&:focus {
color: @link-hover-color;
text-decoration: underline;
outline: none;
outline-color: #fff;
}
&:focus {
outline: none;
outline-color: #fff;
.tab-focus();
}
}

File diff suppressed because one or more lines are too long