????
Current Path : C:/opt/pgsql/pgAdmin 4/web/pgadmin/static/js/Theme/overrides/ |
Current File : C:/opt/pgsql/pgAdmin 4/web/pgadmin/static/js/Theme/overrides/uplot.override.js |
///////////////////////////////////////////////////////////// // // pgAdmin 4 - PostgreSQL Tools // // Copyright (C) 2013 - 2024, The pgAdmin Development Team // This software is released under the PostgreSQL Licence // ////////////////////////////////////////////////////////////// export default function uplotOverride(theme) { return { '.uplot': { '& .u-legend': { display: 'none', } }, '.uplot-tooltip': { position: 'absolute', fontSize: '0.9em', padding: '4px 8px', borderRadius: theme.shape.borderRadius, color: theme.palette.background.default, backgroundColor: theme.palette.text.primary, zIndex: 9999, display: 'block', '& .uplot-tooltip-label': { display: 'flex', gap: '4px', alignItems: 'center', } } }; }