Overview
| Comment: | [fx] WebExt: z-index adjustments |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | fx |
| Files: | files | file ages | folders |
| SHA3-256: |
995e6a8212e6aff1504449397e3f8774 |
| User & Date: | olr on 2017-09-11 10:05:34 |
| Other Links: | manifest | tags |
Context
|
2017-09-11
| ||
| 10:39 | [fx] WebExt: forget font-awesome for content-scripts check-in: e93b97f0be user: olr tags: trunk, fx | |
| 10:05 | [fx] WebExt: z-index adjustments check-in: 995e6a8212 user: olr tags: trunk, fx | |
| 09:37 | [fx] WebExt: list of exceptions for loading content-scripts: wait that the page is fully loaded check-in: 455edca358 user: olr tags: trunk, fx | |
Changes
Modified gc_lang/fr/webext/content_scripts/menu.css from [1e94e871c3] to [d0d5a23134].
| ︙ | ︙ | |||
11 12 13 14 15 16 17 |
background-color: hsla(210, 80%, 80%, .5);
border: 4px solid hsla(210, 80%, 60%, .5);
border-top: 4px solid hsla(210, 100%, 40%, .7);
border-bottom: 4px solid hsla(210, 100%, 40%, .7);
border-radius: 50%;
text-align: center;
cursor: pointer;
| | | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
background-color: hsla(210, 80%, 80%, .5);
border: 4px solid hsla(210, 80%, 60%, .5);
border-top: 4px solid hsla(210, 100%, 40%, .7);
border-bottom: 4px solid hsla(210, 100%, 40%, .7);
border-radius: 50%;
text-align: center;
cursor: pointer;
z-index: 2147483640; /* maximum is 2147483647: https://stackoverflow.com/questions/491052/minimum-and-maximum-value-of-z-index */
animation: grammalecte-spin 4s ease infinite;
}
.grammalecte_menu_main_button:hover {
border: 4px solid hsla(210, 80%, 35%, .5);
background-color: hsla(210, 80%, 55%, .5);
box-shadow: 0 0 10px hsla(210, 100%, 30%, .5);
animation: grammalecte-spin 1s linear infinite;
|
| ︙ | ︙ | |||
48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
position: absolute;
margin-left: -10px;
border-radius: 5px;
border: 3px solid hsl(210, 50%, 30%);
box-shadow: 0px 0px 2px hsla(210, 10%, 10%, .5);
background-color: hsl(210, 50%, 30%);
font-family: "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif;
}
.grammalecte_menu_item {
padding: 3px 10px;
background-color: hsl(210, 50%, 40%);
font-size: 14px;
color: hsl(210, 50%, 92%);
| > | 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
position: absolute;
margin-left: -10px;
border-radius: 5px;
border: 3px solid hsl(210, 50%, 30%);
box-shadow: 0px 0px 2px hsla(210, 10%, 10%, .5);
background-color: hsl(210, 50%, 30%);
font-family: "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif;
z-index: 2147483640; /* maximum is 2147483647: https://stackoverflow.com/questions/491052/minimum-and-maximum-value-of-z-index */
}
.grammalecte_menu_item {
padding: 3px 10px;
background-color: hsl(210, 50%, 40%);
font-size: 14px;
color: hsl(210, 50%, 92%);
|
| ︙ | ︙ |
Modified gc_lang/fr/webext/content_scripts/panel.css from [64359a554e] to [42670977b4].
1 2 3 4 5 6 7 8 9 10 |
/*
CSS
Content panels for Grammalecte
*/
.grammalecte_panel {
padding: 0;
margin: 0;
position: fixed;
box-sizing: content-box;
| | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
/*
CSS
Content panels for Grammalecte
*/
.grammalecte_panel {
padding: 0;
margin: 0;
position: fixed;
box-sizing: content-box;
z-index: 2147483641; /* maximum is 2147483647: https://stackoverflow.com/questions/491052/minimum-and-maximum-value-of-z-index */
border: 2px solid hsl(210, 10%, 50%);
border-radius: 10px 10px 10px 10px;
background-color: hsl(210, 0%, 100%);
color: hsl(0, 0%, 0%);
font-family: "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif;
box-shadow: 0 0 2px 1px hsla(210, 50%, 50%, .5);
line-height: normal;
|
| ︙ | ︙ |