Skip to content
Snippets Groups Projects
Commit 25162216 authored by Augustin Lemesle's avatar Augustin Lemesle
Browse files

further tab navigation

parent 49d4a6e7
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
{% assign content = pub.content | strip_newlines %} {% assign content = pub.content | strip_newlines %}
<details {% if content == "" %} class="empty" {% endif %}> <details {% if content == "" %} class="empty" {% endif %}>
<summary> <summary tabindex="0">
{% if pub.authors %}<div>{{ pub.authors }}</div>{% endif %} {% if pub.authors %}<div>{{ pub.authors }}</div>{% endif %}
<div><b>{{ pub.title }}</b>{% if pub.link %} [<a href="{{ pub.link }}">link</a>] {% endif %}</div> <div><b>{{ pub.title }}</b>{% if pub.link %} [<a href="{{ pub.link }}">link</a>] {% endif %}</div>
{% if pub.book %} <div>In {{ pub.book }}, {{ pub.year }}</div> {% endif %} {% if pub.book %} <div>In {{ pub.book }}, {{ pub.year }}</div> {% endif %}
......
...@@ -44,7 +44,7 @@ css: blog ...@@ -44,7 +44,7 @@ css: blog
{% for post in paginator.posts %} {% for post in paginator.posts %}
<article> <article>
<figure> <figure>
<a href="{{ post.url }}" class="img" style= <a tabindex="-1" href="{{ post.url }}" class="img" style=
"background-image: url({% if post.image %}{{ post.image }}{% else %}/assets/img/default-blog.jpg{% endif %});"></a> "background-image: url({% if post.image %}{{ post.image }}{% else %}/assets/img/default-blog.jpg{% endif %});"></a>
</figure> </figure>
......
...@@ -338,6 +338,10 @@ button:focus, ...@@ -338,6 +338,10 @@ button:focus,
.btn:focus { .btn:focus {
color: #000 !important; color: #000 !important;
} }
.btnCancel:focus {
background: #FFDCB9 !important;
}
/*---------------------------- 2. Helper classes ------------------------------*/ /*---------------------------- 2. Helper classes ------------------------------*/
.hide { .hide {
display: none !important; display: none !important;
......
...@@ -50,6 +50,7 @@ details:hover{ ...@@ -50,6 +50,7 @@ details:hover{
color: #242424!important; color: #242424!important;
background-color: #f9f9f9!important; background-color: #f9f9f9!important;
} }
details summary:focus,
details:hover summary { details:hover summary {
color: #f16521; color: #f16521;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment