Overview
Comment: | [fx] CSS: menu spinner update |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | fx |
Files: | files | file ages | folders |
SHA3-256: |
f7cf79677cba0b2ea144716576c58862 |
User & Date: | olr on 2018-04-16 21:12:29 |
Other Links: | manifest | tags |
Context
2018-04-17
| ||
08:27 | [fx] gc panel: better ui for button Reanalyze (fixed width + color change) check-in: af3b66aa85 user: olr tags: trunk, fx | |
2018-04-16
| ||
21:12 | [fx] CSS: menu spinner update check-in: f7cf79677c user: olr tags: trunk, fx | |
19:30 | [fx] editable node: don’t use innerHTML -> createTextNode check-in: 0cdaf7b284 user: olr tags: trunk, fx | |
Changes
Modified gc_lang/fr/webext/content_scripts/menu.css from [8c6775f5ab] to [349cfd675a].
︙ | ︙ | |||
10 11 12 13 14 15 16 | all: initial; position: absolute; box-sizing: border-box; display: none; margin: -8px 0 0 -8px; width: 16px; height: 16px; | | | | | | | | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | all: initial; position: absolute; box-sizing: border-box; display: none; margin: -8px 0 0 -8px; width: 16px; height: 16px; background-color: hsla(210, 80%, 95%, .9); border: 3px solid hsla(210, 80%, 50%, .9); border-top: 3px solid hsla(210, 80%, 90%, .9); border-left: 3px solid hsla(210, 80%, 90%, .9); border-radius: 50%; text-align: center; cursor: pointer; box-shadow: 0 0 0 0 hsla(210, 80%, 50%, .7); /*z-index: 2147483640; /* maximum is 2147483647: https://stackoverflow.com/questions/491052/minimum-and-maximum-value-of-z-index */ animation: grammalecte-spin 2s ease 1; } div.grammalecte_menu_main_button:hover { background-color: hsla(210, 80%, 50%, .05); animation: grammalecte-spin .5s linear infinite; } @keyframes grammalecte-spin { 0% { transform: rotate(0deg) scale(1); } |
︙ | ︙ |