Overview
| Comment: | [fx] update ui |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | fx |
| Files: | files | file ages | folders |
| SHA3-256: |
c834b8586573820a2b1488da0869639e |
| User & Date: | olr on 2019-05-04 13:17:54 |
| Other Links: | manifest | tags |
Context
|
2019-05-04
| ||
| 14:17 | [fx] small code cleaning check-in: ce039a8de4 user: olr tags: trunk, fx | |
| 13:17 | [fx] update ui check-in: c834b85865 user: olr tags: trunk, fx | |
| 10:40 | [fx] update: better looking ui check-in: 67c539f322 user: olr tags: trunk, fx | |
Changes
Modified gc_lang/fr/webext/content_scripts/init.js from [c64c3933c0] to [d5cb24d97c].
| ︙ | |||
139 140 141 142 143 144 145 | 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | - + |
this.lMenu.length = 0; // to clear an array
this.listenRightClick();
this.createMenus();
},
createTFPanel: function () {
if (this.oTFPanel === null) {
|
| ︙ |
Modified gc_lang/fr/webext/content_scripts/message_box.css from [e90014c994] to [391156b42c].
| ︙ | |||
8 9 10 11 12 13 14 | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | - |
position: fixed;
padding: 0;
margin: 0;
top: 50%;
left: 50%;
width: 400px;
margin-left: -200px;
|
| ︙ |
Modified gc_lang/fr/webext/content_scripts/message_box.js from [58271c390a] to [1023251c05].
| ︙ | |||
54 55 56 57 58 59 60 | 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | - + |
_createButtons () {
let xButtonLine = oGrammalecte.createNode("div", {className: "grammalecte_panel_commands"});
xButtonLine.appendChild(this._createCloseButton());
return xButtonLine;
}
_createCloseButton () {
|
| ︙ |
Modified gc_lang/fr/webext/content_scripts/panel.css from [1bbc89bbcd] to [532ff5ba37].
| ︙ | |||
51 52 53 54 55 56 57 58 | 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 | + + - + - - - + + + + - - - + - - - - + - - - + - - - - - |
/*visibility: hidden;*/
font-size: 4px;
color: hsla(210, 0%, 90%, 0);
}
div.grammalecte_panel_commands {
float: right;
display: flex;
align-items: stretch;
}
|
| ︙ |
Modified gc_lang/fr/webext/content_scripts/panel.js from [a5ed0355b2] to [004624125f].
| ︙ | |||
58 59 60 61 62 63 64 | 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 | - - + + - - + + - + - + - + |
_createButtons () {
let xButtonLine = oGrammalecte.createNode("div", {className: "grammalecte_panel_commands"});
xButtonLine.appendChild(this.xWaitIcon);
if (this.sId === "grammalecte_gc_panel") {
xButtonLine.appendChild(this._createCopyButton());
}
|
| ︙ |