Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ReleasePrep][2021.08.30]RI of dev into main #8776

Merged
merged 10 commits into from
Sep 1, 2021
Merged
93 changes: 57 additions & 36 deletions src/Bootstrap/dist/css/bootstrap-theme.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

53 changes: 0 additions & 53 deletions src/Bootstrap/dist/css/bootstrap.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 0 additions & 5 deletions src/Bootstrap/less/buttons.less
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,6 @@
.btn-danger {
.button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);
}
// Blue button for installation instructions
.btn-blue {
.button-variant(@btn-default-color; #0078D4; @btn-default-border);
}


// Link buttons
// -------------------------
Expand Down
9 changes: 8 additions & 1 deletion src/Bootstrap/less/theme/common-licenses.less
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@
word-break: normal;
}

.custom-license-container {
.custom-license-container, .license-file-html-container{
display: block;
padding: 10.5px;
background-color: @pre-bg;
border: 1px solid #ccc;
word-break: normal;
margin-bottom: @default-margin-bottom;
overflow: auto;
max-height: 450px;
}
}
101 changes: 59 additions & 42 deletions src/Bootstrap/less/theme/page-display-package-v2.less
Original file line number Diff line number Diff line change
Expand Up @@ -160,48 +160,6 @@
margin-bottom: 15px;
}

.installation-instructions {
background-color: #F3F2F1;

.installation-instructions-dropdown {
font-size: 14px;
background-color: #F3F2F1;
height: 31px;
border-left: 0px;
border-top: 0px;
border-right: 0px;
}

.installation-instruction {
background-color: #FAF9F8;
font-size: 14px;

pre {
background-color: #FAF9F8;
border: 0px;
margin-bottom: 0px;
width: 100%;
}

.alert {
margin-top: 0px;
}
}
}

button {
width: 32px;
height: 32px;
float: right;
padding: 0px;

.ms-Icon--Copy {
color: #FFFFFF;
width: 16px;
height: 16px;
}
}

.package-details-main {
.break-word;

Expand All @@ -219,8 +177,13 @@
margin-bottom: 18px;
}

.ms-Icon {
top: 1px;
}

img.icon {
position: absolute;
top: 1px;
left: -24px;
width: 16px;
height: 16px;
Expand Down Expand Up @@ -415,6 +378,55 @@
font-weight: 600;
text-decoration: underline;
}

.tab-content {
.tab-pane {
> div {
display: table;
height: 1px;
}

.install-script-row {
display: table-row;
height: 100%;

.install-script {
display: table-cell;
background-color: @panel-footer-bg;
font-family: @font-family-monospace;
font-size: 1em;
color: #fff;
width: 100%;
max-width: 1px;
line-height: 1.5;
white-space: pre-wrap;
// Add a border with the same color as the background to support visual callout
// in high contrast mode (since borders are shown).
border-color: @panel-footer-bg;
border-style: solid;
border-width: 1px 0 1px 1px;
user-select: all;
vertical-align: middle;
word-break: break-word;
}

.copy-button {
height: 100%;

button {
height: 100%;
min-height: 42px;
line-height: 1.5;
}
}
}

.alert {
margin: 0;
width: 100%;
}
}
}
}

.body-tabs {
Expand All @@ -432,6 +444,11 @@
font-size: 14px;
font-family: @font-family-base;
color: #323130;

.ms-Icon {
position: relative;
top: 2px;
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ public enum AuditedPackageRegistrationAction
RemoveOwner,
MarkVerified,
MarkUnverified,
SetRequiredSigner
SetRequiredSigner,
AddOwnershipRequest,
DeleteOwnershipRequest,
}
}
Loading