diff options
| author | Thomas Bruederli <thomas@roundcube.net> | 2014-02-04 19:52:25 +0100 | 
|---|---|---|
| committer | Thomas Bruederli <thomas@roundcube.net> | 2014-02-04 22:50:15 +0100 | 
| commit | affabd9a4b24d08ac4beb5828fc0103b4f36e3ef (patch) | |
| tree | 8fbb63fc3d3c632c627142872deb77d64cb821f7 | |
| parent | f147849bb05a48fe721851b2ebc2d0d746e2ca75 (diff) | |
Fix some glitches in ACL table display
| -rw-r--r-- | plugins/acl/acl.js | 4 | ||||
| -rw-r--r-- | plugins/acl/localization/en_US.inc | 2 | ||||
| -rw-r--r-- | plugins/acl/skins/larry/acl.css | 9 | ||||
| -rw-r--r-- | plugins/acl/skins/larry/templates/table.html | 2 | ||||
| -rw-r--r-- | skins/larry/styles.css | 2 | 
5 files changed, 13 insertions, 6 deletions
| diff --git a/plugins/acl/acl.js b/plugins/acl/acl.js index 6da96f3cc..0ee45d735 100644 --- a/plugins/acl/acl.js +++ b/plugins/acl/acl.js @@ -134,7 +134,9 @@ rcube_webmail.prototype.acl_mode_switch = function(elem)  // ACL table initialization  rcube_webmail.prototype.acl_list_init = function()  { -    $('#acl-switch')[this.env.acl_advanced ? 'addClass' : 'removeClass']('selected'); +    var method = this.env.acl_advanced ? 'addClass' : 'removeClass'; +    $('#acl-switch')[method]('selected'); +    $(this.gui_objects.acltable)[method]('advanced');      this.acl_list = new rcube_list_widget(this.gui_objects.acltable,          {multiselect:true, draggable:false, keyboard:true, toggleselect:true}); diff --git a/plugins/acl/localization/en_US.inc b/plugins/acl/localization/en_US.inc index 390a08b02..ce665768a 100644 --- a/plugins/acl/localization/en_US.inc +++ b/plugins/acl/localization/en_US.inc @@ -19,7 +19,7 @@  $labels['sharing'] = 'Sharing';  $labels['myrights'] = 'Access Rights';  $labels['username'] = 'User:'; -$labels['advanced'] = 'advanced mode'; +$labels['advanced'] = 'Advanced mode';  $labels['newuser'] = 'Add entry';  $labels['editperms'] = 'Edit permissions';  $labels['actions'] = 'Access right actions...'; diff --git a/plugins/acl/skins/larry/acl.css b/plugins/acl/skins/larry/acl.css index 9c7429418..b16369907 100644 --- a/plugins/acl/skins/larry/acl.css +++ b/plugins/acl/skins/larry/acl.css @@ -38,19 +38,25 @@    border-left: #BBD3DA dotted 1px;    font-size: 11px;    font-weight: bold; +  width: auto;  }  #acltable tbody td  {    border-bottom: #DDDDDD 1px solid;    text-align: center; -  padding: 2px; +  height: 16px;    cursor: default;  }  #acltable thead td.user  {    border-left: none; +  width: 30%; +} + +#acltable.advanced thead td.user { +	width: 25%;  }  #acltable tbody td.user @@ -60,7 +66,6 @@    text-overflow: ellipsis;    -o-text-overflow: ellipsis;    border-left: none; -  width: 50px;  }  #acltable tbody td.partial diff --git a/plugins/acl/skins/larry/templates/table.html b/plugins/acl/skins/larry/templates/table.html index c7c546371..c0b8329c6 100644 --- a/plugins/acl/skins/larry/templates/table.html +++ b/plugins/acl/skins/larry/templates/table.html @@ -12,7 +12,7 @@          <li><roundcube:button command="acl-edit" label="edit" class="icon" classAct="icon active" innerclass="icon edit" /></li>          <li><roundcube:button command="acl-delete" label="delete" class="icon" classAct="icon active" innerclass="icon delete" /></li>          <roundcube:if condition="!in_array('acl_advanced_mode', (array)config:dont_override)" /> -            <li><roundcube:button name="acl-switch" id="acl-switch" label="acl.advanced" onclick="rcmail.command('acl-mode-switch')" class="active" /></li> +            <li><roundcube:button name="acl-switch" id="acl-switch" label="acl.advanced" onclick="rcmail.command('acl-mode-switch');return false" class="active" /></li>          <roundcube:endif />      </ul>  </div> diff --git a/skins/larry/styles.css b/skins/larry/styles.css index 4cdf0f0f3..e1a813373 100644 --- a/skins/larry/styles.css +++ b/skins/larry/styles.css @@ -1424,7 +1424,7 @@ table.records-table {  .records-table tr.unfocused td {  	color: #fff !important; -	background: #4db0d2 !important; +	background-color: #4db0d2 !important;  }  .records-table tr.unfocused td a, | 
