make bluetooth service singleton

This commit is contained in:
2025-12-23 19:57:52 +01:00
parent 8613024f8d
commit a06c96f648
14 changed files with 148 additions and 65 deletions

View File

@@ -85,20 +85,14 @@ button:hover {
}
popover {
background-color: rgb(30, 30, 30);
background-color: rgba(30, 30, 30, 0.3);
color: #ffffff;
font-family: "IBMPlexSans-Regular", sans-serif;
padding: 5px;
border-radius: 8px;
border: 1px solid #444444;
margin-top: 5px;
}
tooltip {
background-color: rgba(50, 50, 50, 0.9);
color: #ffffff;
font-family: "IBMPlexSans-Regular", sans-serif;
padding: 5px 10px;
filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}
.icon-label {
@@ -128,17 +122,17 @@ tooltip {
/* use background to highlight using same dark colors as in file */
.toggle-button-on {
background-color: rgba(0, 150, 136, 0.2);
background-color: rgba(0, 150, 136, 0.9);
border: 1px solid #009688;
}
.toggle-button-off {
background-color: rgba(244, 67, 54, 0.2);
background-color: rgba(244, 67, 54, 0.9);
border: 1px solid #f44336;
}
.toggle-button-disabled {
background-color: rgba(100, 100, 100, 0.2);
background-color: rgba(100, 100, 100, 0.9);
border: 1px solid #666666;
color: #888888;
}