diff --git a/main/img/icons/32/new_note.png b/main/img/icons/32/new_note.png new file mode 100644 index 0000000000..8b6cc91a70 Binary files /dev/null and b/main/img/icons/32/new_note.png differ diff --git a/main/img/icons/32/notes.png b/main/img/icons/32/notes.png new file mode 100644 index 0000000000..0a9d209088 Binary files /dev/null and b/main/img/icons/32/notes.png differ diff --git a/main/img/icons/32/notes_order_by_date_mod.png b/main/img/icons/32/notes_order_by_date_mod.png new file mode 100644 index 0000000000..23db4d1a6b Binary files /dev/null and b/main/img/icons/32/notes_order_by_date_mod.png differ diff --git a/main/img/icons/32/notes_order_by_date_new.png b/main/img/icons/32/notes_order_by_date_new.png new file mode 100644 index 0000000000..33749b1bcd Binary files /dev/null and b/main/img/icons/32/notes_order_by_date_new.png differ diff --git a/main/img/icons/32/notes_order_by_title.png b/main/img/icons/32/notes_order_by_title.png new file mode 100644 index 0000000000..78f16af2d2 Binary files /dev/null and b/main/img/icons/32/notes_order_by_title.png differ diff --git a/main/img/icons/48/_sum.txt b/main/img/icons/48/_sum.txt index 7a7e9d2bdf..d0b556e785 100644 --- a/main/img/icons/48/_sum.txt +++ b/main/img/icons/48/_sum.txt @@ -162,6 +162,12 @@ blog_admin_na modif nuvola (and 22 px gif version for home page) course_progress modif mix gnome crystal -- mail crystal +-- +notes nuvola +new_note modif nuvola +notes_order_by_date_modif modif crystal (only 32 px) +notes_order_by_date_new modif modif crystal (only 32 px) +notes_order_by_title modif crystal (only 32 px) --julio star diff --git a/main/img/icons/48/new_note.png b/main/img/icons/48/new_note.png new file mode 100644 index 0000000000..8503d9c505 Binary files /dev/null and b/main/img/icons/48/new_note.png differ diff --git a/main/img/icons/48/notes.png b/main/img/icons/48/notes.png new file mode 100644 index 0000000000..d0d7cba913 Binary files /dev/null and b/main/img/icons/48/notes.png differ diff --git a/main/inc/lib/notebook.lib.php b/main/inc/lib/notebook.lib.php index 915c3b77ad..decf09846f 100755 --- a/main/inc/lib/notebook.lib.php +++ b/main/inc/lib/notebook.lib.php @@ -166,18 +166,18 @@ class NotebookManager //{ if (!api_is_anonymous()) { if (api_get_session_id()==0) - echo ''.Display::return_icon('filenew.gif',get_lang('NoteAddNew')).get_lang('NoteAddNew').''; + echo ''.Display::return_icon('new_note.png',get_lang('NoteAddNew'),'','32').''; elseif(api_is_allowed_to_session_edit(false,true)){ - echo ''.Display::return_icon('filenew.gif',get_lang('NoteAddNew')).get_lang('NoteAddNew').''; + echo ''.Display::return_icon('new_note.png',get_lang('NoteAddNew'),'','32').''; } } else { - echo ''.Display::return_icon('filenew.gif',get_lang('NoteAddNew')).get_lang('NoteAddNew').''; + echo ''.Display::return_icon('new_note.png',get_lang('NoteAddNew'),'','32').''; } //} - echo ''.Display::return_icon('calendar_select.gif',get_lang('OrderByCreationDate')).get_lang('OrderByCreationDate').''; - echo ''.Display::return_icon('calendar_select.gif',get_lang('OrderByModificationDate')).get_lang('OrderByModificationDate').''; - echo ''.Display::return_icon('comment.gif',get_lang('OrderByTitle')).get_lang('OrderByTitle').''; + echo ''.Display::return_icon('notes_order_by_date_new.png',get_lang('OrderByCreationDate'),'','32').''; + echo ''.Display::return_icon('notes_order_by_date_mod.png',get_lang('OrderByModificationDate'),'','32').''; + echo ''.Display::return_icon('notes_order_by_title.png',get_lang('OrderByTitle'),'','32').''; echo ''; if (!in_array($_SESSION['notebook_view'],array('creation_date','update_date', 'title'))) { diff --git a/main/notebook/index.php b/main/notebook/index.php index 1820c9c5d4..476ec536dc 100755 --- a/main/notebook/index.php +++ b/main/notebook/index.php @@ -100,7 +100,7 @@ if (isset($_GET['action']) && $_GET['action'] == 'addnote') { NotebookManager::display_notes(); } else { echo '
'; - echo ''.Display::return_icon('back.png').' '.get_lang('BackToNotesList').''; + echo ''.Display::return_icon('back.png',get_lang('BackToNotesList'),'','32').''; echo '
'; $token = Security::get_token(); $form->addElement('hidden', 'sec_token'); @@ -152,7 +152,7 @@ elseif (isset($_GET['action']) && $_GET['action'] == 'editnote' && is_numeric($_ NotebookManager::display_notes(); } else { echo '
'; - echo ''.Display::return_icon('back.png').' '.get_lang('BackToNotesList').''; + echo ''.Display::return_icon('back.png',get_lang('BackToNotesList'),'','32').''; echo '
'; $token = Security::get_token(); $form->addElement('hidden', 'sec_token');