mise au point delta icones

This commit is contained in:
deltacms 2024-05-05 10:02:04 +02:00
parent adc68dbe2e
commit 447fdc56f2
2 changed files with 10 additions and 2 deletions

View File

@ -2259,7 +2259,7 @@ class common {
// Afficher le bouton : Mise à jour détectée + activée
if ( $this->getData(['core','updateAvailable']) === true &&
$this->getData(['config','autoUpdate']) === true ) {
$rightItems .= '<li><a id="barUpdate" href="' . helper::baseUrl() . 'install/update" data-tippy-content="'.$text['core']['showBar'][15]. common::DELTA_VERSION .' vers '. helper::getOnlineVersion() .'">' . template::ico('update colorRed') . '</a></li>';
$rightItems .= '<li><a id="barUpdate" href="' . helper::baseUrl() . 'install/update" data-tippy-content="'.$text['core']['showBar'][15]. common::DELTA_VERSION .' vers '. helper::getOnlineVersion() .'">' . template::ico('spin colorRed') . '</a></li>';
}
}
if($this->getUser('group') >= self::GROUP_EDITOR) {

View File

@ -5,7 +5,15 @@
animation: spin 2s infinite linear;
display: inline-block;
}
@-moz-keyframes spin, @-webkit-keyframes spin, @-o-keyframes spin, @-ms-keyframes spin, @keyframes spin {
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(359deg);
}
}
@-moz-keyframes spin, @-webkit-keyframes spin, @-o-keyframes spin, @-ms-keyframes spin {
0% {
transform: rotate(0deg);
}