mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
787ee4730a
thought for some reason setting --track-width: 3px in the theme only gives a 2px track, while setting it in shoelace.ts gives the expected 3px :(
46 lines
1.1 KiB
TypeScript
46 lines
1.1 KiB
TypeScript
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) || '');
|
|
},
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Customise shoelace styles to match our stuff
|
|
* External CSS & widget styles will override this
|
|
*/
|
|
export default [css`
|
|
.form-control--has-label .form-control__label {
|
|
display: inline-block;
|
|
color: var(--sl-input-label-color);
|
|
margin-right: var(--sl-spacing-medium);
|
|
}
|
|
`]; |