mirror of
https://github.com/serghey-rodin/vesta.git
synced 2025-08-19 21:04:06 -07:00
login button
This commit is contained in:
parent
e702f2cc57
commit
18c3467f7a
2 changed files with 27 additions and 2 deletions
|
@ -738,7 +738,7 @@ form {
|
||||||
width: 108px;
|
width: 108px;
|
||||||
height: 34px;
|
height: 34px;
|
||||||
color: #555;
|
color: #555;
|
||||||
background-color: #fafafa;
|
background-color: #fff;
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -753,6 +753,31 @@ form {
|
||||||
background-color: #ccc;
|
background-color: #ccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.login-button {
|
||||||
|
filter:chroma(color=#000000);
|
||||||
|
cursor: pointer;
|
||||||
|
border-radius: 3px 3px 3px 3px;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: bold;
|
||||||
|
padding: 2px 16px;
|
||||||
|
width: 108px;
|
||||||
|
height: 34px;
|
||||||
|
color: #fff;
|
||||||
|
background-color: #999;
|
||||||
|
border: 1px solid #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-button:hover {
|
||||||
|
color: #fff;
|
||||||
|
border: 1px solid #f79b44;
|
||||||
|
background-color: #f79b44;
|
||||||
|
}
|
||||||
|
|
||||||
|
.login-button:active {
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
background-color: #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
.genpass {
|
.genpass {
|
||||||
color: #2361a1;
|
color: #2361a1;
|
||||||
font-size: 8pt;
|
font-size: 8pt;
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td style="padding: 0 0 12px 0;">
|
<td style="padding: 0 0 12px 0;">
|
||||||
<input tabindex="3" type="submit" value="<?php print __('Log in');?>" class="button">
|
<input tabindex="3" type="submit" value="<?php print __('Log in');?>" class="login-button">
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue