1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-02-23 21:57:43 +03:00

Feature #1098: Fix some widths for the from/to inputs

(cherry picked from commit 3c807fbccdfd349107b91abb924806e7fd7891ef)
This commit is contained in:
Hector Sanjuan 2012-09-03 10:44:12 +02:00 committed by Ruben S. Montero
parent e4e7929471
commit 17d9afd01f
3 changed files with 11 additions and 11 deletions

View File

@ -74,9 +74,9 @@ var dashboard_tab_content =
<div class="panel_info">\
\
<div style="margin-left:20px;text-align:center;">\
'+tr("From")+':&nbsp;<input type="text" style="font-size:12px;width: 80px;" id="user_acct_from" name="from"/>&nbsp;&nbsp;\
'+tr("To")+':&nbsp;<input type="text" style="font-size:12px;width: 80px;" id="user_acct_to" name="to"/>\
&nbsp;&nbsp;<a href="#" class="user_acct_date_ok">'+tr('Go!')+' <i class="icon-ok"></i></a>\
'+tr("From")+':&nbsp;<input type="text" style="font-size:12px;width:80px;padding: 3px;" id="user_acct_from" name="from"/>&nbsp;&nbsp;\
'+tr("To")+':&nbsp;<input type="text" style="font-size:12px;width: 80px;padding: 3px;" id="user_acct_to" name="to"/>\
&nbsp;&nbsp;<button class="user_acct_date_ok">'+tr('Update')+'</button>\
</div>\
\
<table class="info_table">\

View File

@ -470,13 +470,13 @@ function updateGroupInfo(request,group){
var acct_tab = {
title : tr("Historical usages"),
content : '<div><table class="info_table" style="margin-bottom:0">\
content : '<div><table class="info_table" style="margin-bottom:0;width:100%;">\
<tr>\
<td class="key_td"><label for="from">'+tr('From / to')+'</label></td>\
<td class="value_td">\
<input type="text" id="group_acct_from" name="from"/>\
<input type="text" id="group_acct_to" name="to"/>\
<button id="group_acct_date_ok"><i class="icon-ok"></i></button>\
<input style="width: 7em" type="text" id="group_acct_from" name="from"/>\
<input style="width: 7em" type="text" id="group_acct_to" name="to"/>\
<button id="group_acct_date_ok">'+tr("Update")+'</button>\
</td>\
</tr>\
<!--\

View File

@ -676,13 +676,13 @@ function updateUserInfo(request,user){
var acct_tab = {
title : tr("Historical usages"),
content : '<div><table class="info_table" style="margin-bottom:0">\
content : '<div><table class="info_table" style="margin-bottom:0;width:100%">\
<tr>\
<td class="key_td"><label for="from">'+tr('From / to')+'</label></td>\
<td class="value_td">\
<input type="text" id="user_acct_from" name="from"/>\
<input type="text" id="user_acct_to" name="to"/>\
<button id="user_acct_date_ok"><i class="icon-ok"></i></button>\
<input style="width: 7em" type="text" id="user_acct_from" name="from"/>\
<input style="width: 7em" type="text" id="user_acct_to" name="to"/>\
<button id="user_acct_date_ok">'+tr("Update")+'</button>\
</td>\
</tr>\
<!--\