Merge branch 'develop' of github.com:martini/zammad into develop
This commit is contained in:
commit
52e7ab2e1c
3 changed files with 28 additions and 27 deletions
|
@ -1779,7 +1779,6 @@ class App.CustomerChatRef extends App.Controller
|
||||||
|
|
||||||
propagateLayoutChange: (event) =>
|
propagateLayoutChange: (event) =>
|
||||||
# adjust scroll position on layoutChange
|
# adjust scroll position on layoutChange
|
||||||
console.log "propagateLayoutChange", event
|
|
||||||
|
|
||||||
for chat in @chatWindows
|
for chat in @chatWindows
|
||||||
chat.trigger 'layout-changed'
|
chat.trigger 'layout-changed'
|
||||||
|
@ -1904,7 +1903,7 @@ class chatWindowRef extends Spine.Controller
|
||||||
@lastTimestamp
|
@lastTimestamp
|
||||||
@lastAddedType
|
@lastAddedType
|
||||||
@render()
|
@render()
|
||||||
@sound.window.play()
|
#@sound.window.play()
|
||||||
|
|
||||||
@on 'layout-change', @scrollToBottom
|
@on 'layout-change', @scrollToBottom
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
<% for item in @items: %>
|
<% for item in @items: %>
|
||||||
<% if item.child: %>
|
<% if item.child: %>
|
||||||
<a href="<%= item.target %>" class="dropdown-toggle dropdown<%- ' open' if @open_tab[item.target] %>" data-toggle="dropdown">
|
<div class="dropdown<%- ' open' if @open_tab[item.target] %>">
|
||||||
|
<a href="<%= item.target %>" class="menu-item js-<%- item.class %>MenuItem dropdown-toggle" data-toggle="dropdown">
|
||||||
<%- @Icon(item.class, 'menu-item-icon') %>
|
<%- @Icon(item.class, 'menu-item-icon') %>
|
||||||
<span class="menu-item-name flex">
|
<span class="menu-item-name flex">
|
||||||
<%- @T(item.name) %>
|
<%- @T(item.name) %>
|
||||||
|
@ -18,22 +19,22 @@
|
||||||
<li class="<% if @active_tab[item.target] : %>active<% end %>"><a href="<%= item.target %>"><%- @T( item.name ) %><% if item['count'] isnt undefined: %><span class="badge badge--text count"><%= item['count'] %></span><% end %></a></li>
|
<li class="<% if @active_tab[item.target] : %>active<% end %>"><a href="<%= item.target %>"><%- @T( item.name ) %><% if item['count'] isnt undefined: %><span class="badge badge--text count"><%= item['count'] %></span><% end %></a></li>
|
||||||
<% end %>
|
<% end %>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</div>
|
||||||
<% else: %>
|
<% else: %>
|
||||||
<a class="menu-item js-<%- item.class %>MenuItem<%- ' is-active' if @active_tab[item.target] %>" href="<%= item.target %>">
|
<a class="menu-item js-<%- item.class %>MenuItem<%- ' is-active' if @active_tab[item.target] %>" href="<%= item.target %>">
|
||||||
<%- @Icon(item.class, 'menu-item-icon') %>
|
<%- @Icon(item.class, 'menu-item-icon') %>
|
||||||
<span class="menu-item-name">
|
<span class="menu-item-name">
|
||||||
<%- @T(item.name) %>
|
<%- @T(item.name) %>
|
||||||
</span>
|
</span>
|
||||||
<% if item.counter: %>
|
<% if item.counter: %>
|
||||||
<span class="counter badge badge--big"></span>
|
<span class="counter badge badge--big"></span>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% if item.switch: %>
|
<% if item.switch: %>
|
||||||
<span class="zammad-switch zammad-switch--dark zammad-switch--small">
|
<span class="zammad-switch zammad-switch--dark zammad-switch--small">
|
||||||
<input type="checkbox" id="<%- item.class %>-switch">
|
<input type="checkbox" id="<%- item.class %>-switch">
|
||||||
<label for="<%- item.class %>-switch"></label>
|
<label for="<%- item.class %>-switch"></label>
|
||||||
</span>
|
</span>
|
||||||
<% end %>
|
<% end %>
|
||||||
</a>
|
</a>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
|
@ -2289,6 +2289,12 @@ footer {
|
||||||
height: 22px;
|
height: 22px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.menu .dropdown-menu {
|
||||||
|
left: 10px;
|
||||||
|
right: 15px;
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.menu-item {
|
.menu-item {
|
||||||
padding: 0 15px;
|
padding: 0 15px;
|
||||||
height: 48px;
|
height: 48px;
|
||||||
|
@ -2297,6 +2303,7 @@ footer {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background: hsl(230,10%,13%);
|
background: hsl(230,10%,13%);
|
||||||
|
@ -2325,13 +2332,7 @@ footer {
|
||||||
}
|
}
|
||||||
|
|
||||||
.dropdown-icon {
|
.dropdown-icon {
|
||||||
fill: hsl(206,7%,37%);
|
fill: currentColor;
|
||||||
}
|
|
||||||
|
|
||||||
.dropdown-menu {
|
|
||||||
left: 10px;
|
|
||||||
right: 15px;
|
|
||||||
min-width: 0;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue