Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaimund Schlüßler <raimund.schluessler@mailbox.org>2017-09-02 12:11:11 +0300
committerRaimund Schlüßler <raimund.schluessler@mailbox.org>2017-09-09 19:07:19 +0300
commit2535cb84072a741d60817eb6c169fdd626aff69e (patch)
tree19ba6703795dc079199b7105b9f74219a024cc8b /service
parent904197fc1072795bb44c065fcae74cb3e4e233c2 (diff)
Change icon prefix to not interfere with server css rules
Diffstat (limited to 'service')
-rw-r--r--service/collectionsservice.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/service/collectionsservice.php b/service/collectionsservice.php
index 35b9925b..66a16953 100644
--- a/service/collectionsservice.php
+++ b/service/collectionsservice.php
@@ -50,32 +50,32 @@ class CollectionsService {
'id' => "starred",
'displayname' => (string)$this->l10n->t('Important'),
'show' => 2,
- 'icon' => 'icon-task-star'),
+ 'icon' => 'ico-star'),
array(
'id' => "today",
'displayname' => (string)$this->l10n->t('Today'),
'show' => 2,
- 'icon' => 'icon-calendar'),
+ 'icon' => 'ico-calendar'),
array(
'id' => "week",
'displayname' => (string)$this->l10n->t('Week'),
'show' => 2,
- 'icon' => 'icon-calendar'),
+ 'icon' => 'ico-calendar'),
array(
'id' => "all",
'displayname' => (string)$this->l10n->t('All'),
'show' => 2,
- 'icon' => 'icon-all'),
+ 'icon' => 'ico-all'),
array(
'id' => "current",
'displayname' => (string)$this->l10n->t('Current'),
'show' => 2,
- 'icon' => 'icon-current'),
+ 'icon' => 'ico-current'),
array(
'id' => "completed",
'displayname' => (string)$this->l10n->t('Completed'),
'show' => 2,
- 'icon' => 'icon-checkmark')
+ 'icon' => 'ico-checkmark')
);
foreach ($collections as $key => $collection){
$tmp = $this->settings->getUserValue($this->userId, $this->appName,'show_'.$collection['id']);