Skip to content

Commit 61c6b18

Browse files
ozgesolidkeyclaude
andcommitted
Make panel color button more visible: bordered pill with label and dot
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent f3736f6 commit 61c6b18

2 files changed

Lines changed: 19 additions & 10 deletions

File tree

src/renderer/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,7 @@ <h2>LOGAN</h2>
379379
</div>
380380
<button id="btn-panel-color" class="bottom-panel-color-btn" title="Panel background color">
381381
<span class="panel-color-dot"></span>
382+
<span>Color</span>
382383
</button>
383384
<button id="btn-bottom-panel-close" class="bottom-panel-close-btn" title="Close panel">&times;</button>
384385
</div>

src/renderer/styles.css

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4017,25 +4017,33 @@ kbd {
40174017
/* ── Panel color picker ─────────────────────────────────────────────────── */
40184018
.bottom-panel-color-btn {
40194019
background: none;
4020-
border: none;
4020+
border: 1px solid rgba(255, 255, 255, 0.18);
4021+
border-radius: 4px;
40214022
cursor: pointer;
4022-
padding: 0 6px;
4023+
padding: 2px 7px;
4024+
margin: 0 4px;
40234025
flex-shrink: 0;
40244026
display: flex;
40254027
align-items: center;
4028+
gap: 5px;
4029+
color: #aaa;
4030+
font-size: 11px;
4031+
transition: border-color 0.15s, color 0.15s, background 0.15s;
4032+
}
4033+
.bottom-panel-color-btn:hover {
4034+
border-color: rgba(255, 255, 255, 0.45);
4035+
color: #fff;
4036+
background: rgba(255, 255, 255, 0.07);
40264037
}
40274038

40284039
.panel-color-dot {
40294040
display: block;
4030-
width: 12px;
4031-
height: 12px;
4041+
width: 10px;
4042+
height: 10px;
40324043
border-radius: 50%;
4033-
background: rgba(200, 200, 220, 0.4);
4034-
border: 1px solid rgba(255, 255, 255, 0.25);
4035-
transition: border-color 0.15s;
4036-
}
4037-
.bottom-panel-color-btn:hover .panel-color-dot {
4038-
border-color: rgba(255, 255, 255, 0.7);
4044+
background: rgba(200, 200, 220, 0.5);
4045+
border: 1px solid rgba(255, 255, 255, 0.35);
4046+
flex-shrink: 0;
40394047
}
40404048

40414049
.panel-color-picker {

0 commit comments

Comments
 (0)