Overview
| Comment: | [fx] tf panel: size adjustements | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | fx | 
| Files: | files | file ages | folders | 
| SHA3-256: | 
f52ae373321cd461036ab8619b87a1ac | 
| User & Date: | olr on 2019-05-22 06:37:00 | 
| Other Links: | manifest | tags | 
Context
| 
   2019-05-22 
 | ||
| 07:11 | [fr] écriture épicène: ajustements check-in: 02d41c9147 user: olr tags: trunk, fr | |
| 06:37 | [fx] tf panel: size adjustements check-in: f52ae37332 user: olr tags: trunk, fx | |
| 05:57 | [fr] ajustements check-in: 835cc6ea56 user: olr tags: trunk, fr | |
Changes
Modified gc_lang/fr/webext/content_scripts/panel.js from [a63de2133b] to [13d6f6b0c2].
| ︙ | ︙ | |||
186 187 188 189 190 191 192  | 
    setSizeAndPosition () {
        // size
        if (this.xWidthButton && this.xHeightButton) {
            this.xWidthButton.style.opacity = (this.bHorizStrech) ? ".9" : "";
            this.xHeightButton.style.opacity = (this.bVertStrech) ? ".9" : "";
        }
        let nWidth = Math.min(this.nWidth, window.innerWidth-200);
 | | > | | <  | 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207  | 
    setSizeAndPosition () {
        // size
        if (this.xWidthButton && this.xHeightButton) {
            this.xWidthButton.style.opacity = (this.bHorizStrech) ? ".9" : "";
            this.xHeightButton.style.opacity = (this.bVertStrech) ? ".9" : "";
        }
        let nWidth = Math.min(this.nWidth, window.innerWidth-200);
        let nHeight = Math.min(this.nHeight, window.innerHeight-100);
        if (this.bFlexible) {
            // width
            if (this.bHorizStrech) {
                nWidth = Math.min(this.nWidth*1.33, window.innerWidth-200);
            }
            // height
            nHeight = (this.bVertStrech) ? (([4, 5, 6].includes(this.nPosition)) ? (window.innerHeight-100) : Math.floor(window.innerHeight*0.67)) : Math.floor(window.innerHeight*0.45);
        }
        this.xPanel.style.width = `${nWidth}px`;
        this.xPanel.style.height = `${nHeight}px`;
        // position
        let oPos = null;
        switch (this.nPosition) {
            case 1: oPos = { top:"",     right:"",     bottom:"-2px", left:"-2px", marginTop:"",                marginLeft:"" }; break;
 | 
| ︙ | ︙ | 
Modified gc_lang/fr/webext/content_scripts/panel_tf.css from [24cfff49d3] to [1dbbad96ad].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20  | 
/*
    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%);
 | >  | 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 {
    flex-grow: 1;
    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%);
 | 
| ︙ | ︙ |