Eww: Modularized and improved CSS

This commit is contained in:
soraefir
2023-11-23 20:46:43 +01:00
parent 5e569bbb48
commit afaed60935
12 changed files with 207 additions and 139 deletions

View File

@@ -1,16 +1,17 @@
(deflisten net :initial '{"name":"","icon":""}'"scripts/net/net")
(defwidget net []
(box
:class "module"
:orientation "v"
(button
:class "net"
:tooltip {net.name}
{net.icon})
(defwidget net-mod []
(module
(box
:orientation "v"
(button
:class "net"
:tooltip {net.name}
{net.icon})
(button
:class "blt"
(label :class "icon-text" :text "B"))
(button
:class "blt"
(label :class "icon-text" :text "B"))
)
)
)