shadow-over-bishkek001/dialogEditor/src/components/GraphPanel/GraphToolbar.module.css
2026-06-05 21:17:51 +03:00

102 lines
1.4 KiB
CSS

.toolbar {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 10px;
background: #181825;
border-bottom: 1px solid #313244;
flex-wrap: wrap;
min-height: 40px;
}
.group {
display: flex;
align-items: center;
gap: 4px;
}
.label {
font-size: 11px;
color: #6c7086;
margin-right: 2px;
}
.btn {
background: #313244;
color: #cdd6f4;
border: none;
border-radius: 4px;
padding: 4px 8px;
font-size: 11px;
cursor: pointer;
transition: background 0.15s;
white-space: nowrap;
}
.btn:hover {
background: #45475a;
}
.btnPlay {
background: #40a02b;
color: #fff;
}
.btnPlay:hover {
background: #37872b;
}
.separator {
width: 1px;
height: 20px;
background: #313244;
margin: 0 2px;
}
.toggle {
display: flex;
align-items: center;
gap: 6px;
cursor: pointer;
font-size: 12px;
color: #cdd6f4;
}
.toggle input {
cursor: pointer;
}
.mobileBanner {
background: #2a1f00;
color: #f9e2af;
font-size: 11px;
padding: 3px 10px;
border-radius: 4px;
border: 1px solid #f9e2af44;
}
.flagPill {
background: rgba(137, 180, 250, 0.15);
color: #89b4fa;
border-radius: 3px;
padding: 2px 6px;
font-size: 10px;
font-family: monospace;
white-space: nowrap;
}
.btnReset {
background: #45475a;
color: #f9e2af;
border: none;
border-radius: 4px;
padding: 4px 8px;
font-size: 11px;
cursor: pointer;
white-space: nowrap;
}
.btnReset:hover {
background: #585b70;
}