Compare commits

...

2 Commits

Author SHA1 Message Date
5b7ef4c951 Configuration debug vscode 2026-03-20 18:42:04 +01:00
82679a5709 Style pour le bouton en travaux 2026-03-20 18:36:31 +01:00
2 changed files with 34 additions and 2 deletions

30
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,30 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: Attach using Process Id",
"type": "debugpy",
"request": "attach",
"processId": "${command:pickProcess}"
},
{
"name": "Python Debugger: Current File",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
},
{
"name": "Python Debugger: Attach",
"type": "debugpy",
"request": "attach",
"connect": {
"host": "localhost",
"port": 5678
}
}
]
}

View File

@@ -82,12 +82,14 @@ QPushButton#staff_btn {
}
HazardButton#connexion_btn {
color: rgb(0, 0, 0);
color: #0A1A3A;
/* color: #0D2A6B;*/
font-weight: bold;
}
HazardButton#connexion_btn:hover {
color: #ffffff;
/* color: #ffffff;*/
color: #0D2A6B;
}
HazardButton#connexion_btn:pressed {