Files
GNOME_extension/password-applet@gilles/stylesheet.css
2025-12-07 16:53:36 +01:00

71 lines
1.3 KiB
CSS
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/* stylesheet.css */
/* Style du mini gestionnaire de mots de passe GNOME Shell */
/* Lien cliquable (URL présente) */
.password-applet-label-link {
color: #5da5ff;
}
/* Nom dutilisateur */
.password-applet-username {
margin-left: 8px;
}
/* Mot de passe masqué */
.password-applet-password {
margin-left: 8px;
font-family: monospace;
opacity: 0.7;
}
/* Boutons copier (User / Password) */
.password-applet-copy-btn {
margin-left: 6px;
padding: 0 6px;
border-radius: 6px;
background-color: #3a3a3a;
color: white;
}
.password-applet-copy-btn:hover {
background-color: #4d4d4d;
}
/* Champs de formulaire */
.password-applet-entry {
min-width: 220px;
padding: 4px;
border-radius: 6px;
background-color: rgba(255,255,255,0.08);
}
/* Bouton Enregistrer */
.password-applet-save-btn {
padding: 4px 12px;
margin-right: 6px;
background-color: #4caf50;
color: white;
border-radius: 6px;
}
.password-applet-save-btn:hover {
background-color: #45a047;
}
/* Bouton Annuler */
.password-applet-cancel-btn {
padding: 4px 12px;
background-color: #d9534f;
color: white;
border-radius: 6px;
}
.password-applet-cancel-btn:hover {
background-color: #c9302c;
}
/* Ligne + Formulaire */
.password-applet-form-row {
margin-bottom: 6px;
}