Overview
| Comment: | [fx] add new sponsor | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | fx | 
| Files: | files | file ages | folders | 
| SHA3-256: | 
a6a509dd71104f38a142a4f33d4b2710 | 
| User & Date: | olr on 2017-07-25 13:11:48 | 
| Other Links: | manifest | tags | 
Context
| 
   2017-07-25 
 | ||
| 13:23 | [tb] new sponsor + [update links] check-in: 5e81756984 user: olr tags: trunk, tb, fx | |
| 13:11 | [fx] add new sponsor check-in: a6a509dd71 user: olr tags: trunk, fx | |
| 11:05 | [fr][js] code de positionnement manquant check-in: 16de6e9ef8 user: olr tags: trunk, fr | |
Changes
Modified gc_lang/fr/xpi/data/about_panel.css from [5a951f6db8] to [01be88bd1f].
| ︙ | ︙ | |||
36 37 38 39 40 41 42  | 
    letter-spacing: -0.08em;
}
.goto {
    letter-spacing: -0.08em;
}
#links {
 | |  | 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50  | 
    letter-spacing: -0.08em;
}
.goto {
    letter-spacing: -0.08em;
}
#links {
    padding: 6px 0 3px 0;
}
a.link {
    color: hsl(210, 30%, 40%);
    text-decoration: none;
}
a.link:hover {
 | 
| ︙ | ︙ | |||
179 180 181 182 183 184 185  | 
    color: hsl(180, 80%, 20%);
    text-shadow: 0 0 1px hsl(180, 50%, 10%);
}
footer#promo {
    background-color: hsl(0, 0%, 92%);
    border-top: 1px solid hsl(0, 0%, 86%);
 | |  | 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198  | 
    color: hsl(180, 80%, 20%);
    text-shadow: 0 0 1px hsl(180, 50%, 10%);
}
footer#promo {
    background-color: hsl(0, 0%, 92%);
    border-top: 1px solid hsl(0, 0%, 86%);
    padding: 10px;
}
footer#thanks {
    background-color: hsl(0, 0%, 86%);
    border-top: 1px solid hsl(0, 0%, 80%);
    padding: 15px 15px;
}
footer#thanks p {
    margin: 3px 0;
    font-size: 14px;
}
 | 
Modified gc_lang/fr/xpi/data/about_panel.html from [29f0840170] to [e28f7e3f54].
| ︙ | ︙ | |||
63 64 65 66 67 68 69 70 71 72 73 74 75 76  | 
        
        <footer id="thanks">
            <p class="center" data-l10n-id="thanks1"></p>
            <p class="center">
                <a id="mainsponsor" href="http://www.lamouette.org/" onclick="return false;">
                    <img src="img/LaMouette.png" style="border: 1px solid #C0C0C0" />
                </a>
            </p>
            <p class="center">
                <a id="othersponsors" class="link" href="http://www.dicollecte.org/grammalecte/soutiens.php" onclick="return false;">
                    <b data-l10n-id="thanks2"></b>
                </a>
            </p>
        </footer>
 | > > > > >  | 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81  | 
        
        <footer id="thanks">
            <p class="center" data-l10n-id="thanks1"></p>
            <p class="center">
                <a id="mainsponsor" href="http://www.lamouette.org/" onclick="return false;">
                    <img src="img/LaMouette.png" style="border: 1px solid #C0C0C0" />
                </a>
            </p>
            <p class="center">
                <a id="mainsponsor2" href="http://www.algoo.fr/" onclick="return false;">
                    <img src="img/Algoo_logo.png" style="border: 1px solid #C0C0C0" />
                </a>
            </p>
            <p class="center">
                <a id="othersponsors" class="link" href="http://www.dicollecte.org/grammalecte/soutiens.php" onclick="return false;">
                    <b data-l10n-id="thanks2"></b>
                </a>
            </p>
        </footer>
 | 
| ︙ | ︙ | 
Modified gc_lang/fr/xpi/data/about_panel.js from [f7f7c93567] to [382aa0fb44].
| ︙ | ︙ | |||
54 55 56 57 58 59 60 61 62 63 64 65 66 67  | 
document.getElementById('website').addEventListener("click", function (event) {
	self.port.emit('openURL', "http://www.dicollecte.org/grammalecte/");
});
document.getElementById('mainsponsor').addEventListener("click", function (event) {
	self.port.emit('openURL', "http://www.lamouette.org/");
});
document.getElementById('othersponsors').addEventListener("click", function (event) {
	self.port.emit('openURL', "http://www.dicollecte.org/grammalecte/soutiens.php");
});
 | > > >  | 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70  | 
document.getElementById('website').addEventListener("click", function (event) {
	self.port.emit('openURL', "http://www.dicollecte.org/grammalecte/");
});
document.getElementById('mainsponsor').addEventListener("click", function (event) {
	self.port.emit('openURL', "http://www.lamouette.org/");
});
document.getElementById('mainsponsor2').addEventListener("click", function (event) {
	self.port.emit('openURL', "http://www.algoo.fr/");
});
document.getElementById('othersponsors').addEventListener("click", function (event) {
	self.port.emit('openURL', "http://www.dicollecte.org/grammalecte/soutiens.php");
});
 | 
| ︙ | ︙ | 
Modified gc_lang/fr/xpi/ui.js from [eccf91a376] to [3411c9d37e].
| ︙ | ︙ | |||
164 165 166 167 168 169 170  | 
                xAboutPanel.port.emit("showHelp");
            },
            position: {
                right: 0,
                bottom: 0
            },
            width: 340,
 | |  | 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178  | 
                xAboutPanel.port.emit("showHelp");
            },
            position: {
                right: 0,
                bottom: 0
            },
            width: 340,
            height: 730
        });
        xAboutPanel.port.emit("calcDefaultPanelHeight");
        xAboutPanel.port.on("setHeight", function (n) {
            xAboutPanel.resize(320, n);
        });
 | 
| ︙ | ︙ |