egroupware_official/api/js/etemplate/Styles/shoelace.ts

46 lines
1.1 KiB
TypeScript
Raw Normal View History

2022-05-12 23:22:49 +02:00
import {css} from "lit";
import {registerIconLibrary} from '@shoelace-style/shoelace/dist/utilities/icon-library.js';
import {egw} from "../../jsapi/egw_global";
/**
* Here is the common overrides and customisations for Shoelace
*/
/**
* Make shoelace icons available
*/
registerIconLibrary('default', {
resolver: name =>
{
return typeof egw !== "undefined" && typeof egw.image == "function" ? (egw.image(name) ?? `${egw.webserverUrl || ""}/node_modules/@shoelace-style/shoelace/dist/assets/icons/${name}.svg`) : ''
},
});
/**
* Register egw images as an icon library
* @example <sl-icon library="egw" name="infolog/navbar"/>
* @example <sl-icon library="egw" name="5_day_view"/>
*/
if(typeof egw !== "undefined" && typeof egw.image == "function")
{
registerIconLibrary('egw', {
resolver: name =>
{
return (egw.image(name) || '');
},
});
}
2022-05-12 23:22:49 +02:00
/**
* Customise shoelace styles to match our stuff
* External CSS & widget styles will override this
2022-05-12 23:22:49 +02:00
*/
2024-07-15 17:40:28 +02:00
export default [css`
2024-08-14 14:30:07 +02:00
.form-control--has-label .form-control__label {
display: inline-block;
color: var(--sl-input-label-color);
margin-right: var(--sl-spacing-medium);
}
`];