diff --git a/res/html/main.css b/res/html/main.css index 20e84cc..194003c 100644 --- a/res/html/main.css +++ b/res/html/main.css @@ -25,17 +25,6 @@ align-items: center; } -.tablehead { - height: 20px; - width: 100%; - background-color: #121212FF; -} - -.tableback { - color: #222222FF; - overflow: hidden; -} - .vertscroll { width: 10px; height: 100px; @@ -211,11 +200,6 @@ background-color: #121212FF; } -.tableback { - background-color: #222222FF; - overflow: hidden; -} - #songlisttop { height: 150px; width: 100%; @@ -501,45 +485,33 @@ margin: auto; } -#songlist { - width: 100%; - height: 100%; - overflow: hidden; - background-color: #141414FF; -} - #genretable { width: 150px; height: 100%; - overflow: hidden; margin-top: 40px; margin-bottom: 40px; background-color: #252525FF; } #artisttable { - overflow: hidden; margin-top: 40px; margin-bottom: 40px; background-color: #252525FF; } #metatable { - overflow: hidden; margin-top: 40px; margin-bottom: 40px; background-color: #252525FF; } #contexttable { - overflow: hidden; margin-top: 20px; margin-bottom: 20px; background-color: #353535FF; } #settingstable { - overflow: hidden; margin-top: 40px; margin-bottom: 40px; background-color: #151515FF; diff --git a/res/html/main.html b/res/html/main.html index f332c74..f3e39b6 100644 --- a/res/html/main.html +++ b/res/html/main.html @@ -12,24 +12,6 @@ - - - - - - - - - - - - - - - - - -
diff --git a/src/kinetic_ui/handler/vh_table.c b/src/kinetic_ui/handler/vh_table.c index a2ded9e..d4d0e66 100644 --- a/src/kinetic_ui/handler/vh_table.c +++ b/src/kinetic_ui/handler/vh_table.c @@ -663,6 +663,10 @@ void vh_table_attach( head_v->style.height = headrow->frame.local.h; } + /* set mask */ + body_v->style.masked = 1; + if (head_v) head_v->style.masked = 1; + /* attach header view as first view */ if (head_v) ku_view_add_subview(view, head_v);