Commit 4aacefa0fbd20f278f0757c3892c07c58d86683e

Authored by Jonathan Byrne
1 parent 35c66a3f

KTS-3323

"CLONE - Breaks the pattern graph (SUP-780)"
Fixed. Added scrolling to stop user interface from displaying incorrectly.

Committed By: Jonathan Byrne
Reviewed By: Megan Watson

git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@8427 c91229c3-7414-0410-bfa2-8a42b809f60b
resources/css/kt-framing.css
... ... @@ -2132,4 +2132,10 @@ body #content #add_dashlet
2132 2132 {
2133 2133 overflow:scroll;
2134 2134  
  2135 +}
  2136 +
  2137 +.role_allocation
  2138 +{
  2139 + overflow:auto;
  2140 +
2135 2141 }
2136 2142 \ No newline at end of file
... ...
resources/css/kt-ie-7.css
... ... @@ -7,4 +7,9 @@
7 7 {
8 8 overflow:scroll;
9 9 width:700px;
  10 +}
  11 +
  12 +.role_allocation
  13 +{
  14 + width:700px;
10 15 }
11 16 \ No newline at end of file
... ...
resources/css/kt-ie-icons.css
... ... @@ -392,3 +392,8 @@
392 392 overflow:scroll;
393 393 width:700px;
394 394 }
  395 +
  396 +.role_allocation
  397 +{
  398 + width:700px;
  399 +}
... ...
templates/ktcore/folder/roles.smarty
1 1 <h2><img src="{if $config->get("ui/morphEnabled") == '1'}{$rootUrl}/skins/kts_{$config->get("ui/morphTo")}/title_bullet.png{else}{$rootUrl}/resources/graphics/title_bullet.png{/if}"/>{i18n}Allocate Roles for{/i18n}:<br />{$folderName|sanitize}</h2>
2 2  
3   -<p class="descriptiveText">{i18n}
  3 +<p class="descriptiveText role_allocation">{i18n}
4 4 In many cases, workflow actions will be assigned to certain <strong>roles</strong>
5 5 (e.g. Manager, Interviewer, Researcher, Journalist). You can assign these roles
6 6 to specific groups in particular areas of the document management system.
... ... @@ -8,8 +8,9 @@
8 8  
9 9 <div class='ktInfoMessage'><span><strong>{i18n}Warning{/i18n}:</strong> {i18n}Please note that changing
10 10 role allocations may take a some time, depending on the number of folders below this one.{/i18n}</span></div>
11   -
  11 +<div class="role_allocation">
12 12 <table class="kt_collection narrow" cellspacing="0">
  13 +
13 14 <thead>
14 15 <tr>
15 16 <th>{i18n}Role{/i18n}</th>
... ... @@ -52,4 +53,6 @@ role allocations may take a some time, depending on the number of folders below
52 53 <tr><td colspan="5" class="ktInfoMessage"><span>{i18n}No roles defined in the Role Administration area.{/i18n}</span></td></tr>
53 54 {/if}
54 55 </tbody>
  56 +
55 57 </table>
  58 +</div>
... ...