Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
idatt2106_2024_03_frontend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Scrum_Team_3
idatt2106_2024_03_frontend
Commits
63e8ed93
Commit
63e8ed93
authored
11 months ago
by
vildemv
Browse files
Options
Downloads
Patches
Plain Diff
Created pop up for path page.
parent
e7818056
No related branches found
No related tags found
1 merge request
!53
Frontend improvements
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/components/popups/help/PathHelpPopUp.vue
+110
-0
110 additions, 0 deletions
src/components/popups/help/PathHelpPopUp.vue
with
110 additions
and
0 deletions
src/components/popups/help/PathHelpPopUp.vue
0 → 100644
+
110
−
0
View file @
63e8ed93
<
script
setup
lang=
"ts"
>
const
emit
=
defineEmits
([
'
closePopUpp
'
]);
const
closePopUp
=
()
=>
{
emit
(
'
closePopUpp
'
);
}
</
script
>
<
template
>
<div
class=
"popup-content"
>
<div
class=
"header"
>
<img
src=
"/src/components/icons/navigation/lightbulb-on.svg"
alt=
"pop-up-icon"
class=
"img"
>
<h2>
Sparemål
</h2>
</div>
<h3>
Hei! Du befinner deg for øyeblikket på sparesti-siden til sparesti.
På denne siden finner du en visuell representasjon av sparestien til sparemålet ditt!
Siden viser også en oversikt over viktig informasjon knyttet til sparemålet.
Du kan også velge å redigere sparemålet dersom noe ikke stemmer!
</h3>
<div
class=
"option-buttons"
>
<button
class=
"option-button"
id=
"delete-button"
@
click=
"closePopUp()"
>
<h2
class=
"option-button-title"
>
Ok
</h2>
</button>
</div>
</div>
</
template
>
<
style
scoped
>
.popup-content
{
display
:
flex
;
flex-direction
:
column
;
width
:
50%
;
height
:
50%
;
background-color
:
var
(
--color-background
);
padding
:
20px
;
border-radius
:
10px
;
border
:
2px
solid
var
(
--color-border
);
place-content
:
space-between
;
align-items
:
start
;
overflow-y
:
scroll
;
gap
:
2.5%
;
}
.header
{
display
:
flex
;
flex-direction
:
row
;
place-content
:
start
;
width
:
100%
;
height
:
10%
;
gap
:
1.5%
;
}
.img
{
height
:
100%
;
}
.option-buttons
{
display
:
flex
;
flex-direction
:
row
;
width
:
100%
;
place-content
:
center
;
}
.option-button
{
border
:
none
;
border-radius
:
20px
;
width
:
35%
;
}
.option-button-title
{
color
:
var
(
--color-headerText
);
font-weight
:
bold
;
}
#delete-button
{
background-color
:
var
(
--color-confirm-button
);
}
#delete-button
:active
{
background-color
:
var
(
--color-confirm-button-click
);
}
#delete-button
:hover
{
transform
:
scale
(
1.02
);
}
@media
only
screen
and
(
max-width
:
1000px
){
.popup-content
{
width
:
90%
;
height
:
60%
;
}
}
@media
(
prefers-color-scheme
:
dark
)
{
.img
{
filter
:
invert
(
1
);
}
}
</
style
>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment