Overview
| Comment: | [fx] tf panel: CSS adjustment |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | fx |
| Files: | files | file ages | folders |
| SHA3-256: |
e3a06dd49b2a2d8a193a5b70cedff816 |
| User & Date: | olr on 2019-05-18 11:47:58 |
| Other Links: | manifest | tags |
Context
|
2019-05-19
| ||
| 09:18 | [fr] faux positifs et ajustements check-in: 1a00535bff user: olr tags: trunk, fr | |
|
2019-05-18
| ||
| 11:47 | [fx] tf panel: CSS adjustment check-in: e3a06dd49b user: olr tags: trunk, fx | |
| 11:34 | [fx] use flow message for gc messages, and CSS update check-in: a8ce95d9cc user: olr tags: trunk, fx | |
Changes
Modified gc_lang/fr/webext/content_scripts/panel_tf.css from [71267dfd17] to [24cfff49d3].
1 2 3 4 5 6 7 8 9 10 11 12 13 |
/*
CSS for the Text Formatter
*/
/*
Options
*/
div#grammalecte_tf_options {
display: flex;
padding: 10px;
}
div.grammalecte_tf_column {
| | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
/*
CSS for the Text Formatter
*/
/*
Options
*/
div#grammalecte_tf_options {
display: flex;
padding: 10px;
}
div.grammalecte_tf_column {
min-width: 45%;
padding: 0 5px;
}
div.grammalecte_tf_groupblock {
padding: 1px 10px 10px 13px;
margin: 10px 0 15px 0;
background-color: hsl(210, 10%, 92%);
border: 0 1px 1px 1px;
|
| ︙ | ︙ | |||
108 109 110 111 112 113 114 |
background-color: hsl(210, 50%, 50%);
color: hsl(210, 0%, 100%);
}
div#grammalecte_tf_reset:hover {
background-color: hsl(210, 50%, 40%);
}
progress#grammalecte_tf_progressbar {
| | > | 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
background-color: hsl(210, 50%, 50%);
color: hsl(210, 0%, 100%);
}
div#grammalecte_tf_reset:hover {
background-color: hsl(210, 50%, 40%);
}
progress#grammalecte_tf_progressbar {
flex-grow: 1;
height: 29px;
margin-left: 10px;
}
span#grammalecte_tf_time_res {
width: 60px;
padding: 5px 10px;
}
div#grammalecte_tf_apply {
background-color: hsl(120, 50%, 50%);
color: hsl(150, 0%, 100%);
}
div#grammalecte_tf_apply:hover {
background-color: hsl(120, 50%, 40%);
}
|