mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 07:07:35 +01:00
fix(tasks): styles and wordings
This commit is contained in:
@@ -284,8 +284,8 @@
|
|||||||
&:hover:not(.task-not-scoreable) { background: rgba($yellow-100, 0.25) !important; }
|
&:hover:not(.task-not-scoreable) { background: rgba($yellow-100, 0.25) !important; }
|
||||||
}
|
}
|
||||||
&-bg-noninteractive {
|
&-bg-noninteractive {
|
||||||
background: rgba($yellow-100, 0.15) !important;
|
background-color: $gray-500 !important;
|
||||||
.small-text { color: $yellow-1 !important; }
|
.small-text { color: $gray-100 !important; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -40,7 +40,7 @@
|
|||||||
class="mr-3 mb-1 ml-auto"
|
class="mr-3 mb-1 ml-auto"
|
||||||
:label="'Copy tasks'"
|
:label="'Copy tasks'"
|
||||||
:checked="user.preferences.tasks.mirrorGroupTasks.indexOf(group._id) !== -1"
|
:checked="user.preferences.tasks.mirrorGroupTasks.indexOf(group._id) !== -1"
|
||||||
:hover-text="'Add assigned and open tasks to your personal task board'"
|
:hover-text="'Show assigned and open tasks on your personal task board'"
|
||||||
@change="changeMirrorPreference"
|
@change="changeMirrorPreference"
|
||||||
/>
|
/>
|
||||||
<div
|
<div
|
||||||
|
|||||||
@@ -387,7 +387,13 @@
|
|||||||
@keypress.enter="score('down')"
|
@keypress.enter="score('down')"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="svg-icon"
|
v-if="showTaskLockIcon"
|
||||||
|
class="svg-icon color lock"
|
||||||
|
v-html="icons.lock"
|
||||||
|
></div>
|
||||||
|
<div
|
||||||
|
v-else
|
||||||
|
class="svg-icon mb-1"
|
||||||
v-html="icons.gold"
|
v-html="icons.gold"
|
||||||
></div>
|
></div>
|
||||||
<div class="small-text">
|
<div class="small-text">
|
||||||
@@ -846,8 +852,12 @@
|
|||||||
height: 24px;
|
height: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.lock {
|
||||||
|
color: $gray-200;
|
||||||
|
width: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
.small-text {
|
.small-text {
|
||||||
margin-top: 4px;
|
|
||||||
font-style: initial;
|
font-style: initial;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -66,7 +66,7 @@
|
|||||||
<span
|
<span
|
||||||
v-for="member in assignedUsernames"
|
v-for="member in assignedUsernames"
|
||||||
:key="member"
|
:key="member"
|
||||||
class="assigned-member py-1 px-75 mr-1"
|
class="assigned-member py-1 px-75 mb-1 mr-1"
|
||||||
>
|
>
|
||||||
@{{ member }}
|
@{{ member }}
|
||||||
</span>
|
</span>
|
||||||
|
|||||||
Reference in New Issue
Block a user