mirror of
https://github.com/documize/community.git
synced 2025-08-06 05:55:25 +02:00
Replaced Material Icons & Boostrap with custom UI framework
This commit is contained in:
parent
d0f0a12f2d
commit
61c648a7ac
75 changed files with 116 additions and 1445 deletions
|
@ -1,4 +1,4 @@
|
|||
<div class="empty-state">
|
||||
<i class="material-icons">{{glypth}}</i>
|
||||
<i class="dicon {{glypth}}"/>
|
||||
<p>{{message}}</p>
|
||||
</div>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<div class="ui-checkbox {{if selected "ui-checkbox-selected"}}" {{action "onCheck"}}>
|
||||
{{#if selected}}
|
||||
<i class="material-icons selected">check_box</i>
|
||||
<i class="dicon {{constants.Icon.CheckboxChecked}} selected" />
|
||||
{{else}}
|
||||
<i class="material-icons">check_box_outline_blank</i>
|
||||
<i class="dicon {{constants.Icon.Checkbox}}" />
|
||||
{{/if}}
|
||||
<div class="text">{{yield}}</div>
|
||||
</div>
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
</div>
|
||||
<div class="modal-footer">
|
||||
{{ui/ui-button color=constants.Color.Gray light=true label=cancelCaption dismiss=true onClick=(action "onCancel")}}
|
||||
{{ui/ui-button-gap}}
|
||||
{{ui/ui-button color=buttonColor light=true label=confirmCaption onClick=(action "onAction")}}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<li class="option {{if item.selected "selected"}}" {{action "onToggle" item}}>
|
||||
<div class="text text-truncate">{{get item nameField}}</div>
|
||||
{{#if item.selected}}
|
||||
<i class="material-icons">check</i>
|
||||
<i class="dicon {{constants.Icon.Tick}}" />
|
||||
{{/if}}
|
||||
</li>
|
||||
{{/each}}
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
<div class="ui-radio {{if selected "ui-radio-selected"}}" {{action "onCheck"}}>
|
||||
{{#if selected}}
|
||||
<i class="material-icons selected">radio_button_checked</i>
|
||||
{{else}}
|
||||
<i class="material-icons">radio_button_unchecked</i>
|
||||
{{/if}}
|
||||
<div class="text">{{yield}}</div>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue