diff --git a/htdocs/admin/site/licenses.php b/htdocs/admin/site/licenses.php index b3b5d182ca4bb11976e2f836aaa7c7ae57b75ab0..57ca4b5b67e0a341791c2056762101ac1d229f5c 100644 --- a/htdocs/admin/site/licenses.php +++ b/htdocs/admin/site/licenses.php @@ -40,7 +40,7 @@ $extralicenses = get_column_sql(" "); $smarty = smarty(); -setpageicon($smarty, 'icon-legal'); +setpageicon($smarty, 'icon-gavel'); $smarty->assign('licenses', $licenses); $smarty->assign('extralicenses', $extralicenses); diff --git a/htdocs/artefact/file/js/filebrowser.js b/htdocs/artefact/file/js/filebrowser.js index 222c6e8311c7dee90673e320d5b360241c2100ab..afad4e52ece7b47cf908494c79892010685ee474 100644 --- a/htdocs/artefact/file/js/filebrowser.js +++ b/htdocs/artefact/file/js/filebrowser.js @@ -626,7 +626,7 @@ var FileBrowser = (function($) { e.preventDefault(); } }); - ul.append($('
  • ').append(link)); + ul.append($('
  • ').append(link)); } } }); diff --git a/htdocs/artefact/plans/blocktype/plans/js/plansblock.js b/htdocs/artefact/plans/blocktype/plans/js/plansblock.js index d1dac020cb9905905beebdda8dee775861f886e1..10df040291dc8142703831c89d69bb7d79600edb 100644 --- a/htdocs/artefact/plans/blocktype/plans/js/plansblock.js +++ b/htdocs/artefact/plans/blocktype/plans/js/plansblock.js @@ -18,15 +18,15 @@ function changeCheckBox(taskid, state) { if (state == 1) { $('.task' + taskid).next('span').removeClass('text-danger').addClass('text-success'); - $('.task' + taskid).removeClass('text-midtone icon-square-o icon-times text-danger').addClass('icon-check-square-o text-success'); + $('.task' + taskid).removeClass('text-midtone icon-regular icon-square icon-times text-danger').addClass('icon-regular icon-check-square text-success'); } else if (state == -1) { $('.task' + taskid).next('span').removeClass('text-success').addClass('text-danger'); - $('.task' + taskid).removeClass('icon-check-square-o icon-square-o text-success').addClass('icon-times text-danger'); + $('.task' + taskid).removeClass('icon-check-square icon-regular icon-square text-success').addClass('icon-times text-danger'); } else { $('.task' + taskid).next('span').removeClass('text-success text-danger'); - $('.task' + taskid).removeClass('icon-check-square-o icon-times text-success text-danger').addClass('icon-square-o text-midtone'); + $('.task' + taskid).removeClass('icon-check-square icon-times text-success text-danger').addClass('icon-regular icon-square text-midtone'); } } diff --git a/htdocs/artefact/resume/lib.php b/htdocs/artefact/resume/lib.php index 2022a8b5ae58759a0a60b3f5b96c7153e4e39c18..1b66717cff8509d1e93e26a9ef296add11b9b338 100644 --- a/htdocs/artefact/resume/lib.php +++ b/htdocs/artefact/resume/lib.php @@ -1105,7 +1105,7 @@ EOF; if (row._rownumber > 1) { var up = jQuery('', {'href': '', 'class': 'moveup'}).append( - jQuery('',{'class': 'icon icon-long-arrow-up','role':'presentation'}), + jQuery('',{'class': 'icon icon-long-arrow-alt-up','role':'presentation'}), jQuery('',{'class': 'sr-only', 'text': {$upjsstr}}) ); up.on('click', function (e) { @@ -1117,7 +1117,7 @@ EOF; if (!row._last) { var down = jQuery('', {'href': '', 'class':'movedown'}).append( - jQuery('',{'class': 'icon icon-long-arrow-down','role':'presentation'}), + jQuery('',{'class': 'icon icon-long-arrow-alt-down','role':'presentation'}), jQuery('',{'class': 'sr-only', 'text': {$downjsstr}}) ); down.on('click', function (e) { diff --git a/htdocs/blocktype/lib.php b/htdocs/blocktype/lib.php index 19d6fa8e3a70fa74419948fbad2556cf34429961..5e88089338033031c60ae20c3ddf94953a35d33b 100644 --- a/htdocs/blocktype/lib.php +++ b/htdocs/blocktype/lib.php @@ -1057,7 +1057,7 @@ class BlockInstance { 'column' => $this->get('column') - 1, 'order' => $this->get('order'), 'title' => $title == '' ? get_string('movethisblockleft', 'view') : get_string('moveblockleft', 'view', "'$title'"), - 'arrow' => "icon icon-long-arrow-left", + 'arrow' => "icon icon-long-arrow-alt-left", 'dir' => 'left', ); } @@ -1066,7 +1066,7 @@ class BlockInstance { 'column' => $this->get('column'), 'order' => $this->get('order') + 1, 'title' => $title == '' ? get_string('movethisblockdown', 'view') : get_string('moveblockdown', 'view', "'$title'"), - 'arrow' => 'icon icon-long-arrow-down', + 'arrow' => 'icon icon-long-arrow-alt-down', 'dir' => 'down', ); } @@ -1075,7 +1075,7 @@ class BlockInstance { 'column' => $this->get('column'), 'order' => $this->get('order') - 1, 'title' => $title == '' ? get_string('movethisblockup', 'view') : get_string('moveblockup', 'view', "'$title'"), - 'arrow' => 'icon icon-long-arrow-up', + 'arrow' => 'icon icon-long-arrow-alt-up', 'dir' => 'up', ); } @@ -1084,7 +1084,7 @@ class BlockInstance { 'column' => $this->get('column') + 1, 'order' => $this->get('order'), 'title' => $title == '' ? get_string('movethisblockright', 'view') : get_string('moveblockright', 'view', "'$title'"), - 'arrow' => 'icon icon-long-arrow-right', + 'arrow' => 'icon icon-long-arrow-alt-right', 'dir' => 'right', ); } diff --git a/htdocs/js/mahara.js b/htdocs/js/mahara.js index 94f723326b0d119c6669cdab56c9d0b38b822b7e..247e997c2ec39a25415ee2469138b86a7f27cdb1 100644 --- a/htdocs/js/mahara.js +++ b/htdocs/js/mahara.js @@ -556,7 +556,7 @@ function buildContextualHelpBox(content) { contextualHelpContainer.html( '
    ' + '' + - '' + + '' + '' + get_string('closehelp') + '' + '' + '
    ' + diff --git a/htdocs/lang/en.utf8/help/forms/accountprefs.addremovecolumns.html b/htdocs/lang/en.utf8/help/forms/accountprefs.addremovecolumns.html index 7db0b73e40b9cdba3ed5a0acefbf7d8e74e37e14..f319b5b0370015176442da8fa60249766d17ce44 100644 --- a/htdocs/lang/en.utf8/help/forms/accountprefs.addremovecolumns.html +++ b/htdocs/lang/en.utf8/help/forms/accountprefs.addremovecolumns.html @@ -3,7 +3,7 @@

    Show controls to add and remove columns when editing a page

    You can choose to display a row with the buttons - + and diff --git a/htdocs/lang/en.utf8/help/forms/adduser.addremovecolumns.html b/htdocs/lang/en.utf8/help/forms/adduser.addremovecolumns.html index 75c9621dced2270bd9641528e739a26a90d59145..4b12d0e19d40eae597eee61bb3757791d15c7285 100644 --- a/htdocs/lang/en.utf8/help/forms/adduser.addremovecolumns.html +++ b/htdocs/lang/en.utf8/help/forms/adduser.addremovecolumns.html @@ -3,7 +3,7 @@

    Show controls to add and remove columns when editing a page

    You can choose to display a row with the buttons - + and diff --git a/htdocs/lang/en.utf8/help/forms/uploadcsv.addremovecolumns.html b/htdocs/lang/en.utf8/help/forms/uploadcsv.addremovecolumns.html index 7b4490a0c47a36be98752595663e028ffd3dd13f..c8ccadc35867c007a8b491576c0fd3adc49b60d4 100644 --- a/htdocs/lang/en.utf8/help/forms/uploadcsv.addremovecolumns.html +++ b/htdocs/lang/en.utf8/help/forms/uploadcsv.addremovecolumns.html @@ -3,7 +3,7 @@

    Show controls to add and remove columns when editing a page

    The users can choose to display a row with the buttons - + and diff --git a/htdocs/lib/pieforms/pieform/elements/calendar.php b/htdocs/lib/pieforms/pieform/elements/calendar.php index 7f5dc75066266999a0ff1f56e7a330303b637efe..79e84dd60b3a1d85ef7eebd07e65ab5a3b61229c 100644 --- a/htdocs/lib/pieforms/pieform/elements/calendar.php +++ b/htdocs/lib/pieforms/pieform/elements/calendar.php @@ -93,7 +93,7 @@ function pieform_element_calendar(Pieform $form, $element) { tooltips: ' . $tooltips . ', icons: { time: "icon icon-regular icon-clock", - date: "icon icon-calendar", + date: "icon icon-regular icon-calendar-alt", up: "icon icon-arrow-up", down: "icon icon-arrow-down", previous: "icon icon-chevron-left", diff --git a/htdocs/module/framework/lib.php b/htdocs/module/framework/lib.php index cfc8df2cac5ac2715bdfc14b4e8565400f20cb1c..c8ee611dd0739f6aa3e4305ca019a1047406a5f8 100644 --- a/htdocs/module/framework/lib.php +++ b/htdocs/module/framework/lib.php @@ -575,7 +575,7 @@ class Framework { $states = array( 'begun' => array( 'state' => (int) $state === self::EVIDENCE_BEGUN ? 1 : 0, - 'classes' => 'icon icon-circle-o begun', + 'classes' => 'icon icon-regular icon-circle begun', ), 'incomplete' => array( 'state' => (int) $state === self::EVIDENCE_INCOMPLETE ? 1 : 0, diff --git a/htdocs/module/framework/matrixpoint.json.php b/htdocs/module/framework/matrixpoint.json.php index b76e2ce9dee3f7deaab1ac5f7a96f982123da4b8..44482009071c000936ee12d15457c274e2d6b47f 100644 --- a/htdocs/module/framework/matrixpoint.json.php +++ b/htdocs/module/framework/matrixpoint.json.php @@ -76,7 +76,7 @@ if ($action == 'update') { $message = get_string('matrixpointinserted', 'module.framework'); } - $class = 'icon icon-circle-o begun'; + $class = 'icon icon-regular icon-circle begun'; $choices = Framework::get_evidence_statuses($framework); $data = (object) array('id' => $id, 'class' => $class, diff --git a/htdocs/theme/primaryschool/templates/homeinfo.tpl b/htdocs/theme/primaryschool/templates/homeinfo.tpl index 118e2c9881a696ac96a024354cb304fed5bc5a0a..a10439b64966ebc35f7544e724aaee9f424078ce 100755 --- a/htdocs/theme/primaryschool/templates/homeinfo.tpl +++ b/htdocs/theme/primaryschool/templates/homeinfo.tpl @@ -87,7 +87,7 @@ {if $USER->is_logged_in()}

    - + {str tag=Hide2}
    diff --git a/htdocs/theme/raw/plugintype/artefact/blog/blocktype/taggedposts/templates/taggedposts.tpl b/htdocs/theme/raw/plugintype/artefact/blog/blocktype/taggedposts/templates/taggedposts.tpl index dd5ac29a7fe5931b4324c13c1602435fee1918b9..7a99d89f6c1fdf1060045fb7842fd521f1bfbd9c 100644 --- a/htdocs/theme/raw/plugintype/artefact/blog/blocktype/taggedposts/templates/taggedposts.tpl +++ b/htdocs/theme/raw/plugintype/artefact/blog/blocktype/taggedposts/templates/taggedposts.tpl @@ -45,7 +45,7 @@
    - + {$post->postedbyon}
    diff --git a/htdocs/theme/raw/plugintype/artefact/blog/templates/posts.tpl b/htdocs/theme/raw/plugintype/artefact/blog/templates/posts.tpl index 6792a9e230fae31252b30dd033ccbfff03c5d92a..0f824903e84a283c5e58199d93312614085b5446 100644 --- a/htdocs/theme/raw/plugintype/artefact/blog/templates/posts.tpl +++ b/htdocs/theme/raw/plugintype/artefact/blog/templates/posts.tpl @@ -42,14 +42,14 @@
    - + {str tag=postedon section=artefact.blog}: {$post->ctime} {if $post->lastupdated}
    - + {str tag=updatedon section=artefact.blog}: diff --git a/htdocs/theme/raw/plugintype/artefact/blog/templates/render/blogpost_renderfull.tpl b/htdocs/theme/raw/plugintype/artefact/blog/templates/render/blogpost_renderfull.tpl index dcd9d18879bac1af43b65ef5f2404ca4b9db0519..d0ba7c2869b13e6180a7db5e09c1f8958f966b12 100644 --- a/htdocs/theme/raw/plugintype/artefact/blog/templates/render/blogpost_renderfull.tpl +++ b/htdocs/theme/raw/plugintype/artefact/blog/templates/render/blogpost_renderfull.tpl @@ -11,11 +11,11 @@ {/if} diff --git a/htdocs/theme/raw/plugintype/artefact/blog/templates/viewposts.tpl b/htdocs/theme/raw/plugintype/artefact/blog/templates/viewposts.tpl index 3a711e1a759cc2b28f75eeb970985f1a8c0291ed..2851a1a5cbbe94b15aa93800d459df29e508f249 100644 --- a/htdocs/theme/raw/plugintype/artefact/blog/templates/viewposts.tpl +++ b/htdocs/theme/raw/plugintype/artefact/blog/templates/viewposts.tpl @@ -5,11 +5,11 @@ {$post->title} diff --git a/htdocs/theme/raw/plugintype/artefact/file/templates/form/filelist.tpl b/htdocs/theme/raw/plugintype/artefact/file/templates/form/filelist.tpl index 022e1371ac2d3b8bc5004b137d97fcd9f3a9494b..bce1f003220ef5052652e5ff7498936b08906b8a 100644 --- a/htdocs/theme/raw/plugintype/artefact/file/templates/form/filelist.tpl +++ b/htdocs/theme/raw/plugintype/artefact/file/templates/form/filelist.tpl @@ -39,7 +39,7 @@ {if $file->isparent} {if $file->artefacttype == 'folder'} -
    {if $task->completed == 1} - + {str tag=completed section=artefact.plans} {else} - + {str tag=incomplete section=artefact.plans} {/if} {$task->title} - diff --git a/htdocs/theme/raw/plugintype/artefact/plans/templates/taskslist.tpl b/htdocs/theme/raw/plugintype/artefact/plans/templates/taskslist.tpl index 38400caf9149675d9f1310871c012e55dcaec170..86882ae3b7da9a5b70600d99bac6a10ee68d2607 100644 --- a/htdocs/theme/raw/plugintype/artefact/plans/templates/taskslist.tpl +++ b/htdocs/theme/raw/plugintype/artefact/plans/templates/taskslist.tpl @@ -17,7 +17,7 @@ {if $task->completed == 1} - + {str tag=completed section=artefact.plans} {else} diff --git a/htdocs/theme/raw/plugintype/auth/webservice/templates/connections.tpl b/htdocs/theme/raw/plugintype/auth/webservice/templates/connections.tpl index b237ba993784ca41adf71a95223bbbe742a68ee5..50f261eb565db185fa72164662b75e2b1c381c02 100644 --- a/htdocs/theme/raw/plugintype/auth/webservice/templates/connections.tpl +++ b/htdocs/theme/raw/plugintype/auth/webservice/templates/connections.tpl @@ -39,17 +39,17 @@ function buttonOptions (id, length, i) { // Make the buttons a row should have - var buttons = ''; + var buttons = ''; if (length > 1) { if (i + 1 != length) { - buttons += '' + get_string('moveitemdown') + '' + buttons += '' + get_string('moveitemdown') + '' } else { buttons += ''; } if (i != 0) { - buttons += '' + get_string('moveitemup') + ''; + buttons += '' + get_string('moveitemup') + ''; } else { @@ -131,7 +131,7 @@ IMPORTANT: do not introduce any new whitespace into the instanceList div. {{if $instance->index + 1 < $instance->total}} - + {{str tag=moveitemdown}} {{else}} @@ -139,7 +139,7 @@ IMPORTANT: do not introduce any new whitespace into the instanceList div. {{/if}} {{if $instance->index != 0 }} - + {{str tag=moveitemup}} {{else}} diff --git a/htdocs/theme/raw/plugintype/interaction/forum/templates/post.tpl b/htdocs/theme/raw/plugintype/interaction/forum/templates/post.tpl index c555b24ac9f3c4fed469cec14f91579d21537da8..52bacf14fc24b1a8a80ade60f0c36db42dd23ff3 100644 --- a/htdocs/theme/raw/plugintype/interaction/forum/templates/post.tpl +++ b/htdocs/theme/raw/plugintype/interaction/forum/templates/post.tpl @@ -22,7 +22,7 @@ {str tag="approve" section=group} - + {str tag="reject" section=group}
    diff --git a/htdocs/theme/raw/sass/features/_manage-collection.scss b/htdocs/theme/raw/sass/features/_manage-collection.scss index d8ef28a7079c1341712966ad6d7f1ee4c9dc7d04..fcfda2ffa60fc25df5a50a0799c99a9a683f7185 100644 --- a/htdocs/theme/raw/sass/features/_manage-collection.scss +++ b/htdocs/theme/raw/sass/features/_manage-collection.scss @@ -40,7 +40,7 @@ } .single-arrow-down { padding-left: 32px; - .icon-long-arrow-down { + .icon-long-arrow-alt-down { padding-left: 3px !important; } } diff --git a/htdocs/theme/raw/templates/collection/views.json.tpl b/htdocs/theme/raw/templates/collection/views.json.tpl index f03ee57ad8f0a7af2316a4e8c83337f6b764d2f2..f6da447274754731bb97ffac5bb093e3af2da79d 100644 --- a/htdocs/theme/raw/templates/collection/views.json.tpl +++ b/htdocs/theme/raw/templates/collection/views.json.tpl @@ -4,21 +4,21 @@ {if $views.count > 1} {if $view->displayorder == $views.min} - + {str tag=moveitemdown} {elseif $view->displayorder == $views.max} - + {str tag=moveitemup} {else} - + {str tag=moveitemup} - + {str tag=moveitemdown} {/if} diff --git a/htdocs/theme/raw/templates/collection/views.tpl b/htdocs/theme/raw/templates/collection/views.tpl index 2eb95f6315f44b90ae06c415715d1a5ea0ee1691..b89167e76bb6fe3117a252dcb43e23f5529cf2f0 100644 --- a/htdocs/theme/raw/templates/collection/views.tpl +++ b/htdocs/theme/raw/templates/collection/views.tpl @@ -37,21 +37,21 @@ {if $views.count > 1} {if $view->displayorder == $views.min} - + {str tag=moveitemdown} {elseif $view->displayorder == $views.max} - + {str tag=moveitemup} {else} - + {str tag=moveitemup} - + {str tag=moveitemdown} {/if} diff --git a/htdocs/theme/raw/templates/form/authlist.tpl b/htdocs/theme/raw/templates/form/authlist.tpl index c859be4ab97cdcc9bc1d8130ed55225b0b9769aa..1fc8615704aeee1ab1cb4da6d215ef77298bb2b9 100644 --- a/htdocs/theme/raw/templates/form/authlist.tpl +++ b/htdocs/theme/raw/templates/form/authlist.tpl @@ -58,13 +58,13 @@ if (i + 1 != displayArray.length) { jQuery(displayArray[i]).find('span.authIcons').first() .append(''+"\n"); } if(i != 0) { jQuery(displayArray[i]).find('span.authIcons').first() .append(''+"\n"); } } @@ -199,13 +199,13 @@ IMPORTANT: do not introduce any new whitespace into the instanceList div. {{if $instance->index + 1 < $instance->total}} - + {{str tag=moveitemdown}} {{/if}} {{if $instance->index != 0 }} - + {{str tag=moveitemup}} {{/if}} diff --git a/htdocs/theme/raw/templates/form/userlist.tpl b/htdocs/theme/raw/templates/form/userlist.tpl index 5e90394f2773ea8468819d0e865c682760b67219..2c7312278d856b300aec577c15acd3497b887b74 100644 --- a/htdocs/theme/raw/templates/form/userlist.tpl +++ b/htdocs/theme/raw/templates/form/userlist.tpl @@ -153,11 +153,11 @@
    diff --git a/htdocs/theme/raw/templates/form/viewacl.tpl b/htdocs/theme/raw/templates/form/viewacl.tpl index 0f0f60cfd01354527d316ddd7850b416ad2920d0..660dd6c7b9ae43c39f1d7925d40568ef91c7a9aa 100644 --- a/htdocs/theme/raw/templates/form/viewacl.tpl +++ b/htdocs/theme/raw/templates/form/viewacl.tpl @@ -176,7 +176,7 @@ jQuery(function($) { tooltips: {{$datepickertooltips|safe}}, icons: { time: "icon icon-regular icon-clock", - date: "icon icon-calendar", + date: "icon icon-regular icon-calendar-alt", up: "icon icon-arrow-up", down: "icon icon-arrow-down", previous: "icon icon-chevron-left", diff --git a/htdocs/theme/raw/templates/group/groupuserstatus.tpl b/htdocs/theme/raw/templates/group/groupuserstatus.tpl index 3571d68a57ee8ab03305c7ac0f82aa09d795d03d..88487cad5e587cc082809311c6696e2ce48e874e 100644 --- a/htdocs/theme/raw/templates/group/groupuserstatus.tpl +++ b/htdocs/theme/raw/templates/group/groupuserstatus.tpl @@ -3,7 +3,7 @@
    {if $group->canleave} - + {str tag="leavegroup" section="group"} {/if} diff --git a/htdocs/theme/raw/templates/group/info.tpl b/htdocs/theme/raw/templates/group/info.tpl index 93ee20212fef46dde48b0624cfd5429d351b4ee9..383f33df933bc14b77e16108db2509e842e43e8a 100644 --- a/htdocs/theme/raw/templates/group/info.tpl +++ b/htdocs/theme/raw/templates/group/info.tpl @@ -20,7 +20,7 @@ {if $editwindow}

    - + {str tag=editable section=group}: {$editwindow}

    diff --git a/htdocs/theme/raw/templates/header/pageactions.tpl b/htdocs/theme/raw/templates/header/pageactions.tpl index 48553711f0a81de718d647abf8911f92d89ae28d..5eaf7ee94c76c26738b587695ea84c8338c349f2 100644 --- a/htdocs/theme/raw/templates/header/pageactions.tpl +++ b/htdocs/theme/raw/templates/header/pageactions.tpl @@ -9,7 +9,7 @@ {if $mnethost} - + {str tag=backto arg1=$mnethost.name} {/if} diff --git a/htdocs/theme/raw/templates/homeinfo.tpl b/htdocs/theme/raw/templates/homeinfo.tpl index 98b6d055cea45ee4170bdfc9421bfb3be8228775..88a1be75c62014050020eca08455eed969c12455 100644 --- a/htdocs/theme/raw/templates/homeinfo.tpl +++ b/htdocs/theme/raw/templates/homeinfo.tpl @@ -80,7 +80,7 @@ {if $USER->is_logged_in()} diff --git a/htdocs/theme/raw/templates/skin/index.tpl b/htdocs/theme/raw/templates/skin/index.tpl index 679aaaec6d8e8402e22f5430d1b4f1d5b8600b9f..ddaee92709bcdff344c511f58203b8289a992d65 100644 --- a/htdocs/theme/raw/templates/skin/index.tpl +++ b/htdocs/theme/raw/templates/skin/index.tpl @@ -74,7 +74,7 @@ {if $skin.type == 'public' && $skin.owner != $user} {if !$skin.favorite} - + {str tag=addtofavoritesspecific section=skin arg1=$skin.title} diff --git a/htdocs/theme/raw/templates/styleguide.tpl b/htdocs/theme/raw/templates/styleguide.tpl index 4dec2f62e6664165e748910936975fd7441d5156..2c467af157104f61e2e466653139fc96143290ee 100644 --- a/htdocs/theme/raw/templates/styleguide.tpl +++ b/htdocs/theme/raw/templates/styleguide.tpl @@ -1386,7 +1386,7 @@ Arrow pointing right. This usually means "next step". ### Arrows Shows that an object can be dragged and dropped. ``` - + ``` @@ -1426,7 +1426,7 @@ As used on the "Journals" page. ### Calendar Usually used on buttons to signify a pop-up date selctor. ``` - + ``` @@ -1474,7 +1474,7 @@ Used to signify SmartEvidence item has been assessed as partially complete. ### Circle open Used to signify SmartEvidence has begun on the SmartEvidence martix table. ``` - + ``` @@ -1674,7 +1674,7 @@ Shows that something has been favourited. ### Heart hollow Shows something can be favourited. ``` - + ``` @@ -1722,7 +1722,7 @@ As seen on the "Share" page in the site administration area. ### Legal As used on the "Licences" page in the administration area. ``` - + ``` @@ -1730,7 +1730,7 @@ As used on the "Licences" page in the administration area. ### Level up Used in the file browser to signify going up to the parent folder. ``` - + ``` @@ -1746,7 +1746,7 @@ Used as a security icon, for example on the "Shared by me" page. ### Long arrow down Long arrow pointing down. It is used for sorting items vertically. ``` - + ``` @@ -1754,7 +1754,7 @@ Long arrow pointing down. It is used for sorting items vertically. ### Long arrow left Long arrow pointing left. It is used for sorting items horizontally. ``` - + ``` @@ -1762,7 +1762,7 @@ Long arrow pointing left. It is used for sorting items horizontally. ### Long arrow right Long arrow pointing right. It is used for sorting items horizontally. ``` - + ``` @@ -1770,7 +1770,7 @@ Long arrow pointing right. It is used for sorting items horizontally. ### Long arrow up Long arrow pointing up. It is used for sorting items vertically. ``` - + ``` @@ -1886,14 +1886,6 @@ As seen on the button on the "Networking" page. ``` -
    -### Remove -Pretty much the same as the times icon. Should use the trash icon instead. -``` - -``` -
    -
    ### Remove user Remove users. @@ -1945,7 +1937,7 @@ As used on the "Cookie consent" page in the administration area. ### Sign in Used to show the sign in button. ``` - + ```
    @@ -1969,7 +1961,7 @@ Used to signify loading. The class "icon-pulse" makes it spin. ### Square Used as an un-checked check box, for example on an uncompleted task of a plan. ``` - + ``` @@ -1977,7 +1969,7 @@ Used as an un-checked check box, for example on an uncompleted task of a plan. ### Square checked Used as a checked check box, for example on complete tasks of a plan. ``` - + ``` diff --git a/htdocs/theme/raw/templates/user/userfind.tpl b/htdocs/theme/raw/templates/user/userfind.tpl index 0fba16d3e4e9640f7a500798e1906ce018e57be2..213137b16b23c0f5e2efe14012d3257366757b67 100644 --- a/htdocs/theme/raw/templates/user/userfind.tpl +++ b/htdocs/theme/raw/templates/user/userfind.tpl @@ -62,7 +62,7 @@ {/if} {if $user->friend}
  • - + {str tag='removefromfriendslist' section='group'} diff --git a/htdocs/theme/raw/templates/view/columnediting.tpl b/htdocs/theme/raw/templates/view/columnediting.tpl index d4eb2c5738a40c397c6810edb37bd7ee57910215..b5e6acee8167d423fb17799e21ab65a38ab5167a 100644 --- a/htdocs/theme/raw/templates/view/columnediting.tpl +++ b/htdocs/theme/raw/templates/view/columnediting.tpl @@ -3,7 +3,7 @@
    {if $column == 1} {/if} @@ -13,12 +13,12 @@ {if $column == $numcolumns} {else} {/if}