Bug 827524 - Display underlining of browser UI text links only as hover indication. r=dao ui-r=shorlander

This commit is contained in:
Frank Yan 2013-01-07 16:28:51 -08:00
Родитель 687b28cfce
Коммит 3e408a0372
7 изменённых файлов: 23 добавлений и 22 удалений

Просмотреть файл

@ -60,11 +60,11 @@ radio[pane=paneSync] {
/* styles for the link elements copied from .text-link in global.css */
.inline-link {
color: -moz-nativehyperlinktext;
text-decoration: underline;
text-decoration: none;
}
.inline-link:not(:focus) {
outline: 1px dotted transparent;
.inline-link:hover {
text-decoration: underline;
}
/* Modeless Window Dialogs */

Просмотреть файл

@ -163,11 +163,11 @@ caption {
/* styles for the link elements copied from .text-link in global.css */
.inline-link {
color: -moz-nativehyperlinktext;
text-decoration: underline;
text-decoration: none;
}
.inline-link:not(:focus) {
outline: 1px dotted transparent;
.inline-link:hover {
text-decoration: underline;
}
/**

Просмотреть файл

@ -59,11 +59,11 @@ radio[pane=paneSync] {
/* styles for the link elements copied from .text-link in global.css */
.inline-link {
color: -moz-nativehyperlinktext;
text-decoration: underline;
text-decoration: none;
}
.inline-link:not(:focus) {
outline: 1px dotted transparent;
.inline-link:hover {
text-decoration: underline;
}
/* Modeless Window Dialogs */

Просмотреть файл

@ -268,10 +268,13 @@ label[disabled="true"] {
.text-link {
color: -moz-nativehyperlinktext;
text-decoration: underline;
border: 1px solid transparent;
cursor: pointer;
}
.text-link:hover {
text-decoration: underline;
}
.text-link:focus {
border: 1px dotted -moz-DialogText;

Просмотреть файл

@ -50,14 +50,6 @@
padding-left: 6px;
}
.text-link {
text-decoration: none;
}
.text-link:hover {
text-decoration: underline;
}
/* ..... error rows ..... */
.console-row-code {

Просмотреть файл

@ -239,10 +239,13 @@ description {
.text-link {
color: -moz-nativehyperlinktext;
text-decoration: underline;
border: 1px solid transparent;
cursor: pointer;
}
.text-link:hover {
text-decoration: underline;
}
.text-link:-moz-focusring {
border: 1px dotted -moz-DialogText;

Просмотреть файл

@ -282,11 +282,14 @@ label[disabled="true"]:-moz-system-metric(windows-classic) {
.text-link {
color: -moz-nativehyperlinktext;
text-decoration: underline;
border: 1px solid transparent;
cursor: pointer;
}
.text-link:hover {
text-decoration: underline;
}
.text-link:-moz-focusring {
border: 1px dotted -moz-DialogText;
}