Skip to content

Commit

Permalink
fx128: -moz-nativehyperlinktext -> LinkText (#4902)
Browse files Browse the repository at this point in the history
  • Loading branch information
AbeJellinek authored Dec 5, 2024
1 parent 9527744 commit a6650e4
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion app/assets/mac/chrome/skin/preferences/preferences.css
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ caption {

/* styles for the link elements copied from .text-link in global.css */
.inline-link {
color: -moz-nativehyperlinktext;
color: LinkText;
text-decoration: underline;
}

Expand Down
2 changes: 1 addition & 1 deletion app/assets/unix/skin/preferences/preferences.css
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ radio[pane=paneSync] {

/* styles for the link elements copied from .text-link in global.css */
.inline-link {
color: -moz-nativehyperlinktext;
color: LinkText;
text-decoration: underline;
}

Expand Down
2 changes: 1 addition & 1 deletion app/assets/win/skin/preferences/preferences.css
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ radio[pane=paneSync] {

/* styles for the link elements copied from .text-link in global.css */
.inline-link {
color: -moz-nativehyperlinktext;
color: LinkText;
text-decoration: underline;
}

Expand Down
2 changes: 1 addition & 1 deletion app/scripts/fetch_xulrunner
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ function modify_omni {
# Hide "Debug Addons" and "Manage Extension Shortcuts"
echo 'panel-item[action="debug-addons"], panel-item[action="reset-update-states"] + hr, panel-item[action="manage-shortcuts"] { display: none }' >> $file
# Show cursor feedback on plugin homepage links
echo '.addon-detail-row-homepage .text-link { cursor: pointer; color: -moz-nativehyperlinktext; }' >> $file
echo '.addon-detail-row-homepage .text-link { cursor: pointer; color: LinkText; }' >> $file
echo '.addon-detail-row-homepage .text-link:hover { text-decoration: underline; }' >> $file

file="chrome/toolkit/content/mozapps/extensions/aboutaddons.js"
Expand Down
2 changes: 1 addition & 1 deletion chrome/skin/default/zotero/publicationsDialog.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ checkbox, description, groupbox > .groupbox-body, radio, div:not(.license-more-i
}

a {
color: -moz-nativehyperlinktext;
color: LinkText;
text-decoration: underline;
}

Expand Down
4 changes: 2 additions & 2 deletions chrome/skin/default/zotero/zotero.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ groupbox > label > h2, groupbox > * > label > h2 {

label.zotero-text-link {
-moz-user-focus: normal;
color: -moz-nativehyperlinktext;
color: LinkText;
text-decoration: underline;
border: 1px solid transparent;
cursor: pointer;
}

.text-link {
-moz-user-focus: normal;
color: -moz-nativehyperlinktext;
color: LinkText;
text-decoration: underline;
border: 1px solid transparent;
cursor: pointer;
Expand Down
2 changes: 1 addition & 1 deletion scss/about.scss
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@

span.text-link {
cursor: pointer;
color: -moz-nativehyperlinktext;
color: LinkText;
}

span.text-link:hover {
Expand Down
2 changes: 1 addition & 1 deletion scss/components/_import-wizard.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

a {
display: inline;
color: -moz-nativehyperlinktext;
color: LinkText;
cursor: pointer;

&:hover, &:active, &:focus {
Expand Down
2 changes: 1 addition & 1 deletion scss/components/_textLink.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.zotero-text-link {
-moz-user-focus: normal;
color: -moz-nativehyperlinktext;
color: LinkText;
text-decoration: underline;
border: var(--material-border-transparent);
cursor: pointer;
Expand Down
2 changes: 1 addition & 1 deletion scss/elements/_publicationsLicenseInfo.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ publications-license-info {

a {
display: inline;
color: var(--license-info-link-color, -moz-nativehyperlinktext);
color: var(--license-info-link-color, LinkText);
text-decoration: var(--license-info-link-decoration, none);

&:hover,
Expand Down

0 comments on commit a6650e4

Please sign in to comment.