-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
82 changed files
with
1,048 additions
and
1,778 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -124,7 +124,7 @@ h1 { | |
h2 { | ||
font-size: 24px; | ||
line-height: 34px; | ||
font-weight: 700; | ||
font-weight: 600; | ||
} | ||
|
||
h2.green { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
<script> | ||
import I18n from "i18n-js"; | ||
import Button from "../components/Button.svelte"; | ||
import arrowLeftIcon from "../icons/verify/arrow-left.svg?raw"; | ||
import alertSvg from "../icons/alert-circle.svg?raw"; | ||
import {conf} from "../stores/conf"; | ||
export let toggleView; | ||
export let serviceName; | ||
export let id; | ||
const proceed = () => { | ||
window.location.href = `${$conf.basePath}/servicedesk/${id}`; | ||
} | ||
</script> | ||
|
||
<style lang="scss"> | ||
div.info-container { | ||
display: flex; | ||
flex-direction: column; | ||
position: relative; | ||
margin-bottom: 20px; | ||
} | ||
div.header-container { | ||
display: flex; | ||
align-items: center; | ||
margin-bottom: 20px; | ||
span.back { | ||
margin-right: 25px; | ||
cursor: pointer; | ||
:global(svg) { | ||
width: 24px; | ||
height: auto; | ||
} | ||
} | ||
h2.header { | ||
color: var(--color-primary-green); | ||
} | ||
} | ||
p { | ||
margin-bottom: 20px; | ||
&.steps { | ||
font-weight: 600; | ||
} | ||
} | ||
ol { | ||
list-style: decimal; | ||
li { | ||
margin: 0 0 20px 20px; | ||
} | ||
} | ||
.button-container { | ||
display: flex; | ||
} | ||
:global(a.button) { | ||
margin: 25px auto 0 0; | ||
} | ||
.redirect { | ||
display: flex; | ||
align-items: flex-start; | ||
background-color: #fdf8d3; | ||
padding: 15px; | ||
span { | ||
line-height: 22px; | ||
} | ||
:global(svg.alert-circle) { | ||
width: 98px; | ||
height: auto; | ||
margin-right: 16px; | ||
} | ||
} | ||
</style> | ||
|
||
<div class="info-container"> | ||
<div class="header-container"> | ||
<span class="back" on:click={() => toggleView()}> | ||
{@html arrowLeftIcon} | ||
</span> | ||
<h2 class="header">{I18n.t("serviceDesk.confirmIdentityHeader")}</h2> | ||
</div> | ||
<p>{I18n.t("serviceDesk.confirmIdentity")}</p> | ||
<p class="steps">{I18n.t("serviceDesk.stepsHeader")}</p> | ||
<ol> | ||
<li>{I18n.t("serviceDesk.step1")}</li> | ||
<li>{I18n.t("serviceDesk.step2")}</li> | ||
<li>{I18n.t("serviceDesk.step3")}</li> | ||
</ol> | ||
<div class="redirect"> | ||
{@html alertSvg} | ||
<span>{@html I18n.t("serviceDesk.redirectWarning", {service: serviceName})}</span> | ||
</div> | ||
<Button label={I18n.t("serviceDesk.next")} | ||
large={true} | ||
onClick={() => proceed()}/> | ||
|
||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -160,3 +160,7 @@ table { | |
} | ||
|
||
} | ||
|
||
strong { | ||
font-weight: 600; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,7 +98,7 @@ | |
} | ||
li.active a { | ||
font-weight: bold; | ||
font-weight: 600; | ||
color: black; | ||
cursor: not-allowed; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,7 +51,7 @@ | |
} | ||
span.has-sub-label { | ||
font-weight: bold; | ||
font-weight: 600; | ||
} | ||
span.login-icon { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.