diff --git a/@salix/app/src/components/searchbar/searchbar.html b/@salix/app/src/components/searchbar/searchbar.html index e6afb9b59..e46d3b347 100644 --- a/@salix/app/src/components/searchbar/searchbar.html +++ b/@salix/app/src/components/searchbar/searchbar.html @@ -1,5 +1,5 @@ - + keyboard_arrow_down diff --git a/@salix/core/src/card/card.js b/@salix/core/src/card/card.js index 132d6f055..1f9038987 100644 --- a/@salix/core/src/card/card.js +++ b/@salix/core/src/card/card.js @@ -1,6 +1,7 @@ import {module as _module} from '../module'; import * as resolveFactory from '../resolveDefaultComponents'; import * as util from '../util'; +require ('./style.css'); const _NAME = 'card'; export const NAME = util.getName(_NAME); diff --git a/@salix/core/src/card/style.css b/@salix/core/src/card/style.css new file mode 100644 index 000000000..c2fe4e1ea --- /dev/null +++ b/@salix/core/src/card/style.css @@ -0,0 +1,3 @@ +vn-card { + display: block; +} \ No newline at end of file diff --git a/@salix/core/src/icon/icon.js b/@salix/core/src/icon/icon.js index 185b79a5f..9034b2212 100644 --- a/@salix/core/src/icon/icon.js +++ b/@salix/core/src/icon/icon.js @@ -1,5 +1,6 @@ import {module} from '../module'; import * as resolveFactory from '../resolveDefaultComponents'; +require('./style.css'); const _NAME = 'icon'; export const NAME = 'vnIcon'; diff --git a/@salix/core/src/icon/icon.mdl.html b/@salix/core/src/icon/icon.mdl.html index 42a9d6328..671916513 100644 --- a/@salix/core/src/icon/icon.mdl.html +++ b/@salix/core/src/icon/icon.mdl.html @@ -1 +1 @@ -*[icon]* +*[icon]* diff --git a/@salix/core/src/icon/style.css b/@salix/core/src/icon/style.css new file mode 100644 index 000000000..fc4dacc93 --- /dev/null +++ b/@salix/core/src/icon/style.css @@ -0,0 +1,7 @@ +vn-icon { + display: inline; + font-size: 18pt; +} +vn-icon > i { + font-size: inherit !important; +} \ No newline at end of file diff --git a/@salix/core/src/popover/popover.js b/@salix/core/src/popover/popover.js index 8dc342017..84f09415b 100644 --- a/@salix/core/src/popover/popover.js +++ b/@salix/core/src/popover/popover.js @@ -1,5 +1,6 @@ import {module} from '../module'; import * as resolveFactory from '../resolveDefaultComponents'; +require('./style.css'); const _NAME = 'popover'; export const NAME = 'vnPopover'; diff --git a/@salix/core/src/popover/style.css b/@salix/core/src/popover/style.css new file mode 100644 index 000000000..6ec8f95d8 --- /dev/null +++ b/@salix/core/src/popover/style.css @@ -0,0 +1,4 @@ +vn-popover { + display: none; + position: absolute; +} \ No newline at end of file diff --git a/@salix/crud/src/client/index/index.html b/@salix/crud/src/client/index/index.html index 389b23d9e..edee93333 100644 --- a/@salix/crud/src/client/index/index.html +++ b/@salix/crud/src/client/index/index.html @@ -1,23 +1,23 @@ - - + + + + - - - + + - - - - - - - - - - - - - - + + + + + + + + + Popover test! + diff --git a/@salix/crud/src/client/index/index.js b/@salix/crud/src/client/index/index.js index 768656953..81785d2ea 100644 --- a/@salix/crud/src/client/index/index.js +++ b/@salix/crud/src/client/index/index.js @@ -1,5 +1,6 @@ import template from './index.html'; import {module} from '../../module'; +require('./style.css'); export const NAME = 'vnClientIndex'; export const COMPONENT = { diff --git a/@salix/crud/src/client/index/item-client.html b/@salix/crud/src/client/index/item-client.html index 9221e3f21..8e29478bd 100644 --- a/@salix/crud/src/client/index/item-client.html +++ b/@salix/crud/src/client/index/item-client.html @@ -1,12 +1,11 @@ - - - - {{itemClient.client.alias}} - {{itemClient.client.name}} - {{itemClient.client.phone}}, {{itemClient.client.contact}} - - - edit - - - \ No newline at end of file + + + + {{itemClient.client.name}} + {{itemClient.client.phone}}, {{itemClient.client.contact}} + + + + + + \ No newline at end of file diff --git a/@salix/crud/src/client/index/style.css b/@salix/crud/src/client/index/style.css new file mode 100644 index 000000000..d12d1c754 --- /dev/null +++ b/@salix/crud/src/client/index/style.css @@ -0,0 +1,11 @@ +vn-item-client { + display: block; +} +vn-item-client a { + display: block; + text-decoration: none; + color: inherit; +} +vn-item-client a:hover { + background-color: rgba(0, 0, 0, .1); +} \ No newline at end of file