Overview
Comment: | [fx] gc panel: update spinner |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | fx |
Files: | files | file ages | folders |
SHA3-256: |
c2a7e39d8306ef3d1ebc8a4ff9d1343b |
User & Date: | olr on 2019-05-05 10:35:25 |
Other Links: | manifest | tags |
Context
2019-05-05
| ||
10:42 | [fr] message erroné check-in: 97432da410 user: olr tags: trunk, fr | |
10:35 | [fx] gc panel: update spinner check-in: c2a7e39d83 user: olr tags: trunk, fx | |
09:55 | [fx] don’t display text formatter if not required check-in: e7d9c6ea13 user: olr tags: trunk, fx | |
Changes
Modified gc_lang/fr/webext/content_scripts/panel.css from [532ff5ba37] to [bf95844ca5].
︙ | ︙ | |||
134 135 136 137 138 139 140 | /* Spinner */ div.grammalecte_spinner { visibility: hidden; box-sizing: border-box; | | | | | | | | | | | | 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | /* Spinner */ div.grammalecte_spinner { visibility: hidden; box-sizing: border-box; width: 30px; height: 30px; position: absolute; top: 2px; left: 190px; background-color: hsla(0, 100%, 30%, .5); border: 3px solid hsla(0, 100%, 30%, .5); border-top: 3px solid hsla(0, 100%, 50%, .9); border-radius: 50%; text-align: center; cursor: pointer; box-shadow: 0 0 0 0 hsla(0, 80%, 50%, .7); animation: grammalecte-spin-big 2s linear infinite; } @keyframes grammalecte-spin-big { 0% { transform: rotate(0deg) scale(1); } 50% { transform: rotate(180deg) scale(.95); box-shadow: 0 0 0 10px hsla(0, 50%, 50%, 0); } 100% { transform: rotate(360deg) scale(1); box-shadow: 0 0 0 0 hsla(0, 50%, 50%, 0); } } |