Skip to content

Commit 18c3467

Browse files
committed
login button
1 parent e702f2c commit 18c3467

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

web/css/main.css

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,7 @@ form {
738738
width: 108px;
739739
height: 34px;
740740
color: #555;
741-
background-color: #fafafa;
741+
background-color: #fff;
742742
border: 1px solid #ccc;
743743
}
744744

@@ -753,6 +753,31 @@ form {
753753
background-color: #ccc;
754754
}
755755

756+
.login-button {
757+
filter:chroma(color=#000000);
758+
cursor: pointer;
759+
border-radius: 3px 3px 3px 3px;
760+
font-size: 14px;
761+
font-weight: bold;
762+
padding: 2px 16px;
763+
width: 108px;
764+
height: 34px;
765+
color: #fff;
766+
background-color: #999;
767+
border: 1px solid #999;
768+
}
769+
770+
.login-button:hover {
771+
color: #fff;
772+
border: 1px solid #f79b44;
773+
background-color: #f79b44;
774+
}
775+
776+
.login-button:active {
777+
border: 1px solid #ccc;
778+
background-color: #ccc;
779+
}
780+
756781
.genpass {
757782
color: #2361a1;
758783
font-size: 8pt;

web/templates/login.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</tr>
3737
<tr>
3838
<td style="padding: 0 0 12px 0;">
39-
<input tabindex="3" type="submit" value="<?php print __('Log in');?>" class="button">
39+
<input tabindex="3" type="submit" value="<?php print __('Log in');?>" class="login-button">
4040
</td>
4141
</tr>
4242
</table>

0 commit comments

Comments
 (0)