Overview
Comment: | [fx] CSS protection for the message box. Specify on which selector type rules are applied |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | fx |
Files: | files | file ages | folders |
SHA3-256: |
50786fb3977470785e4030e0b98c28c9 |
User & Date: | olr on 2018-03-26 20:43:31 |
Other Links: | manifest | tags |
Context
2018-03-26
| ||
20:46 | [fx] CSS protection for the panel. Specify on which selector type rules are applied check-in: 310a839d86 user: olr tags: trunk, fx | |
20:43 | [fx] CSS protection for the message box. Specify on which selector type rules are applied check-in: 50786fb397 user: olr tags: trunk, fx | |
20:40 | [fx] CSS protection for the menu. Specify on which selector type rules are applied check-in: 38923d52c2 user: olr tags: trunk, fx | |
Changes
Modified gc_lang/fr/webext/content_scripts/message_box.css from [ef382191cd] to [e90014c994].
1 2 3 4 5 | /* CSS Message box for Grammalecte */ | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | /* CSS Message box for Grammalecte */ div.grammalecte_message_box { all: initial; position: fixed; padding: 0; margin: 0; top: 50%; left: 50%; width: 400px; |
︙ | ︙ | |||
23 24 25 26 27 28 29 | font-family: "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif; box-shadow: 0 0 2px 1px hsla(210, 50%, 50%, .5); line-height: normal; text-shadow: none; text-decoration: none; text-align: left; } | | | | | | | | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | font-family: "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif; box-shadow: 0 0 2px 1px hsla(210, 50%, 50%, .5); line-height: normal; text-shadow: none; text-decoration: none; text-align: left; } div.grammalecte_message_box img { display: inline-block; margin: 0; padding: 0; } div.grammalecte_message_box_bar { position: sticky; width: 100%; background-color: hsl(210, 50%, 50%); border-radius: 10px 10px 0 0; border-bottom: 1px solid hsl(210, 50%, 47%); color: hsl(0, 10%, 92%); font-size: 20px; } div.grammalecte_message_box_title { padding: 10px 20px; } div.grammalecte_message_box_label { display: inline-block; padding: 0 10px; } div.grammalecte_message_box_invisible_marker { position: absolute; /*visibility: hidden;*/ font-size: 6px; color: hsl(210, 50%, 50%); /* same color than panel_bar background */ } div.grammalecte_message_box_content { height: calc(100% - 55px); /* panel height - title_bar */ padding: 20px; color: hsl(0, 50%, 96%); font-size: 18px; } |