diff --git a/css/refined.css b/css/refined.css index 2af2825..c3b5073 100644 --- a/css/refined.css +++ b/css/refined.css @@ -217,3 +217,51 @@ body { } } +/* Trendline Settings Panel */ +#trendlineSettingsPanel input[type=range] { + -webkit-appearance: none; + background: transparent; +} + +#trendlineSettingsPanel input[type=range]::-webkit-slider-thumb { + -webkit-appearance: none; + height: 12px; + width: 12px; + border-radius: 50%; + background: #ffffff; + cursor: pointer; + border: 2px solid #1a2333; + margin-top: -4px; +} + +#trendlineSettingsPanel input[type=range]::-webkit-slider-runnable-track { + width: 100%; + height: 4px; + cursor: pointer; + background: #2d3a4f; + border-radius: 2px; +} + +.color-swatch { + width: 20px; + height: 20px; + border-radius: 3px; + cursor: pointer; + border: 1px solid transparent; + transition: transform 0.1s, border-color 0.1s; +} + +.color-swatch:hover { + transform: scale(1.1); + border-color: #ffffff; +} + +.color-swatch.active { + border-color: #ffffff; + box-shadow: 0 0 0 1px #ffffff; +} + +.tl-thickness-btn[data-active="true"], +.tl-style-btn[data-active="true"] { + background-color: #2d3a4f; +} diff --git a/ignore/line_settings.PNG b/ignore/line_settings.PNG new file mode 100644 index 0000000..1f7dabe Binary files /dev/null and b/ignore/line_settings.PNG differ diff --git a/ignore/text.PNG b/ignore/text.PNG new file mode 100644 index 0000000..887eeb8 Binary files /dev/null and b/ignore/text.PNG differ diff --git a/index.html b/index.html index 153429d..d888172 100644 --- a/index.html +++ b/index.html @@ -24,7 +24,7 @@ #rightSidebar.collapsed { transform: translateX(100%); } - + /* Tab Styles in Sidebar */ .sidebar-tab { @apply px-4 py-2 text-sm font-medium text-gray-400 hover:text-white transition-colors border-b-2 border-transparent; @@ -32,7 +32,7 @@ .sidebar-tab.active { @apply text-blue-500 border-blue-500; } - + /* Hide scrollbar for clean UI */ .no-scrollbar::-webkit-scrollbar { display: none; @@ -52,14 +52,14 @@ - +