Fix category name indenting in category list

This commit is contained in:
nathan 2022-11-28 09:20:06 -07:00
parent 0c0e91f750
commit a3f37c075e

View File

@ -31,7 +31,7 @@
</row> </row>
<row class="$row_cont[id] $row_cont[class]"> <row class="$row_cont[id] $row_cont[class]">
<hbox options="0,0"> <hbox options="0,0">
<html id="${row}[level_spacer]"/> <html id="${row}[level_spacer]" class="level_spacer"/>
<description id="${row}[name]" class="$row_cont[class]"/> <description id="${row}[name]" class="$row_cont[class]"/>
</hbox> </hbox>
<description id="${row}[description]"/> <description id="${row}[description]"/>
@ -74,28 +74,28 @@
</vbox> </vbox>
</box> </box>
<styles> <styles>
.level0 { font-weight: bold; } .level0 { font-weight: bold; }
.level_spacer { flex: 0 0 auto;}
.action_popup { .action_popup {
position: fixed; position: fixed;
top: 200px; top: 200px;
left: 450px; left: 450px;
width: 76ex; width: 76ex;
z-index: 20000; z-index: 20000;
display: none; display: none;
border-collapse:collapse; border-collapse:collapse;
border-spacing:0px border-spacing:0px
} }
.action_popup-content { .action_popup-content {
display:block; display:block;
padding:2ex; padding:2ex;
color:#666666; color:#666666;
margin: -2px -1px 0px -2px; margin: -2px -1px 0px -2px;
} }
.action_popup &gt; table { .action_popup &gt; table {
width: 100% width: 100%
} }
.action_popup .promptheader { .action_popup .promptheader {
padding: 1ex; padding: 1ex;
width: 100% width: 100%
} }