Skip to content
This repository has been archived by the owner on Feb 17, 2021. It is now read-only.

Commit

Permalink
Merge pull request #203 from SkillsFundingAgency/FC-689-cookie-banner
Browse files Browse the repository at this point in the history
Fc 689 cookie banner
  • Loading branch information
jamesmking authored Aug 14, 2019
2 parents 2492d78 + 090106a commit a2a0442
Show file tree
Hide file tree
Showing 18 changed files with 2,139 additions and 475 deletions.
5 changes: 5 additions & 0 deletions src/Web/Sfa.Das.Sas.Web/App_Start/RouteConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ public static void RegisterRoutes(RouteCollection routes)
url: "cookies",
defaults: new { controller = "Start", action = "Cookies", id = UrlParameter.Optional });

routes.MapRoute(
name: "CookieDetails",
url: "cookie-details",
defaults: new { controller = "Start", action = "CookieDetails", id = UrlParameter.Optional });

routes.MapRoute(
name: "Stats",
url: "stats",
Expand Down
2 changes: 1 addition & 1 deletion src/Web/Sfa.Das.Sas.Web/Content/dist/css/screen.min.css

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions src/Web/Sfa.Das.Sas.Web/Content/src/styles/_elements.scss
Original file line number Diff line number Diff line change
Expand Up @@ -377,4 +377,10 @@ only screen and (min-resolution: 2dppx) {

.result .error-summary.warning {
margin: 15px 0;
}

@for $i from 1 through 14 {
.cell-width-#{$i * 5} {
width: $i * 5%;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -102,17 +102,19 @@ $module: 'data-list';
margin-bottom: $gutter;

ul {
//TODO: apply '.list-bullet' directly to desired lists in case numbered list may be required interchangably
@extend .list-bullet;
margin-bottom: 0;
list-style-type: disc;
margin-bottom: 0;
padding-left: 20px;
}
}

.data-list--provider {
@include data-list(35);

ul {
@extend .list-bullet;
list-style-type: disc;
margin-bottom: 0;
padding-left: 20px;
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.notification {
border-width: 5px;
border-style: solid;
margin-top: 30px;
margin-bottom: 30px;
padding: 20px 15px 15px;
border-color: #28a197;
.heading-medium {
margin: 0
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ol {
// Bulleted lists
.list-bullet {
list-style-type: disc;
padding-left: 20px;
padding-left: 40px;
}

// Numbered lists
Expand Down
Loading

0 comments on commit a2a0442

Please sign in to comment.