Overview
| Comment: | [fx] CSS protection for the lexicographer panel. 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: |
b0d2b75ae1658215a42dba3a3e03b211 |
| User & Date: | olr on 2018-03-26 20:51:49 |
| Other Links: | manifest | tags |
Context
|
2018-03-26
| ||
| 20:55 | [fx] CSS protection for the text formatter panel. Specify on which selector type rules are applied check-in: 417b06a92a user: olr tags: trunk, fx | |
| 20:51 | [fx] CSS protection for the lexicographer panel. Specify on which selector type rules are applied check-in: b0d2b75ae1 user: olr tags: trunk, fx | |
| 20:46 | [fx] CSS protection for the panel. Specify on which selector type rules are applied check-in: 310a839d86 user: olr tags: trunk, fx | |
Changes
Modified gc_lang/fr/webext/content_scripts/panel_lxg.css from [6e6d0e2277] to [60aef30035].
1 2 3 |
/*
Lexicographer
*/
| | | | | | | | | | | | | | | | | | | | | | | 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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
/*
Lexicographer
*/
div#grammalecte_lxg_panel_content {
padding: 5px;
font-size: 13px;
}
div.grammalecte_lxg_list_of_tokens {
margin: 5px 0 10px 0;
padding: 10px;
background-color: hsla(0, 0%, 95%, 1);
border-radius: 5px;
}
div.grammalecte_lxg_list_num {
float: right;
margin: -12px 0 5px 10px;
padding: 5px 10px;
font-family: "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif;
font-size: 14px;
font-weight: bold;
border-radius: 0 0 4px 4px;
background-color: hsl(0, 50%, 50%);
color: hsl(0, 10%, 96%);
}
div.grammalecte_lxg_separator {
margin: 20px 0;
padding: 5px 5px;
background-color: hsla(0, 0%, 75%, 1);
color: hsla(0, 0%, 96%, 1);
border-radius: 5px;
text-align: center;
font-size: 20px;
}
div.grammalecte_lxg_token_block {
margin: 4px 0;
}
div.grammalecte_lxg_token_subblock {
margin: 2px 0 2px 20px;
padding: 5px;
border-left: 4px solid hsl(150, 30%, 70%);
background-color: hsl(210, 10%, 90%);
border-radius: 2px;
}
div.grammalecte_lxg_token_descr {
margin: 1px;
padding: 1px;
}
div.grammalecte_lxg_token {
display: inline-block;
background-color: hsl(150, 0%, 50%);
color: hsl(0, 0%, 96%);
padding: 2px 5px;
border-radius: 2px;
font-family: "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif;
text-decoration: none;
font-weight: bold;
}
div.grammalecte_lxg_token_also {
display: inline-block;
margin-left: 5px;
color: hsl(0, 0%, 50%);
padding: 2px 5px;
text-decoration: none;
}
div.grammalecte_lxg_token_colon {
display: inline-block;
padding: 2px 5px;
font-family: "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif;
color: hsl(0, 0%, 50%);
}
div.grammalecte_lxg_morph_list {
padding: 2px 0 2px 20px;
}
div.grammalecte_lxg_morph_elem_inline {
display: inline-block;
font-family: "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif;
color: hsl(0, 0%, 0%);
}
div.grammalecte_lxg_morph_elem {
font-family: "Trebuchet MS", "Fira Sans", "Liberation Sans", sans-serif;
color: hsl(0, 0%, 0%);
}
div.grammalecte_lxg_token_LOC {
background-color: hsla(150, 50%, 30%, 1);
}
div.grammalecte_lxg_token_WORD {
background-color: hsla(150, 50%, 50%, 1);
}
div.grammalecte_lxg_token_ELPFX {
background-color: hsla(150, 30%, 50%, 1);
}
div.grammalecte_lxg_token_UNKNOWN {
background-color: hsla(0, 50%, 50%, 1);
}
div.grammalecte_lxg_token_NUM {
background-color: hsla(180, 50%, 50%, 1);
}
div.grammalecte_lxg_token_COMPLEX {
background-color: hsla(60, 50%, 50%, 1);
}
div.grammalecte_lxg_token_SEPARATOR {
background-color: hsla(210, 50%, 50%, 1);
}
div.grammalecte_lxg_token_LINK {
background-color: hsla(270, 50%, 50%, 1);
}
|