textbox (non clickable)
This commit is contained in:
88
styles.css
88
styles.css
@@ -379,6 +379,89 @@ body {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* Checkbox de déconnexion forcée */
|
||||
.force-disconnect-container {
|
||||
margin: 25px 0 20px 0;
|
||||
padding: 16px;
|
||||
background: #f8f9fa;
|
||||
border-radius: 8px;
|
||||
border: 1px solid #e9ecef;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.force-disconnect-container:hover {
|
||||
border-color: #dee2e6;
|
||||
background: #f1f3f5;
|
||||
}
|
||||
|
||||
.checkbox-label {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
font-size: 14px;
|
||||
color: #333;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.checkbox-label input[type="checkbox"] {
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
cursor: pointer;
|
||||
height: 0;
|
||||
width: 0;
|
||||
}
|
||||
|
||||
/* Checkbox personnalisée */
|
||||
.checkbox-label::before {
|
||||
content: '';
|
||||
display: inline-block;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
margin-right: 12px;
|
||||
margin-top: 1px;
|
||||
border: 2px solid #dee2e6;
|
||||
border-radius: 4px;
|
||||
background: white;
|
||||
transition: all 0.2s ease;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
/* Checkbox cochée */
|
||||
.checkbox-label input[type="checkbox"]:checked ~ ::before {
|
||||
background: #667eea;
|
||||
border-color: #667eea;
|
||||
}
|
||||
|
||||
/* Icône de check */
|
||||
.checkbox-label input[type="checkbox"]:checked ~ ::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 6px;
|
||||
top: 4px;
|
||||
width: 6px;
|
||||
height: 11px;
|
||||
border: solid white;
|
||||
border-width: 0 2px 2px 0;
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
|
||||
.checkbox-label span {
|
||||
font-weight: 600;
|
||||
color: #495057;
|
||||
letter-spacing: 0.3px;
|
||||
padding-top: 1px;
|
||||
}
|
||||
|
||||
.checkbox-hint {
|
||||
display: block;
|
||||
margin-top: 6px;
|
||||
margin-left: 30px;
|
||||
font-size: 13px;
|
||||
color: #6c757d;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
#loginForm button {
|
||||
width: 100%;
|
||||
padding: 12px;
|
||||
@@ -395,6 +478,11 @@ body {
|
||||
background: #5a6fd8;
|
||||
}
|
||||
|
||||
#loginForm button:disabled {
|
||||
background: #a8b0e8;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.error-message {
|
||||
color: #e74c3c;
|
||||
text-align: center;
|
||||
|
||||
Reference in New Issue
Block a user