Skip to content

Commit f3563d5

Browse files
authored
Merge pull request #10649 from NuGet/dev
[ReleasePrep][2025.12.05]RI
2 parents bd7a22d + cb66478 commit f3563d5

33 files changed

Lines changed: 233 additions & 386 deletions

File tree

src/AccountDeleter/EmptyFeatureFlagService.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -333,11 +333,6 @@ public bool CanUseFederatedCredentials(User user)
333333
{
334334
throw new NotImplementedException();
335335
}
336-
337-
public bool IsTrustedPublishingEnabled(User user)
338-
{
339-
throw new NotImplementedException();
340-
}
341336

342337
public bool IsProfileLoadOptimizationEnabled()
343338
{

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

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

src/Bootstrap/less/theme/base.less

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ label {
7676
body {
7777
display: table;
7878
background: var(--neutralBackground2Rest);
79-
79+
8080
h1, h2, h3, p {
8181
margin-bottom: @default-margin-bottom;
8282
}
@@ -619,21 +619,22 @@ img.reserved-indicator-icon {
619619
// Theme Definition
620620
html {
621621
height: 100%;
622+
scrollbar-gutter: stable;
622623
}
623624

624-
body[id="/"] {
625+
body:has(.page-home) {
625626
background: var(--body-background-color);
626627
}
627628

628-
body,
629-
body[id="/"] {
629+
body {
630630
height: 100%;
631631
width: 100%;
632632
margin: 0;
633633
background-repeat: no-repeat;
634634
background-attachment: fixed;
635635
color: var(--neutralForeground1Rest);
636636
}
637+
637638
/* For tooltip */
638639
.tooltip-target {
639640
position: relative;

src/Bootstrap/less/theme/page-list-packages.less

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,12 @@
247247
.prerel-option {
248248
display: flex;
249249
}
250+
251+
.mcp-learn-more {
252+
align-self: center;
253+
font-weight: 400;
254+
font-size: small;
255+
}
250256
}
251257

252258
@media (min-width: @screen-sm) {
Lines changed: 36 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,123 +1,129 @@
11
.page-status {
22
@status-general-margin-bottom: 24px;
3-
3+
44
.status-general {
55
padding: 13px;
66
margin-bottom: @status-general-margin-bottom;
7-
7+
88
p {
99
margin: 0;
1010
}
11-
11+
1212
i {
1313
vertical-align: middle;
1414
}
15-
15+
1616
.text-span {
1717
font-size: 1.5em;
1818
vertical-align: middle;
1919
}
20-
20+
2121
.last-checked {
2222
margin-left: 10px;
2323
}
2424
}
25-
25+
26+
.status-btn {
27+
display: inline-flex;
28+
align-items: center;
29+
padding: 2px;
30+
}
31+
2632
.status-up {
2733
background-color: var(--statusSuccessBackground1Rest);
2834

2935
.ms-Icon {
30-
color: var(--neutralForeground3Rest);
36+
color: var(--statusSuccessForeground1Rest);
3137
}
3238
}
33-
39+
3440
.status-down {
3541
background-color: var(--statusDangerBackground1Rest);
36-
42+
3743
.ms-Icon {
3844
color: var(--statusDangerForeground1Rest);
3945
}
4046
}
41-
47+
4248
.status-degraded {
4349
background-color: var(--statusWarningBackground1Rest);
44-
50+
4551
.ms-Icon {
4652
color: var(--statusWarningForeground1Rest);
4753
}
4854
}
49-
55+
5056
.update {
5157
margin-bottom: @status-general-margin-bottom;
5258
}
53-
59+
5460
.ms-Icon {
5561
margin-right: 10px;
5662
font-size: 1.25em;
5763
}
58-
64+
5965
.ms-Icon--CheckMark {
6066
color: var(--statusSuccessForeground1Rest);
6167
}
62-
68+
6369
.ms-Icon--Warning {
6470
color: var(--statusWarningForeground1Rest);
6571
}
66-
72+
6773
.ms-Icon--Cancel {
6874
color: var(--statusDangerForeground1Rest)
6975
}
70-
76+
7177
.table {
7278
word-break: break-word;
73-
79+
7480
thead {
7581
th:nth-child(1) {
7682
width: 50%;
7783
}
78-
84+
7985
th:nth-child(2) {
8086
width: 30%;
8187
}
82-
88+
8389
th:nth-child(3) {
8490
width: 20%;
8591
}
8692
}
87-
93+
8894
tbody {
8995
border: none;
90-
96+
9197
tr td {
9298
vertical-align: middle;
93-
99+
94100
.nonaggregate {
95101
margin-left: 20px;
96102
}
97-
103+
98104
i {
99105
vertical-align: middle;
100106
}
101-
107+
102108
span {
103109
vertical-align: middle;
104110
}
105111
}
106112
}
107-
113+
108114
tbody.aggregate tr td:first-child {
109115
font-size: 1.5em;
110-
116+
111117
a, a:hover, a:focus, a:active {
112118
color: var(--neutralForeground1Rest);
113119
text-decoration: none;
114120
}
115-
121+
116122
.ms-Icon {
117123
font-size: .75em;
118124
}
119125
}
120-
126+
121127
tbody + tbody {
122128
border: none;
123129
}
@@ -134,4 +140,4 @@
134140
a .ms-Icon {
135141
font-size: .6em;
136142
}
137-
}
143+
}

0 commit comments

Comments
 (0)