Move window titles into their own div
This commit is contained in:
parent
99a99dae34
commit
a8763fbf49
|
@ -20,7 +20,7 @@ ul {
|
|||
cursor: pointer;
|
||||
user-select: none;
|
||||
|
||||
.window {
|
||||
.window-title {
|
||||
font-weight: 600;
|
||||
padding: 7px 4px;
|
||||
}
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
<ul id="window-list">
|
||||
{% for window in windows %}
|
||||
<li class="window" window-id={{ window.id }}>
|
||||
Window - {{ window.tabs|length }} tabs
|
||||
<div class="window-title">
|
||||
Window - {{ window.tabs|length }} tabs
|
||||
</div>
|
||||
{% include "tab-list.html.twig" with {'tabs': window.tabs} %}
|
||||
</li>
|
||||
{% include "tab-list.html.twig" with {'tabs': window.tabs} %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<ul class="tab-list">
|
||||
{% for tab in tabs %}
|
||||
<li class="tab" tab-id={{ tab.id }}>
|
||||
<span class="title">
|
||||
<span class="tab-title">
|
||||
{{ tab.title }}
|
||||
</span>
|
||||
</li>
|
||||
|
|
Loading…
Reference in a new issue