Private
Public Access
1
0

initial scaffolding for inverted, custom message list

This commit is contained in:
2025-04-30 15:58:47 -07:00
parent 3e1fa63fdf
commit e976b3db4c
10 changed files with 233 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<gresources>
<gresource prefix="/net/buzzert/kordophone2">
<file>style.css</file>
</gresource>
</gresources>

16
src/resources/style.css Normal file
View File

@@ -0,0 +1,16 @@
/* Kordophone application styles */
.conversation-row {
padding: 8px 12px;
border-bottom: 1px solid alpha(#000, 0.1);
}
.conversation-row:selected {
background-color: alpha(@accent_bg_color, 0.50);
}
.message-list-scroller {
/* Invert the y-axis, so the messages are drawn bottom-to-top */
/* Individual messages are drawn upside down in the custom renderer */
transform: scale(1, -1);
}