This userstyle adjust columns width (name, IP, current page and referrer page) and overflowing (name and IP) for better usability.
Tawk.to Dashboard Monitoring Columns Optimization Tawk by renatofrota
Details
Authorrenatofrota
LicenseNo License
CategoryTawk.to
Created
Updated
Size1.2 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Tawk.to Dashboard Monitoring Columns Optimization
@version 20220106.13.20
@namespace userstyles.world/user/renatofrota
@description This userstyle adjust columns width (name, IP, current page and referrer page) and overflowing (name and IP) for better usability.
@author renatofrota
@license No License
==/UserStyle== */
@-moz-document domain("dashboard.tawk.to") {
#visitor-monitoring-view .list-block-header .live-list .visitor-cell {
width: calc(calc(100% - 435.5px) * 0.15);
max-width: 170px;
direction: rtl;
}
#visitor-monitoring-view .list-block-header .live-list .ip-cell {
width: calc(calc(100% - 435.5px) * 0.15);
max-width: 130px;
direction: rtl;
}
#visitor-monitoring-view .list-block-header .live-list .property-title-cell {
width: 100%;
min-width: calc(calc(100% - 435.5px) * 0.45);
max-width: calc(calc(100% - 735.5px) * 0.65);
}
#visitor-monitoring-view .list-block-header .live-list .referrer-cell {
width: 100%;
min-width: calc(calc(100% - 435.5px) * 0.25);
max-width: calc(calc(100% - 735.5px) * 0.35);
}
#visitor-monitoring-view .list-block-header .live-list .tooltip-inner {
direction: ltr;
}
}