Skip to content

Commit ebf9994

Browse files
committed
fixed html buttons
1 parent 9abafe3 commit ebf9994

File tree

5 files changed

+18
-8
lines changed

5 files changed

+18
-8
lines changed

web/templates/admin/edit_db.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
</tr></table>
3737
<table class="data-col2" width="600px">
3838
<form method="post" name="v_add_user">
39-
<tr><td style="padding: 10 0 0 2px; color:99a7af;" >Prefix "<?php echo $user."_"; ?>" will be automaticaly added to database name and database user</td></tr>
4039
<tr><td class="add-text" style="padding: 10 0 0 2px;">Database</td></tr>
4140
<tr><td><input type="text" size="20" class="add-input" name="v_database" <?php if (!empty($v_database)) echo "value=".$v_database; ?> disabled></td></tr>
4241
<tr><td class="add-text" style="padding: 10px 0 0 2px;">Username</td></tr>

web/templates/admin/menu_log.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<table class="sub-menu">
22
<tr>
3-
<td width="142px" style="padding: 28px 0 32px 6px">
3+
<td width="142px" style="padding: 24px 0 31px 6px">
44
<td style="text-align: right;"><input type="text" size="30" style="padding: 3px 80px 3px 0;"> <button> Search </button></td>
55
</tr>
66
</table>

web/templates/admin/menu_rrd.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<table class="sub-menu">
22
<tr >
3-
<td style="padding: 24px 0 16px 24px">
3+
<td style="padding: 19px 0 16px 22px">
44
<a class="add" <?php if ((empty($_GET['period'])) || ($_GET['period'] == 'daily')) echo "style='color: #34536A'" ?> href="?period=daily">Daily</a>
55
<a class="add" <?php if ($_GET['period'] == 'weekly') echo "style='color: #34536A'" ?> href="?period=weekly">Weekly</a>
66
<a class="add" <?php if ($_GET['period'] == 'monthly') echo "style='color: #34536A'" ?> href="?period=monthly">Monthly</a>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<table class="sub-menu">
22
<tr>
3-
<td width="142px" style="padding: 28px 0 32px 6px">
3+
<td width="142px" style="padding: 24px 0 31px 6px">
44
<td style="text-align: right;"><input type="text" size="30" style="padding: 3px 80px 3px 0;"> <button> Search </button></td>
55
</tr>
66
</table>

web/templates/login.html

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
padding: 10px 0 0 2px;
4141
color: #433832;
4242
font-family: Arial, sans-serif;
43-
font-size: 14pt;
43+
font-size: 12pt;
4444
}
4545
.login-text1 a {
4646
padding: 0 6px;
@@ -80,11 +80,22 @@
8080
.loggin-button {
8181
padding: 4px;
8282
margin: 0 6px 0 0;
83-
font-size: 10pt;
84-
83+
cursor: pointer;
84+
color: #333333;
85+
background-color: #f6f6f6;
86+
border: 1px solid #ACACAC;
87+
border-radius: 3px 3px 3px 3px;
88+
font-size: 12px;
89+
padding: 3px 16px;
90+
width: 105px;
8591
}
8692

87-
93+
.loggin-button:hover {
94+
background-color: #f0f0f0;
95+
}
96+
button:active {
97+
background-color: #EBE9DC;
98+
}
8899
</style>
89100
</head>
90101
<body>

0 commit comments

Comments
 (0)