0.1.4 release tiny changes to tips popups

This commit is contained in:
Elvanos 2021-03-21 01:29:25 +01:00
parent fdb39bbe47
commit d8effb77f9
5 changed files with 24 additions and 11 deletions

View file

@ -136,7 +136,7 @@
Hide tips on project screen
<q-icon name="mdi-help-circle" size="16px" class="q-ml-md">
<q-tooltip :delay="500">
Hides all the social links on the Project overview screen.
Hides the project screen tips & tricks info card.
</q-tooltip>
</q-icon>
</div>

View file

@ -33,7 +33,7 @@ html {
}
body {
background-color: rgba($primary, 0.001);
background-color: rgba($primary, 0.02);
overflow-y: scroll;
color: darken($dark, 12.5);
@ -109,9 +109,11 @@ body {
.q-notification.bg-info {
max-width: 500px;
border: 2px solid var(--q-color-primary);
color: var(--q-color-dark);
.q-notification__message > div:not(.q-notification__caption) {
color: var(--q-color-primary);
i {
color: var(--q-color-dark);
}
}

View file

@ -20,7 +20,7 @@ $dark : #18303a;
$positive : #35a14e;
$negative : #c10015;
$info : #6f43b1;
$info : lighten(#d7ac47, 35);
$warning : #f2c037;
$customColors: (

View file

@ -13,13 +13,19 @@
<div class="col-12">
<h2 class="mainProjectTitle"> {{projectName}}</h2>
</div>
<div class="hintWrapper" v-if="graphDataShowing && !hideTooltipsProject">
<div class="text-subtitle1 text-primary text-weight-medium text-left">
Did you know?
<div class="hintWrapper" v-if="!hideTooltipsProject && allDocuments > 0">
<div>
<q-icon name="mdi-help" size="30px" class="q-mr-md" />
</div>
<div class="text-weight-medium text-left text-accent">
{{tipTrickMessage}}
<div>
<div class="text-subtitle1 text-dark text-bold text-left">
Did you know?
</div>
<div class="text-weight-medium text-dark text-left">
{{tipTrickMessage}}
</div>
</div>
</div>
<div>
@ -314,11 +320,15 @@ export default class ProjectScreen extends BaseClass {
.hintWrapper {
max-width: 950px;
display: flex;
align-items: center;
padding: 15px 20px;
width: 100%;
background-color: $info;
background-color: lighten(#d7ac47, 35);
border-radius: 5px;
margin-bottom: 30px;
color: var(--q-color-dark);
border: 2px solid var(--q-color-primary);
}
.mainProjectTitle {

View file

@ -15,6 +15,7 @@
- Add cogwheels (loading) for the relationship fields when opening/closing since it takes a while on some PCs
- Add safeguard to escape closing of settings only after something actually got modified
- Add hover/on-demand document preview to relationships
- Floating notes corkboard
- Considering multiple "belongs under" category listing
- Add intelligent responsive design to the left tree and document body (maybe button to pull the left bar in and out?)