Overview
| Comment: | [fx] gc panel: use SVG pictures for move buttons (CSS) [thanks to Naheulf] |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk | fx |
| Files: | files | file ages | folders |
| SHA3-256: |
faea47f82501793e33e14026bed154c2 |
| User & Date: | olr on 2019-05-19 19:12:01 |
| Other Links: | manifest | tags |
Context
|
2019-05-20
| ||
| 08:40 | [fr] ocr: set options to ocr check-in: 9f2404ab0b user: olr tags: trunk, fr | |
|
2019-05-19
| ||
| 19:12 | [fx] gc panel: use SVG pictures for move buttons (CSS) [thanks to Naheulf] check-in: faea47f825 user: olr tags: trunk, fx | |
| 19:03 | [fr] ocr màj check-in: 96bd19f3b6 user: olr tags: trunk, fr | |
Changes
Modified gc_lang/fr/webext/content_scripts/panel.css from [a58a553101] to [8c125dc8b5].
| ︙ | ︙ | |||
81 82 83 84 85 86 87 88 89 |
}
div.grammalecte_move_button {
padding: 1px 5px;
border-radius: 16px;
color: hsl(180, 0%, 100%);
opacity: .5;
}
div.grammalecte_move_button_up {
padding: 1px 10px;
| > > > > | | | | | 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 111 112 113 |
}
div.grammalecte_move_button {
padding: 1px 5px;
border-radius: 16px;
color: hsl(180, 0%, 100%);
opacity: .5;
}
div.grammalecte_move_button_center {
padding: 1px 10px;
background: center no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12"><circle fill="%23fff" cx="6" cy="6" r="4"/></svg>') ;
}
div.grammalecte_move_button_up {
padding: 1px 10px;
background: center no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12"><path fill="%23fff" d="m 6,2 6,6 h -12"/></svg>');
}
div.grammalecte_move_button_right {
padding: 1px 10px;
background: center no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12"><path fill="%23fff" d="m 2,0 6,6 -6,6"/></svg>');
}
div.grammalecte_move_button_down {
padding: 1px 10px;
background: center no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12"><path fill="%23fff" d="m 0,2 6,6 6,-6"/></svg>');
}
div.grammalecte_move_button_left {
padding: 1px 10px;
background: center no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12"><path fill="%23fff" d="m 2,6 6,6 v -12"/></svg>');
}
div.grammalecte_move_button:hover {
background-color: hsla(180, 80%, 50%, .1);
color: hsla(180, 0%, 100%, 1);
opacity: 1;
}
div.grammalecte_close_button {
|
| ︙ | ︙ |
Modified gc_lang/fr/webext/content_scripts/panel.js from [e1fa20e342] to [811e4142bb].
| ︙ | ︙ | |||
72 73 74 75 76 77 78 |
}
if (this.bFlexible) {
xButtonLine.appendChild(this._createMoveButton("changeWidth", "⭾", "Bascule la largeur"));
xButtonLine.appendChild(this._createMoveButton("changeHeight", "⭿", "Bascule la hauteur"));
}
xButtonLine.appendChild(this._createMoveButton("up", " ", "Monter")); // use char ⏶ when Windows 10 be vast majority of OS (Trebuchet MS not updated on other OS)
xButtonLine.appendChild(this._createMoveButton("left", " ", "À gauche")); // use char ⏴ when Windows 10 be vast majority of OS (Trebuchet MS not updated on other OS)
| | | 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
}
if (this.bFlexible) {
xButtonLine.appendChild(this._createMoveButton("changeWidth", "⭾", "Bascule la largeur"));
xButtonLine.appendChild(this._createMoveButton("changeHeight", "⭿", "Bascule la hauteur"));
}
xButtonLine.appendChild(this._createMoveButton("up", " ", "Monter")); // use char ⏶ when Windows 10 be vast majority of OS (Trebuchet MS not updated on other OS)
xButtonLine.appendChild(this._createMoveButton("left", " ", "À gauche")); // use char ⏴ when Windows 10 be vast majority of OS (Trebuchet MS not updated on other OS)
xButtonLine.appendChild(this._createMoveButton("center", " ", "Centrer")); // char • can be used already
xButtonLine.appendChild(this._createMoveButton("right", " ", "À droite")); // use char ⏵ when Windows 10 be vast majority of OS (Trebuchet MS not updated on other OS)
xButtonLine.appendChild(this._createMoveButton("down", " ", "Descendre")); // use char ⏷ when Windows 10 be vast majority of OS (Trebuchet MS not updated on other OS)
this.xCloseButton = this._createCloseButton();
xButtonLine.appendChild(this.xCloseButton);
return xButtonLine;
}
|
| ︙ | ︙ |