mirror of https://github.com/keeweb/keeweb
extracted entry selection view
parent
fdb492c572
commit
338f6d47d1
@ -1,16 +0,0 @@
|
||||
<tr class="at-select__item {{#if active}}at-select__item--active{{/if}}" data-id="{{id}}"
|
||||
id="at-select__item--{{id}}">
|
||||
<td>
|
||||
{{~#if customIcon~}}
|
||||
<img src="{{customIcon}}" class="at-select__item-icon at-select__item-icon--custom {{#if color}}{{color}}{{/if}}" />
|
||||
{{~else~}}
|
||||
<i class="fa fa-{{icon}} {{#if color}}{{color}}-color{{/if}} at-select__item-icon"></i>
|
||||
{{~/if~}}
|
||||
</td>
|
||||
<td>{{#if title}}{{title}}{{else}}({{res 'noTitle'}}){{/if}}</td>
|
||||
<td>{{user}}</td>
|
||||
<td>{{url}}</td>
|
||||
<td class="at-select__item-options">
|
||||
<i class="fa fa-ellipsis-h"></i>
|
||||
</td>
|
||||
</tr>
|
@ -1,30 +0,0 @@
|
||||
<div class="at-select">
|
||||
<div class="at-select__header">
|
||||
<h1 class="at-select__header-text">{{res 'autoTypeHeader'}}</h1>
|
||||
<div class="at-select__hint" id="at-select__hint">
|
||||
<div class="at-select__hint-text"><span class="shortcut">{{keyEnter}}</span>: {{res 'autoTypeSelectionHint'}}</div>
|
||||
<div class="at-select__hint-text"><span class="shortcut">{{actionSymbol}} {{keyEnter}}</span>: {{res 'autoTypeSelectionHintAction'}}</div>
|
||||
<div class="at-select__hint-text"><span class="shortcut">{{altSymbol}} {{keyEnter}}</span>: {{res 'autoTypeSelectionHintOpt'}}</div>
|
||||
<div class="at-select__hint-text"><span class="shortcut">{{shiftSymbol}} {{keyEnter}}</span>: {{res 'autoTypeSelectionHintShift'}}</div>
|
||||
</div>
|
||||
{{#if filterText}}
|
||||
<div class="at-select__header-filter" id="at-select__header-filter">
|
||||
<input type="text" readonly value="{{filterText}}" class="at-select__header-filter-input" />
|
||||
<i class="at-select__header-filter-clear fa fa-times"></i>
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
<div class="at-select__message">
|
||||
<div class="at-select__message-text">{{topMessage}}</div>
|
||||
</div>
|
||||
<div class="at-select__items">
|
||||
<div class="scroller">
|
||||
{{#if itemsHtml}}
|
||||
<table class="at-select__table">{{{itemsHtml}}}</table>
|
||||
{{else}}
|
||||
<h1 class="at-select__empty-title muted-color">{{res 'autoTypeNoMatches'}}</h1>
|
||||
{{/if}}
|
||||
</div>
|
||||
<div class="scroller__bar-wrapper"><div class="scroller__bar"></div></div>
|
||||
</div>
|
||||
</div>
|
@ -0,0 +1,16 @@
|
||||
<tr class="select-entry__item {{#if active}}select-entry__item--active{{/if}}" data-id="{{id}}"
|
||||
id="select-entry__item--{{id}}">
|
||||
<td>
|
||||
{{~#if customIcon~}}
|
||||
<img src="{{customIcon}}" class="select-entry__item-icon select-entry__item-icon--custom {{#if color}}{{color}}{{/if}}" />
|
||||
{{~else~}}
|
||||
<i class="fa fa-{{icon}} {{#if color}}{{color}}-color{{/if}} select-entry__item-icon"></i>
|
||||
{{~/if~}}
|
||||
</td>
|
||||
<td>{{#if title}}{{title}}{{else}}({{res 'noTitle'}}){{/if}}</td>
|
||||
<td>{{user}}</td>
|
||||
<td>{{url}}</td>
|
||||
<td class="select-entry__item-options">
|
||||
<i class="fa fa-ellipsis-h"></i>
|
||||
</td>
|
||||
</tr>
|
@ -0,0 +1,30 @@
|
||||
<div class="select-entry">
|
||||
<div class="select-entry__header">
|
||||
<h1 class="select-entry__header-text">{{res 'autoTypeHeader'}}</h1>
|
||||
<div class="select-entry__hint" id="select-entry__hint">
|
||||
<div class="select-entry__hint-text"><span class="shortcut">{{keyEnter}}</span>: {{res 'autoTypeSelectionHint'}}</div>
|
||||
<div class="select-entry__hint-text"><span class="shortcut">{{actionSymbol}} {{keyEnter}}</span>: {{res 'autoTypeSelectionHintAction'}}</div>
|
||||
<div class="select-entry__hint-text"><span class="shortcut">{{altSymbol}} {{keyEnter}}</span>: {{res 'autoTypeSelectionHintOpt'}}</div>
|
||||
<div class="select-entry__hint-text"><span class="shortcut">{{shiftSymbol}} {{keyEnter}}</span>: {{res 'autoTypeSelectionHintShift'}}</div>
|
||||
</div>
|
||||
{{#if filterText}}
|
||||
<div class="select-entry__header-filter" id="select-entry__header-filter">
|
||||
<input type="text" readonly value="{{filterText}}" class="select-entry__header-filter-input" />
|
||||
<i class="select-entry__header-filter-clear fa fa-times"></i>
|
||||
</div>
|
||||
{{/if}}
|
||||
</div>
|
||||
<div class="select-entry__message">
|
||||
<div class="select-entry__message-text">{{topMessage}}</div>
|
||||
</div>
|
||||
<div class="select-entry__items">
|
||||
<div class="scroller">
|
||||
{{#if itemsHtml}}
|
||||
<table class="select-entry__table">{{{itemsHtml}}}</table>
|
||||
{{else}}
|
||||
<h1 class="select-entry__empty-title muted-color">{{res 'autoTypeNoMatches'}}</h1>
|
||||
{{/if}}
|
||||
</div>
|
||||
<div class="scroller__bar-wrapper"><div class="scroller__bar"></div></div>
|
||||
</div>
|
||||
</div>
|
Loading…
Reference in New Issue