fixes
This commit is contained in:
@@ -20,6 +20,7 @@ import uiDropdown from './ui-dropdown.vue';
|
||||
import uiHeaderBar from './ui-header-bar.vue';
|
||||
import uiCalendar from './ui-calendar.vue';
|
||||
import uiTree from './ui-tree.vue';
|
||||
import uiTreeItem from './ui-tree-item.vue';
|
||||
import uiTable from './ui-table.vue';
|
||||
import uiTableFilter from './ui-table-filter.vue';
|
||||
import uiTrinity from './ui-trinity.vue';
|
||||
@@ -64,6 +65,7 @@ export {
|
||||
uiHeaderBar,
|
||||
uiCalendar,
|
||||
uiTree,
|
||||
uiTreeItem,
|
||||
uiTable,
|
||||
uiTableFilter,
|
||||
uiTrinity,
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
<ui-icon :symbol="icon" />
|
||||
</span>
|
||||
<span class="ui-select-button-icon is-image" v-if="isImage">
|
||||
<ui-thumbnail :media="source" :alt="icon" />
|
||||
<img :src="source" :alt="icon" />
|
||||
</span>
|
||||
<div class="ui-select-button-content" v-if="label || description">
|
||||
|
||||
@@ -200,7 +200,8 @@ class ListColumn
|
||||
{
|
||||
this._type = 'image';
|
||||
this._asHtml = true;
|
||||
this._func = (value, opts) => value ? `<img src="/zero/api/system/media/${(value)}/thumb.tmp" class="ui-table-field-image">` : '';
|
||||
// TODO correct app ID
|
||||
this._func = (value, opts) => value ? `<img src="/zero/api/hofbauer/media/${(value)}/thumb.tmp" class="ui-table-field-image">` : '';
|
||||
return this;
|
||||
}
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
// theme-agnostic colors
|
||||
:root
|
||||
{
|
||||
--color-accent: #f9aa19; // #F9AA19 // #67bdb1
|
||||
--color-accent: #f9aa19; // #f9aa19; // #76b900 // #67bdb1
|
||||
--color-accent-fg: #ffffff;
|
||||
|
||||
--color-negative: rgb(216, 40, 83);
|
||||
|
||||
Reference in New Issue
Block a user