Skip to content

Commit

Permalink
Fix issue globaleaks#3727
Browse files Browse the repository at this point in the history
  • Loading branch information
evilaliv3 committed Oct 26, 2023
1 parent 80fc924 commit f420f80
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion client/app/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,16 @@ body {
a,
a:hover,
a:active,
a:focus {
a:focus,
.link {
color: #205282;
outline: 0;
font-weight: bold;
text-decoration: none;
}

a:hover,
.link:hover,
.onionaddress {
color: #5797d5;
}
Expand Down
2 changes: 1 addition & 1 deletion client/app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
</head>

<body class="container-fluid d-flex flex-column" data-ng-class="{{Utils.getCSSFlags()}}" data-flow-prevent-drop>
<div id="Skip"><a href="#" data-ng-click="Utils.scrollTo('#Content')" tabindex="1" data-translate>Skip to content</a></div>
<div id="Skip"><a href="#Content" tabindex="1" data-translate>Skip to content</a></div>
<div id="PageOverlay" class="ng-cloak" data-ng-hide="!showLoadingPanel">
<div id="Loader"></div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion client/app/views/partials/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<img class="img-fluid" alt="{{projectTitle}}" data-ng-src="{{public.node.logo ? 's/logo' : 'data/logo.png'}}" />
</a>
<div id="TitleBox" data-ng-if="projectTitle || pageTitle">
<a data-ng-if="projectTitle" href="#" data-ng-click="setHomepage()" id="ProjectTitle"><h1 data-ng-if="!pageTitle">{{projectTitle}}</h1><span data-ng-if="pageTitle">{{projectTitle}}</span></a><span data-ng-if="projectTitle && pageTitle" class="TitleSeparator"> - </span><span><h1 data-ng-if="pageTitle" id="PageTitle">{{pageTitle | translate}}</h1></span>
<span data-ng-if="projectTitle" data-ng-click="setHomepage()" id="ProjectTitle"><h1 data-ng-if="!pageTitle">{{projectTitle}}</h1><span data-ng-if="pageTitle">{{projectTitle}}</span></span><span data-ng-if="projectTitle && pageTitle" class="TitleSeparator"> - </span><span><h1 data-ng-if="pageTitle" id="PageTitle">{{pageTitle | translate}}</h1></span>
</div>
</div>
<div id="HeaderBox2" class="col-auto">
Expand Down
2 changes: 1 addition & 1 deletion client/app/views/partials/user.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<span class="text-separator">|</span>
</span>
<span id="SupportLinkBox" data-ng-if="Authentication.session && Authentication.session.role !== 'whistleblower'">
<a id="SupportLink" href="#" data-ng-click="Utils.openSupportModal()" data-uib-tooltip="{{'Request support' | translate}}"><i class="fa-solid fa-fw fa-life-ring"></i></a>
<span id="SupportLink" class="link" data-ng-click="Utils.openSupportModal()" data-uib-tooltip="{{'Request support' | translate}}"><i class="fa-solid fa-fw fa-life-ring"></i></span>
<span class="text-separator">|</span>
</span>
<span id="LogoutLinkBox">
Expand Down

0 comments on commit f420f80

Please sign in to comment.