Overview
| Comment: | [fx] fix conjugueur HTML |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | fx | webext2 |
| Files: | files | file ages | folders |
| SHA3-256: |
3886155ba8108b8acc6c3763de1974f7 |
| User & Date: | olr on 2017-08-30 13:30:27 |
| Other Links: | branch diff | manifest | tags |
Context
|
2017-08-30
| ||
| 13:48 | [fx] rename content_modifier.js -> init.js check-in: 4b80fae088 user: olr tags: fx, webext2 | |
| 13:30 | [fx] fix conjugueur HTML check-in: 3886155ba8 user: olr tags: fx, webext2 | |
| 13:20 | [fx] remove useless code in css check-in: efd5e428ce user: olr tags: fx, webext2 | |
Changes
Modified gc_lang/fr/webext/panel/conjugueur.css from [763dd8903a] to [f7291c3c1c].
| ︙ | ︙ | |||
122 123 124 125 126 127 128 |
font: normal 20px Tahoma, "Ubuntu Condensed";
color: hsl(0, 0%, 30%);
}
input[placeholder]#verb {
color: hsl(0, 0%, 70%);
}
| | > | | 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
font: normal 20px Tahoma, "Ubuntu Condensed";
color: hsl(0, 0%, 30%);
}
input[placeholder]#verb {
color: hsl(0, 0%, 70%);
}
#conjugate {
display: inline-block;
padding: 7px 10px;
font-size: 20px;
background-color: hsl(0, 30%, 30%);
color: hsl(0, 30%, 60%);
border-radius: 3px;
text-transform: uppercase;
text-align: center;
text-decoration: none;
cursor: pointer;
}
#conjugate:hover {
background-color: hsl(0, 60%, 40%);
color: hsl(0, 60%, 70%);
box-shadow: 0 0 2px hsl(0, 60%, 50%);
}
#options {
margin: 10px 0 0 5px;
|
| ︙ | ︙ |
Modified gc_lang/fr/webext/panel/conjugueur.html from [2d253c7235] to [33a83d717b].
| ︙ | ︙ | |||
14 15 16 17 18 19 20 |
</div>
</div>
</header>
<div id="main">
<div class="inbox">
| | | | | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
</div>
</div>
</header>
<div id="main">
<div class="inbox">
<div class="right" style="margin: 10px 30px 0 0">
<input type="text" id="verb" name="verb" maxlength="40" value="" placeholder="entrez un verbe" autofocus />
<div id="conjugate">Conjuguer</div>
</div>
<h1 id="verb_title" class="center"> </h1>
<p id="info" class="center"> </p>
<p id="options">
<label for="oneg">Négative</label> <input type="checkbox" id="oneg" name="oneg" value="ON" />
· <label for="oint">Interrogative</label> <input type="checkbox" id="oint" name="oint" value="ON" />
|
| ︙ | ︙ |