mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-23 07:46:23 -04:00
Maintain full width for items without a path
This commit is contained in:
@@ -52,6 +52,22 @@
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&-without-ancestors {
|
||||||
|
|
||||||
|
.message-name {
|
||||||
|
|
||||||
|
a {
|
||||||
|
display: block;
|
||||||
|
|
||||||
|
&:first-child {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&-folder {
|
&-folder {
|
||||||
|
|||||||
@@ -12,7 +12,7 @@
|
|||||||
{% else %}
|
{% else %}
|
||||||
<nav id=template-list>
|
<nav id=template-list>
|
||||||
{% for item in template_list %}
|
{% for item in template_list %}
|
||||||
<div class="template-list-item {% if can_manage_folders %}template-list-item-with-checkbox{% endif %} {% if item.ancestors %}template-list-item-hidden-by-default{% endif %}">
|
<div class="template-list-item {% if can_manage_folders %}template-list-item-with-checkbox{% endif %} {% if item.ancestors %}template-list-item-hidden-by-default{% endif %} {% if not item.ancestors %}template-list-item-without-ancestors{% endif %}">
|
||||||
{% if can_manage_folders %}
|
{% if can_manage_folders %}
|
||||||
{{ unlabelled_checkbox(
|
{{ unlabelled_checkbox(
|
||||||
id='templates-or-folder-{}'.format(item.id),
|
id='templates-or-folder-{}'.format(item.id),
|
||||||
|
|||||||
Reference in New Issue
Block a user