[Vtigercrm-commits] [vtiger-commits] r9952 - in /vtigercrm/branches/5.0.3: Smarty/templates/ Smarty/templates/Inventory/ themes/alphagrey/ themes/bluelagoon/ themes/woodspice/
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Mon Dec 11 04:39:06 EST 2006
Author: richie
Date: Mon Dec 11 02:38:54 2006
New Revision: 9952
Log:
Changes made to wrap the contents in the description field
Modified:
vtigercrm/branches/5.0.3/Smarty/templates/DetailView.tpl
vtigercrm/branches/5.0.3/Smarty/templates/DetailViewFields.tpl
vtigercrm/branches/5.0.3/Smarty/templates/DetailViewUI.tpl
vtigercrm/branches/5.0.3/Smarty/templates/Inventory/InventoryDetailView.tpl
vtigercrm/branches/5.0.3/themes/alphagrey/style.css
vtigercrm/branches/5.0.3/themes/bluelagoon/style.css
vtigercrm/branches/5.0.3/themes/woodspice/style.css
Modified: vtigercrm/branches/5.0.3/Smarty/templates/DetailView.tpl
==============================================================================
--- vtigercrm/branches/5.0.3/Smarty/templates/DetailView.tpl (original)
+++ vtigercrm/branches/5.0.3/Smarty/templates/DetailView.tpl Mon Dec 11 02:38:54 2006
@@ -288,13 +288,12 @@
{else}
<td class="dvtCellLabel" align=right width=25%><input type="hidden" id="hdtxt_IsAdmin" value={$keyadmin}></input>{$label}</td>
{/if}
-{if $EDIT_PERMISSION eq 'yes'} {include file="DetailViewUI.tpl"}
-{else} {include file="DetailViewFields.tpl"}
-{/if}
- {else}
- <td class="dvtCellLabel" align=right> </td>
- <td class="dvtCellInfo" align=left > </td>
- {/if}
+ {if $EDIT_PERMISSION eq 'yes'}
+ {include file="DetailViewUI.tpl"}
+ {else}
+ {include file="DetailViewFields.tpl"}
+ {/if}
+ {/if}
{/foreach}
</tr>
{/foreach}
Modified: vtigercrm/branches/5.0.3/Smarty/templates/DetailViewFields.tpl
==============================================================================
--- vtigercrm/branches/5.0.3/Smarty/templates/DetailViewFields.tpl (original)
+++ vtigercrm/branches/5.0.3/Smarty/templates/DetailViewFields.tpl Mon Dec 11 02:38:54 2006
@@ -32,7 +32,7 @@
<td width=25% class="dvtCellInfo" align="left"> <a href="http://{$keyval}" target="_blank">{$keyval}</a>
</td>
{elseif $keyid eq '19' || $keyid eq '20'} <!--TextArea/Description-->
- <td width=25% class="dvtCellInfo" align="left"> {$keyval}
+ <td width=100% class="dvtCellInfo" align="left"> {$keyval}
</td>
{elseif $keyid eq '21' || $keyid eq '24' || $keyid eq '22'} <!--TextArea/Street-->
<td width=25% class="dvtCellInfo" align="left"> {$keyval}
Modified: vtigercrm/branches/5.0.3/Smarty/templates/DetailViewUI.tpl
==============================================================================
--- vtigercrm/branches/5.0.3/Smarty/templates/DetailViewUI.tpl (original)
+++ vtigercrm/branches/5.0.3/Smarty/templates/DetailViewUI.tpl Mon Dec 11 02:38:54 2006
@@ -133,7 +133,7 @@
{/if}
<!--{assign var="DESCRIPTION_SEPARATOR_STRING" value=" "} {* Separates Description *}-->
<!--{assign var="DESCRIPTION_WORDWRAP_WIDTH" value="70"} {* No. of chars for word wrapping long lines of Description *}-->
- <td width=25% class="dvtCellInfo" align="left" id="mouseArea_{$label}" onmouseover="hndMouseOver({$keyid},'{$label}');" onmouseout="fnhide('crmspanid');"> <span id="dtlview_{$label}">
+ <td width=100% class="dvtCellInfo" align="left" id="mouseArea_{$label}" onmouseover="hndMouseOver({$keyid},'{$label}');" onmouseout="fnhide('crmspanid');"> <span id="dtlview_{$label}">
{$keyval}<!--|replace:$DESCRIPTION_SEPARATOR_STRING:"\x1"|replace:" ":"\x0"|replace:"\x1":$DESCRIPTION_SEPARATOR_STRING|wordwrap:$DESCRIPTION_WORDWRAP_WIDTH:"<br> "|replace:"\x0":" "}-->
</span>
<div id="editarea_{$label}" style="display:none;">
Modified: vtigercrm/branches/5.0.3/Smarty/templates/Inventory/InventoryDetailView.tpl
==============================================================================
--- vtigercrm/branches/5.0.3/Smarty/templates/Inventory/InventoryDetailView.tpl (original)
+++ vtigercrm/branches/5.0.3/Smarty/templates/Inventory/InventoryDetailView.tpl Mon Dec 11 02:38:54 2006
@@ -204,9 +204,6 @@
{else}
{include file="DetailViewFields.tpl"}
{/if}
- {else}
- <td class="dvtCellLabel" align=right> </td>
- <td class="dvtCellInfo" align=left > </td>
{/if}
{/foreach}
</tr>
Modified: vtigercrm/branches/5.0.3/themes/alphagrey/style.css
==============================================================================
--- vtigercrm/branches/5.0.3/themes/alphagrey/style.css (original)
+++ vtigercrm/branches/5.0.3/themes/alphagrey/style.css Mon Dec 11 02:38:54 2006
@@ -320,7 +320,6 @@
padding-left:10px;
padding-right:10px;
border-bottom:1px dotted #efefef;
- white-space:nowrap;
}
.rightMailMerge {
Modified: vtigercrm/branches/5.0.3/themes/bluelagoon/style.css
==============================================================================
--- vtigercrm/branches/5.0.3/themes/bluelagoon/style.css (original)
+++ vtigercrm/branches/5.0.3/themes/bluelagoon/style.css Mon Dec 11 02:38:54 2006
@@ -321,7 +321,6 @@
padding-left:10px;
padding-right:10px;
border-bottom:1px solid #efefef;
- white-space:nowrap;
}
.rightMailMerge {
Modified: vtigercrm/branches/5.0.3/themes/woodspice/style.css
==============================================================================
--- vtigercrm/branches/5.0.3/themes/woodspice/style.css (original)
+++ vtigercrm/branches/5.0.3/themes/woodspice/style.css Mon Dec 11 02:38:54 2006
@@ -311,7 +311,6 @@
padding-left:10px;
padding-right:10px;
border-bottom:1px solid #999;
- white-space:nowrap;
}
.rightMailMerge {
More information about the vtigercrm-commits
mailing list