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-08-28 23:23:49 +0300
committerRaimund Schlüßler <raimund.schluessler@mailbox.org>2017-09-09 19:07:17 +0300
commit904197fc1072795bb44c065fcae74cb3e4e233c2 (patch)
tree038a7bb26acda3ffb587a0ce41fd06e333ac27dc /service
parente95ac21eb80b6b2dc72a0e1b4183d22246d81cf2 (diff)
Several css style fixes
- Remove dims rules - change icon prefix - rename star icons - add hovered icon - fix positioning of all static icons - fix messed up position of progress bar - fix collection icons - fix app-navigation-entry opacities
Diffstat (limited to 'service')
-rw-r--r--service/collectionsservice.php18
1 files changed, 12 insertions, 6 deletions
diff --git a/service/collectionsservice.php b/service/collectionsservice.php
index 31c362c0..35b9925b 100644
--- a/service/collectionsservice.php
+++ b/service/collectionsservice.php
@@ -49,27 +49,33 @@ class CollectionsService {
array(
'id' => "starred",
'displayname' => (string)$this->l10n->t('Important'),
- 'show' => 2),
+ 'show' => 2,
+ 'icon' => 'icon-task-star'),
array(
'id' => "today",
'displayname' => (string)$this->l10n->t('Today'),
- 'show' => 2),
+ 'show' => 2,
+ 'icon' => 'icon-calendar'),
array(
'id' => "week",
'displayname' => (string)$this->l10n->t('Week'),
- 'show' => 2),
+ 'show' => 2,
+ 'icon' => 'icon-calendar'),
array(
'id' => "all",
'displayname' => (string)$this->l10n->t('All'),
- 'show' => 2),
+ 'show' => 2,
+ 'icon' => 'icon-all'),
array(
'id' => "current",
'displayname' => (string)$this->l10n->t('Current'),
- 'show' => 2),
+ 'show' => 2,
+ 'icon' => 'icon-current'),
array(
'id' => "completed",
'displayname' => (string)$this->l10n->t('Completed'),
- 'show' => 2)
+ 'show' => 2,
+ 'icon' => 'icon-checkmark')
);
foreach ($collections as $key => $collection){
$tmp = $this->settings->getUserValue($this->userId, $this->appName,'show_'.$collection['id']);