style: Add bootstrap link styles in the app's index.html.

We add bootstrap anchor tag styles in our main `index.html` page so
that the link styles are always applied on the reload link and it looks
like a link.

Fixes #25377.
This commit is contained in:
Lalit 2023-05-02 08:38:01 +05:30 committed by Tim Abbott
parent 1c07756150
commit 852bfd8d7a
1 changed files with 21 additions and 0 deletions

View File

@ -79,6 +79,27 @@
border-top-color: hsl(0,0%,52%);
animation: zspinner 1s linear infinite;
}
/* Bootstrap 'a' tag styles for styling reload link */
a#reload-lnk:focus {
outline: thin dotted #333;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
a#reload-lnk:hover,
a#reload-lnk:active {
outline: 0;
}
a#reload-lnk {
color: #0088cc;
text-decoration: none;
cursor: pointer;
}
a#reload-lnk:hover,
a#reload-lnk:focus {
color: #005580;
text-decoration: underline;
}
</style>
{% endblock %}