mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-12-26 01:50:34 +00:00
Merge pull request #1651 from bookwyrm-social/feed-settings-style
Creates consistent styling for details element
This commit is contained in:
commit
18f7863eac
2 changed files with 59 additions and 39 deletions
|
@ -115,6 +115,21 @@ input[type=file]::file-selector-button:hover {
|
||||||
color: #363636;
|
color: #363636;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
summary::marker {
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.detail-pinned-button summary {
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.detail-pinned-button form {
|
||||||
|
float: left;
|
||||||
|
width: -webkit-fill-available;
|
||||||
|
margin-top: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
/** Shelving
|
/** Shelving
|
||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,9 @@
|
||||||
<h1 class="title">
|
<h1 class="title">
|
||||||
{{ tab.name }}
|
{{ tab.name }}
|
||||||
</h1>
|
</h1>
|
||||||
<div class="tabs">
|
<div class="block is-clipped">
|
||||||
|
<div class="is-pulled-left">
|
||||||
|
<div class="tabs">
|
||||||
<ul>
|
<ul>
|
||||||
{% for stream in streams %}
|
{% for stream in streams %}
|
||||||
<li class="{% if tab.key == stream.key %}is-active{% endif %}"{% if tab.key == stream.key %} aria-current="page"{% endif %}>
|
<li class="{% if tab.key == stream.key %}is-active{% endif %}"{% if tab.key == stream.key %} aria-current="page"{% endif %}>
|
||||||
|
@ -14,19 +16,21 @@
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
{# feed settings #}
|
{# feed settings #}
|
||||||
<details class="mb-5" {% if settings_saved %}open{% endif %}>
|
<details class="detail-pinned-button" {% if settings_saved %}open{% endif %}>
|
||||||
<summary>
|
<summary class="control">
|
||||||
<span class="has-text-weight-bold">
|
<span class="button">
|
||||||
{{ _("Feed settings") }}
|
<span class="icon icon-dots-three m-0-mobile" aria-hidden="true"></span>
|
||||||
|
<span class="is-sr-only-mobile">{{ _("Feed settings") }}</span>
|
||||||
</span>
|
</span>
|
||||||
{% if settings_saved %}
|
{% if settings_saved %}
|
||||||
<span class="tag is-success is-light ml-2">{{ _("Saved!") }}</span>
|
<span class="tag is-success is-light ml-2">{{ _("Saved!") }}</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</summary>
|
</summary>
|
||||||
<form class="level is-align-items-flex-end" method="post" action="/{{ tab.key }}#feed">
|
<form class="notification level is-align-items-flex-end" method="post" action="/{{ tab.key }}#feed">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
|
|
||||||
<div class="level-left">
|
<div class="level-left">
|
||||||
|
@ -48,7 +52,8 @@
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</details>
|
</details>
|
||||||
|
</div>
|
||||||
|
|
||||||
{# announcements and system messages #}
|
{# announcements and system messages #}
|
||||||
{% if not activities.number > 1 %}
|
{% if not activities.number > 1 %}
|
||||||
|
|
Loading…
Reference in a new issue