This commit is contained in:
David Brazda
2024-11-15 09:23:35 +01:00
parent 33c2d47858
commit 1551f6f904
3 changed files with 4 additions and 4 deletions

File diff suppressed because one or more lines are too long

View File

@ -5,7 +5,7 @@ with open('README.md', 'r', encoding='utf-8') as f:
setup( setup(
name='lightweight_charts', name='lightweight_charts',
version='2.2.24', version='2.2.25',
packages=find_packages(), packages=find_packages(),
python_requires='>=3.8', python_requires='>=3.8',
install_requires=[ install_requires=[

View File

@ -45,11 +45,11 @@ export class Legend {
this.div.style.overflowY = 'auto'; this.div.style.overflowY = 'auto';
this.div.style.overflowX = 'hidden'; this.div.style.overflowX = 'hidden';
this.div.style.position = 'absolute'; this.div.style.position = 'absolute';
this.div.style.backgroundColor = 'rgba(19, 23, 34, 0.85)'; this.div.style.backgroundColor = 'rgba(19, 23, 34, 0)';
this.div.style.color = '#D1D4DC'; this.div.style.color = '#D1D4DC';
this.div.style.padding = '8px'; this.div.style.padding = '8px';
this.div.style.borderRadius = '4px'; this.div.style.borderRadius = '4px';
this.div.style.border = '1px solid rgba(42, 46, 57, 0.85)'; //this.div.style.border = '1px solid rgba(42, 46, 57, 0.85)';
this.div.style.boxShadow = '0 2px 5px rgba(0,0,0,0.3)'; this.div.style.boxShadow = '0 2px 5px rgba(0,0,0,0.3)';
this.div.style.fontFamily = '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif'; this.div.style.fontFamily = '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif';
this.div.style.fontSize = '12px'; this.div.style.fontSize = '12px';