mirror of https://github.com/zulip/zulip.git
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:
parent
1c07756150
commit
852bfd8d7a
|
@ -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 %}
|
||||
|
||||
|
|
Loading…
Reference in New Issue