Skip to content

Commit 5907ed4

Browse files
committed
style: remove contrast class from footer links
1 parent 9c2e060 commit 5907ed4

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

docs/ui/src/css/nav.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,4 +304,3 @@
304304
font-weight: var(--body-font-weight-bold);
305305
opacity: 1;
306306
}
307-

docs/website/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -571,9 +571,9 @@ <h3>Parameters</h3>
571571
<footer>
572572
<div class="container">
573573
<ul>
574-
<li><a href="#features" class="contrast">Features</a></li>
575-
<li><a href="./docs/" class="contrast">Docs</a></li>
576-
<li><a href="https://github.com/cppalliance/mrdocs" class="contrast">GitHub</a></li>
574+
<li><a href="#features">Features</a></li>
575+
<li><a href="./docs/">Docs</a></li>
576+
<li><a href="https://github.com/cppalliance/mrdocs">GitHub</a></li>
577577
</ul>
578578
</div>
579579
</footer>

docs/website/index.html.hbs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,9 +180,9 @@
180180
<div class="container">
181181
<ul>
182182
{{#each navbar}}
183-
<li><a href="{{ href }}" class="contrast">{{ title }}</a></li>
183+
<li><a href="{{ href }}">{{ title }}</a></li>
184184
{{/each}}
185-
<li><a href="https://github.com/cppalliance/mrdocs" class="contrast">GitHub</a></li>
185+
<li><a href="https://github.com/cppalliance/mrdocs">GitHub</a></li>
186186
</ul>
187187
</div>
188188
</footer>

docs/website/styles.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3285,9 +3285,13 @@ footer ul {
32853285
margin: 0;
32863286
}
32873287

3288+
footer a {
3289+
color: var(--muted-color);
3290+
}
3291+
32883292
footer a:hover,
32893293
footer a:focus {
3290-
color: var(--primary-hover) !important;
3294+
color: #fff;
32913295
text-decoration: underline;
32923296
transform: translateY(-1px);
32933297
transition: all var(--transition);

0 commit comments

Comments
 (0)