Commit dfdf2d0b authored by Côme Bernigaud's avatar Côme Bernigaud Committed by Benoit Mortier
Browse files

Fixes #3233 Using Icon Theme specification in more places

Showing with 8 additions and 8 deletions
+8 -8
html/plugins/departments/images/department.png

594 Bytes

html/plugins/departments/images/department_alias.png

463 Bytes

html/plugins/departments/images/department_referal.png

904 Bytes

html/plugins/groups/images/environment.png

733 Bytes

html/plugins/password/images/iconRecovery.png

3.1 KB

html/plugins/users/images/select_template.png

512 Bytes

...@@ -39,7 +39,7 @@ div.sieve_error_msgs { ...@@ -39,7 +39,7 @@ div.sieve_error_msgs {
background-color:#ff8d00; background-color:#ff8d00;
color:#000; color:#000;
padding:5px; padding:5px;
background-image:url(images/warning.png); background-image:url(../../geticon.php?context=status&icon=dialog-warning&size=16);
background-repeat:no-repeat; background-repeat:no-repeat;
font-weight:bold; font-weight:bold;
} }
......
...@@ -33,7 +33,7 @@ class country extends department ...@@ -33,7 +33,7 @@ class country extends department
'name' => _('Country'), 'name' => _('Country'),
'filter' => '(&(objectClass=country)(objectClass=gosaDepartment))', 'filter' => '(&(objectClass=country)(objectClass=gosaDepartment))',
'ou' => '', 'ou' => '',
'icon' => 'plugins/departments/images/country.png', 'icon' => 'geticon.php?context=types&icon=country&size=16',
'tabClass' => 'deptabs', 'tabClass' => 'deptabs',
'mainAttr' => self::$namingAttr, 'mainAttr' => self::$namingAttr,
)), )),
......
...@@ -34,7 +34,7 @@ class dcObject extends department ...@@ -34,7 +34,7 @@ class dcObject extends department
'name' => _('Domain Component'), 'name' => _('Domain Component'),
'filter' => '(&(objectClass=dcObject)(objectClass=gosaDepartment))', 'filter' => '(&(objectClass=dcObject)(objectClass=gosaDepartment))',
'ou' => '', 'ou' => '',
'icon' => 'plugins/departments/images/dc.png', 'icon' => 'geticon.php?context=types&icon=dc&size=16',
'tabClass' => 'deptabs', 'tabClass' => 'deptabs',
'mainAttr' => self::$namingAttr, 'mainAttr' => self::$namingAttr,
)), )),
......
...@@ -34,7 +34,7 @@ class domain extends department ...@@ -34,7 +34,7 @@ class domain extends department
'name' => _('Domain'), 'name' => _('Domain'),
'filter' => '(&(objectClass=domain)(objectClass=gosaDepartment))', 'filter' => '(&(objectClass=domain)(objectClass=gosaDepartment))',
'ou' => '', 'ou' => '',
'icon' => 'plugins/departments/images/domain.png', 'icon' => 'geticon.php?context=types&icon=domain&size=16',
'tabClass' => 'deptabs', 'tabClass' => 'deptabs',
'mainAttr' => self::$namingAttr, 'mainAttr' => self::$namingAttr,
)), )),
......
...@@ -34,7 +34,7 @@ class locality extends department ...@@ -34,7 +34,7 @@ class locality extends department
'name' => _('Locality'), 'name' => _('Locality'),
'filter' => '(&(objectClass=locality)(objectClass=gosaDepartment))', 'filter' => '(&(objectClass=locality)(objectClass=gosaDepartment))',
'ou' => '', 'ou' => '',
'icon' => 'plugins/departments/images/locality.png', 'icon' => 'geticon.php?context=types&icon=locality&size=16',
'tabClass' => 'deptabs', 'tabClass' => 'deptabs',
'mainAttr' => self::$namingAttr, 'mainAttr' => self::$namingAttr,
)), )),
......
...@@ -34,7 +34,7 @@ class organization extends department ...@@ -34,7 +34,7 @@ class organization extends department
'name' => _('Organization'), 'name' => _('Organization'),
'filter' => '(&(objectClass=organization)(objectClass=gosaDepartment))', 'filter' => '(&(objectClass=organization)(objectClass=gosaDepartment))',
'ou' => '', 'ou' => '',
'icon' => 'plugins/departments/images/organization.png', 'icon' => 'geticon.php?context=types&icon=organization&size=16',
'tabClass' => 'deptabs', 'tabClass' => 'deptabs',
'mainAttr' => self::$namingAttr, 'mainAttr' => self::$namingAttr,
)), )),
......
...@@ -83,7 +83,7 @@ class ObjectsAttribute extends GenericDialogAttribute ...@@ -83,7 +83,7 @@ class ObjectsAttribute extends GenericDialogAttribute
if (isset($infos['icon'])) { if (isset($infos['icon'])) {
$img = $infos['icon']; $img = $infos['icon'];
} else { } else {
$img = 'images/false.png'; $img = 'images/empty.png';
} }
$display .= '<option value="'.$key.'" class="select"'. $display .= '<option value="'.$key.'" class="select"'.
' style="background-image:url(\''.get_template_path($img).'\');"'. ' style="background-image:url(\''.get_template_path($img).'\');"'.
......
...@@ -94,7 +94,7 @@ ...@@ -94,7 +94,7 @@
<name>sendMessage</name> <name>sendMessage</name>
<type>entry</type> <type>entry</type>
<depends>DaemonEvent_notify</depends> <depends>DaemonEvent_notify</depends>
<image>plugins/systems/images/notify.png</image> <image>geticon.php?context=applications&amp;icon=internet-mail&amp;size=16</image>
<label>Send message</label> <label>Send message</label>
</action> </action>
......
  • bmortier @bmortier

    mentioned in issue #1078

    By Côme Chilliet on 2017-09-02T15:11:29 (imported from GitLab)

    ·

    mentioned in issue #1078

    By Côme Chilliet on 2017-09-02T15:11:29 (imported from GitLab)

    Toggle commit list
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment