icon visible home course tools

1.9.x
Alex 11 years ago
parent 14c45f5858
commit 5f4792be83
  1. 2
      main/css/chamilo/default.css
  2. BIN
      main/img/icons/22/invisible.png
  3. BIN
      main/img/icons/22/visible.png
  4. BIN
      main/img/invisible.png
  5. BIN
      main/img/visible.png
  6. 4
      main/inc/lib/course_home.lib.php

@ -850,7 +850,7 @@ button.login:hover {
/*including "save" image*/
button.save {
background-image:url(images/button_accept.png)
background-image:url(images/button_accept.png);
}
/*including "add" image*/
.controls .btn.add {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.0 KiB

After

Width:  |  Height:  |  Size: 660 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 792 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 767 B

After

Width:  |  Height:  |  Size: 660 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 939 B

After

Width:  |  Height:  |  Size: 792 B

@ -662,12 +662,12 @@ class CourseHome
if (empty($session_id)) {
if ($tool['visibility'] == '1' && $tool['admin'] != '1') {
$link['name'] = Display::return_icon('visible.png', get_lang('Deactivate'), array('id' => 'linktool_'.$tool['id']), ICON_SIZE_MEDIUM, false);
$link['name'] = Display::return_icon('visible.png', get_lang('Deactivate'), array('id' => 'linktool_'.$tool['id']), ICON_SIZE_SMALL, false);
$link['cmd'] = 'hide=yes';
$lnk[] = $link;
}
if ($tool['visibility'] == '0' && $tool['admin'] != '1') {
$link['name'] = Display::return_icon('invisible.png', get_lang('Activate'), array('id' => 'linktool_'.$tool['id']), ICON_SIZE_MEDIUM, false);
$link['name'] = Display::return_icon('invisible.png', get_lang('Activate'), array('id' => 'linktool_'.$tool['id']), ICON_SIZE_SMALL, false);
$link['cmd'] = 'restore=yes';
$lnk[] = $link;
}

Loading…
Cancel
Save