Skip to content

Commit 9daddf7

Browse files
authored
Merge pull request #8997 from NuGet/main
[ReleasePrep][2022.02.09] FI of main into dev
2 parents 04ace5f + 3909419 commit 9daddf7

15 files changed

Lines changed: 404 additions & 821 deletions

File tree

src/AccountDeleter/EmptyFeatureFlagService.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,11 @@ public bool IsDisplayVulnerabilitiesEnabled()
8686
throw new NotImplementedException();
8787
}
8888

89+
public bool IsDotnet20BannerEnabled()
90+
{
91+
throw new NotImplementedException();
92+
}
93+
8994
public bool IsForceFlatContainerIconsEnabled()
9095
{
9196
throw new NotImplementedException();

src/Bootstrap/dist/css/bootstrap-theme.css

Lines changed: 57 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Bootstrap/less/theme/page-home.less

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,72 @@
99
}
1010
}
1111

12+
div.dotnet-20-banner {
13+
position: relative;
14+
margin-top: 32px;
15+
}
16+
17+
.dotnet-20-banner {
18+
.dotnet-20-image {
19+
position: absolute;
20+
top: 0;
21+
left: 0;
22+
height: 100%;
23+
width: 100%;
24+
25+
img {
26+
height: 100%;
27+
width: 100%;
28+
object-fit: cover;
29+
background-color: #000;
30+
}
31+
}
32+
33+
.container {
34+
.row {
35+
color: white;
36+
37+
@media (max-width: @screen-md-max) {
38+
margin-top: 48px;
39+
margin-bottom: 48px;
40+
}
41+
42+
@media (min-width: @screen-md-max) {
43+
margin-top: 144px;
44+
margin-bottom: 144px;
45+
}
46+
47+
.banner-text {
48+
backdrop-filter: blur(2px);
49+
50+
h2 {
51+
margin-top: 0px;
52+
font-weight: 600;
53+
}
54+
55+
h3 {
56+
margin-top: 0px;
57+
font-weight: 400;
58+
}
59+
60+
a {
61+
padding: 5px 12px 5px 12px;
62+
border: 1px solid white;
63+
color: white;
64+
font-weight: 600;
65+
}
66+
67+
a:focus {
68+
outline-color: #fff;
69+
outline-style: dashed;
70+
outline-width: 2px;
71+
outline-offset: 3px;
72+
}
73+
}
74+
}
75+
}
76+
}
77+
1278
.what-is-nuget {
1379
font-size: 1.15em;
1480
padding-bottom: 75px;

0 commit comments

Comments
 (0)