diff --git a/.gitignore b/.gitignore
index d16324e1..db224d77 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,8 +3,8 @@
######################
/css/src/sprites-bw.scss
/css/src/sprites-color.scss
-/img/bw.svg
-/img/color.svg
+/img/sprt-bw.svg
+/img/sprt-color.svg
/js/
#################
diff --git a/css/src/style.scss b/css/src/style.scss
index 797c8da5..52e25859 100644
--- a/css/src/style.scss
+++ b/css/src/style.scss
@@ -5,17 +5,13 @@
#app-navigation {
> ul {
> li {
- &.collection .app-navigation-entry-icon {
- background-image: unset;
-
- &::before {
- content: '';
- position: absolute;
- width: 16px;
- height: 16px;
- background: var(--icon-tasks-bw-000) no-repeat;
- background-position: inherit;
- }
+ &.collection .app-navigation-entry-icon::before {
+ content: '';
+ position: absolute;
+ width: 16px;
+ height: 16px;
+ background: var(--icon-tasks-sprt-bw-000) no-repeat;
+ background-position: inherit;
}
&.list {
@@ -202,7 +198,7 @@
content: '';
width: 16px;
height: 16px;
- background: var(--icon-tasks-bw-000) no-repeat;
+ background: var(--icon-tasks-sprt-bw-000) no-repeat;
background-position: inherit;
}
}
@@ -559,7 +555,7 @@
.icon {
vertical-align: unset;
- &.icon-add {
+ &.sprt-add {
&:hover {
opacity: 1;
}
@@ -895,7 +891,7 @@
.icon {
display: block;
- &.icon-color {
+ &.sprt-color {
opacity: 1;
cursor: unset;
}
@@ -1123,7 +1119,7 @@
}
}
- &.date:hover .icon.icon-trash {
+ &.date:hover .icon.sprt-trash {
display: none;
}
}
@@ -1202,9 +1198,9 @@ input[type='checkbox'].checkbox {
opacity: .7;
}
- &.icon-checkmark,
- &.icon-tag-active,
- &[class*=' icon-task-star-'] {
+ &.sprt-checkmark,
+ &.sprt-tag-active,
+ &[class*=' sprt-task-star-'] {
opacity: 1 !important;
}
@@ -1227,8 +1223,8 @@ input[type='checkbox'].checkbox {
height: 16px;
&.success {
- @extend .icon-color;
- @extend .icon-checkmark-color;
+ @extend .sprt-color;
+ @extend .sprt-checkmark-color;
}
&.refresh {
diff --git a/lib/Service/CollectionsService.php b/lib/Service/CollectionsService.php
index 8a3c33ad..76e3a0b7 100644
--- a/lib/Service/CollectionsService.php
+++ b/lib/Service/CollectionsService.php
@@ -71,32 +71,32 @@ class CollectionsService {
'id' => "starred",
'displayName' => (string)$this->l10n->t('Important'),
'show' => 2,
- 'icon' => 'icon-task-star'),
+ 'icon' => 'sprt-task-star'),
array(
'id' => "today",
'displayName' => (string)$this->l10n->t('Today'),
'show' => 2,
- 'icon' => 'icon-calendar'),
+ 'icon' => 'sprt-calendar'),
array(
'id' => "week",
'displayName' => (string)$this->l10n->t('Week'),
'show' => 2,
- 'icon' => 'icon-calendar'),
+ 'icon' => 'sprt-calendar'),
array(
'id' => "all",
'displayName' => (string)$this->l10n->t('All'),
'show' => 2,
- 'icon' => 'icon-all'),
+ 'icon' => 'sprt-all'),
array(
'id' => "current",
'displayName' => (string)$this->l10n->t('Current'),
'show' => 2,
- 'icon' => 'icon-current'),
+ 'icon' => 'sprt-current'),
array(
'id' => "completed",
'displayName' => (string)$this->l10n->t('Completed'),
'show' => 2,
- 'icon' => 'icon-checkmark')
+ 'icon' => 'sprt-checkmark')
);
foreach ($collections as $key => $collection){
$tmp = $this->settings->getUserValue($this->userId, $this->appName,'show_'.$collection['id']);
diff --git a/src/components/AppNavigation/List.vue b/src/components/AppNavigation/List.vue
index a1ad5b67..048cdbc8 100644
--- a/src/components/AppNavigation/List.vue
+++ b/src/components/AppNavigation/List.vue
@@ -47,7 +47,7 @@ License along with this library. If not, see .
:calendar="calendar" />
diff --git a/src/components/TaskBody.vue b/src/components/TaskBody.vue
index c19656ea..00407d5a 100644
--- a/src/components/TaskBody.vue
+++ b/src/components/TaskBody.vue
@@ -77,31 +77,31 @@ License along with this library. If not, see .
{{ dueDateString }}
-
+
-
+