-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix background image * Fix height * Rename background image of Overview * New contact page * Add breadcrumb & clean css * Fix css on small screens * Fix unit tests * Fix translations * Move Contact page inside the Administration folder * Clean up RouterRoute properties * Revert changes in resources * Revert changes from prettier * Extract duplicated PageContainer code to new Component * Clean up css * Fix breadcrumb using semantic html * Move contact title to general & clean up css values * Fix contact tests * Fix texts * Add link to contact page on overview page * Add link to contact page in error messages * Move Contact page to own package * Replace contact package with studio-root package * Remove breadcrumb from contact page * Handle invalid routes at root * Fix routing * Fix header for unauthenticated users * Clean up code * Clean up css * datamodelll and policy controller tests split on run * test split in dotnet run --------- Co-authored-by: Mirko Sekulic <misha.sekulic@gmail.com>
- Loading branch information
1 parent
4d43dc6
commit d76cbaa
Showing
54 changed files
with
808 additions
and
165 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
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,17 @@ | ||
@{ViewBag.Title = "Altinn Studio";} | ||
|
||
<html lang="no"> | ||
<head> | ||
<title>@ViewBag.Title</title> | ||
<link rel="shortcut icon" href="/designer/img/favicon.ico"/> | ||
<script type="text/javascript"> | ||
var instrumentationKey = "@ViewBag.InstrumentationKey" | ||
window.instrumentationKey = instrumentationKey; | ||
</script> | ||
</head> | ||
<body> | ||
<div id="root" class="media-body flex-column d-flex"></div> | ||
<link href="/designer/frontend/dashboard/dashboard.css" rel="stylesheet" asp-append-version="true"/> | ||
<script src="/designer/frontend/dashboard/dashboard.js" type="text/javascript" asp-append-version="true"></script> | ||
</body> | ||
</html> |
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 |
---|---|---|
@@ -1,17 +1,25 @@ | ||
@{ViewBag.Title = "Altinn Studio";} | ||
@{ | ||
ViewBag.Title = "Altinn Studio"; | ||
} | ||
|
||
<html lang="no"> | ||
|
||
<head> | ||
<title>@ViewBag.Title</title> | ||
<link rel="shortcut icon" href="/designer/img/favicon.ico"/> | ||
<script type="text/javascript"> | ||
var instrumentationKey = "@ViewBag.InstrumentationKey" | ||
window.instrumentationKey = instrumentationKey; | ||
</script> | ||
<title>@ViewBag.Title</title> | ||
<link href="https://altinncdn.no/fonts/roboto/latin/roboto.css" rel="stylesheet"> | ||
<link href="https://altinncdn.no/fonts/inter/inter.css" rel="stylesheet"> | ||
<link rel="shortcut icon" href="/designer/img/favicon.ico" /> | ||
<script type="text/javascript"> | ||
var instrumentationKey = "@ViewBag.InstrumentationKey" | ||
window.instrumentationKey = instrumentationKey; | ||
</script> | ||
</head> | ||
|
||
<body> | ||
<div id="root" class="media-body flex-column d-flex"></div> | ||
<link href="/designer/frontend/dashboard/dashboard.css" rel="stylesheet" asp-append-version="true"/> | ||
<script src="/designer/frontend/dashboard/dashboard.js" type="text/javascript" asp-append-version="true"></script> | ||
<div id="root" class="media-body flex-column d-flex"></div> | ||
<link href="/designer/frontend/studio-root/studio-root.css" rel="stylesheet" asp-append-version="true" /> | ||
<script src="/designer/frontend/studio-root/studio-root.js" type="text/javascript" | ||
asp-append-version="true"></script> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.