mirror of
https://git.proxmox.com/git/proxmox-widget-toolkit
synced 2025-08-03 11:53:37 +00:00

when we have a combogrid that may be empty, we now show a little 'x' where the user can delete the content this is not shown when the field is not allowed to be empty we add a new css for this because triggers need a background image with a very specific layout: 110x22px which is 5 icons in one image for the various states (normal, hover, active, focused, focused hover) the icon is taken from the theme-crisp form/tag-field-item-close.png but rearranged to fit the size Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
14 lines
190 B
Makefile
14 lines
190 B
Makefile
include ../defines.mk
|
|
|
|
CSS=ext6-pmx.css
|
|
|
|
all:
|
|
|
|
.PHONY: install
|
|
install: ${CSS}
|
|
install -d ${WWWCSSDIR}
|
|
for i in ${CSS}; do install -m 0755 $$i ${WWWCSSDIR}/$$i; done
|
|
|
|
.PHONY: clean
|
|
clean:
|