feat: Implement configurable pump control preprocessing logic #5

Merged
solipsism merged 34 commits from feature/pump-control-preprocessing into master 2025-11-17 14:23:42 +00:00
1 changed files with 9 additions and 0 deletions
Showing only changes of commit caf844cdcb - Show all commits

View File

@ -153,10 +153,12 @@ DASHBOARD_HTML = """
.protocol-btn {
padding: 8px 16px;
background: #f8f9fa;
color: #333;
border: 1px solid #ddd;
border-radius: 4px;
cursor: pointer;
font-weight: normal;
transition: all 0.2s ease;
}
.protocol-btn.active {
@ -168,10 +170,17 @@ DASHBOARD_HTML = """
.protocol-btn:hover {
background: #e9ecef;
color: #222;
border-color: #007acc;
transform: translateY(-1px);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.protocol-btn.active:hover {
background: #005a9e;
color: white;
transform: translateY(-1px);
box-shadow: 0 2px 4px rgba(0, 122, 204, 0.3);
}
/* Modal Styles */