limits image height for scannability
tana table image fix height by zephyrinthewild
Details
Authorzephyrinthewild
LicenseNo License
Categoryapp.tana.inc
Created
Updated
Size877 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name tana table image fix height
@version 20240807.06.19
@namespace ?
==/UserStyle== */
@-moz-document url-prefix("https://app.tana.inc/") {
[class^="nodeTableView-module_tableContainer__"] .NodeAsTableRow-module_columnContent__2fkKv>.OutlinerItem-module_item__WZ038>div:first-of-type{
--visualMaxHeight: min(300px, 35vh);
}
[class^="nodeTableView-module_tableContainer__"] .NodeAsTableRow-module_columnContent__2fkKv>.OutlinerItem-module_item__WZ038>div:first-of-type [class^="VisualContent-module_visual__"] [class^="VisualContent-module_mediaContainer__"] video, [class^="nodeTableView-module_tableContainer__"] .NodeAsTableRow-module_columnContent__2fkKv>.OutlinerItem-module_item__WZ038>div:first-of-type [class^="VisualContent-module_visual__"] [class^="VisualContent-module_mediaContainer__"] img{
object-fit: cover;
}
}