46 lines
890 B
CSS
46 lines
890 B
CSS
/* Estilos do botão */
|
|
.launchr-save-button {
|
|
background: none;
|
|
border: none;
|
|
padding: 4px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: all 0.2s;
|
|
margin-right: 8px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.launchr-save-button:hover {
|
|
background-color: rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.launchr-icon {
|
|
width: 20px;
|
|
height: 20px;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
/* Posicionamento no menu de controle */
|
|
.feed-shared-control-menu .launchr-save-button,
|
|
.feed-shared-update-v2__control-menu .launchr-save-button {
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.launchr-save-button.saving {
|
|
opacity: 0.7;
|
|
cursor: wait;
|
|
}
|
|
|
|
.launchr-save-button.saved {
|
|
background-color: rgba(10, 102, 194, 0.1);
|
|
}
|
|
|
|
/* Ajustes para o container do botão */
|
|
.feed-shared-control-menu .display-flex,
|
|
.feed-shared-update-v2__control-menu .display-flex {
|
|
align-items: center;
|
|
}
|