61 lines
1.0 KiB
CSS
61 lines
1.0 KiB
CSS
/* Estilos do botão */
|
|
.launchr-save-button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 8px 16px;
|
|
border-radius: 4px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
background-color: #4F46E5;
|
|
color: white;
|
|
border: none;
|
|
margin-left: 8px;
|
|
min-width: 150px;
|
|
}
|
|
|
|
.launchr-save-button:hover:not(:disabled) {
|
|
background-color: #4338CA;
|
|
}
|
|
|
|
.launchr-save-button:disabled {
|
|
opacity: 0.7;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.launchr-save-button.loading {
|
|
background-color: #6B7280;
|
|
}
|
|
|
|
.launchr-save-button.success {
|
|
background-color: #10B981;
|
|
}
|
|
|
|
.launchr-save-button.error {
|
|
background-color: #EF4444;
|
|
}
|
|
|
|
.launchr-save-button.auth {
|
|
background-color: #F59E0B;
|
|
}
|
|
|
|
/* Animação de loading */
|
|
.launchr-save-button.loading::after {
|
|
content: '';
|
|
width: 16px;
|
|
height: 16px;
|
|
margin-left: 8px;
|
|
border: 2px solid #fff;
|
|
border-radius: 50%;
|
|
border-top-color: transparent;
|
|
animation: spin 1s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|