Increase row size to 800px + wrap cell text
kibana 7.17.0 - expand discover - 10/19/2022, 8:32:30 AM by zazabe
Details
Authorzazabe
LicenseNo License
Category*.found.io:9243
Created
Updated
Size946 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 kibana 7.17.0 - expand discover - 10/19/2022, 8:32:30 AM
@namespace github.com/openstyles/stylus
@version 1.0.7
@description Expands kibana discover rows
@author zazabe
==/UserStyle== */
@-moz-document regexp(".*\\.found\\.io:9243/.*") {
.euiDataGridRowCell--controlColumn {
height: 15em !important;
}
div.euiDataGridRowCell:not(.euiDataGridRowCell--controlColumn) div.euiDataGridRowCell__expandContent {
white-space: break-spaces !important;
word-wrap: break-word !important;
direction: ltr !important;
}
div.euiDataGridRowCell:not(.euiDataGridRowCell--controlColumn) div.euiDataGridRowCell__truncate {
white-space: break-spaces !important;
word-wrap: break-word !important;
}
.euiDataGridRowCell__expandFlex {
overflow: scroll auto;
direction: rtl;
align-items: start;
}
}