Overview
| Comment: | [fx] panel color update |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | fx |
| Files: | files | file ages | folders |
| SHA3-256: |
559de398babe3f89c64d5ed4b456fe2a |
| User & Date: | olr on 2018-04-24 16:28:33 |
| Other Links: | manifest | tags |
Context
|
2018-04-25
| ||
| 18:24 | [graphspell] cut function update check-in: c2f9cc4e97 user: olr tags: trunk, graphspell | |
|
2018-04-24
| ||
| 16:28 | [fx] panel color update check-in: 559de398ba user: olr tags: trunk, fx | |
| 13:36 | v0.6.4.1 check-in: 7910daeb52 user: olr tags: trunk, v0.6.4.1 | |
Changes
Modified gc_lang/fr/webext/content_scripts/panel.css from [2b6e1d1881] to [b1d4b36570].
1 2 3 4 5 6 7 8 9 10 11 12 | 1 2 3 4 5 6 7 8 9 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 37 38 39 40 41 42 43 44 | - + - + - + - - + + |
/*
CSS
Content panels for Grammalecte
*/
div.grammalecte_panel {
all: initial;
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 */
|
| ︙ | |||
64 65 66 67 68 69 70 | 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | - + - + - + |
font-size: 22px;
font-weight: bold;
color: hsl(150, 0%, 100%);
text-align: center;
cursor: pointer;
}
div.grammalecte_copy_button:hover {
|
| ︙ |