Skip to content

Commit

Permalink
[Rollout] Production rollout 2024-06-27 (#3687)
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksandr-didyk authored Jun 27, 2024
2 parents bd1f834 + ef1261e commit 2286309
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/rollout-issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ This issue tracks the `arcade-services` repository rollout. On top of the [Rollo
- [ ] Keep track of any issues encountered during the rollout either directly in this issue, or in a dedicated issue linked to this issue
- [ ] When finished, update the rollout stats in the [Stats](#stats) section below. The statistics will be available in Kusto a few minutes after the build was finished
- [ ] Merge the `production => main` PR in `arcade-services` (⚠️ **DO NOT SQUASH**)
- [ ] Move rolled-out issues in the `Rollout` column of the [Product Construction](https://github.com/orgs/dotnet/projects/276) board into `Done`. Add a link in to this rollout issue in the comments before closing them ([example](https://github.com/dotnet/arcade-services/issues/2681#issuecomment-1632288755))
- [ ] Move rolled-out issues/PRs in the `Rollout` column of the [Product Construction](https://github.com/orgs/dotnet/projects/276) board into `Done`. Verify that PRs have a reference to the release at the bottom ([example](https://github.com/dotnet/arcade-services/pull/3663)). If needed, manually add a comment with the reference ([example](https://github.com/dotnet/arcade-services/pull/3680#issuecomment-2191186247))
- [ ] Close this issue with closing comment describing a high-level summary of issues encountered during the rollout
- In case of rollback, uncomment the *Rollback* section below and follow the steps there

Expand Down
7 changes: 1 addition & 6 deletions src/Maestro/maestro-angular/src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,9 @@

<div class="collapse navbar-collapse bg-light" id="bs-navbar-collapse" [ngbCollapse]="!navbarOpen"
style="z-index: 1000; width: 100%; padding: 0.5rem 1rem; margin: 0 -1rem;">
<ul class="navbar-nav mr-auto" *ngIf="authorized">
<li class="nav-item">
<a class="nav-link" href="/">Home</a>
</li>
</ul>
<ul class="navbar-nav ml-auto">
<li class="nav-item" *ngIf="userName" ngbDropdown [autoClose]="'outside'">
<a class="nav-link" style="cursor: pointer;" id="navbarDropdown" role="button" ngbDropdownToggle>
<a class="nav-link" style="cursor: pointer;" id="navbarDropdown" role="button" tabindex="0" ngbDropdownToggle>
{{userName}} <span class="caret"></span>
</a>
<div ngbDropdownMenu aria-labelledby="navbarDropdown" style="right: 0; left: auto;">
Expand Down
14 changes: 0 additions & 14 deletions src/Maestro/maestro-angular/src/themes/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -49,20 +49,6 @@ html, body {height: 100%;}
border-bottom: solid 1px $gray-300;
}

.btn-info {
color: darken(#512bd4, 10%);
background-color: #f0f0f0;
border-color: darken(#512bd4, 10%);
}

.btn-info:hover {
color: #512bd4;
background-color: #fbfbfb;
border-color: #512bd4;
border-width: 2px;
padding: 5px 11px;
}

// mc-switch styles

$width: 3em;
Expand Down
14 changes: 14 additions & 0 deletions src/Maestro/maestro-angular/src/themes/dark/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,17 @@
@import "../base-variables";
@import "./post-variables";
@import "../base";

.btn-info {
color: darken(#512bd4, 10%);
background-color: #f0f0f0;
border-color: darken(#512bd4, 10%);
}

.btn-info:hover, .btn-info:focus {
color: #512bd4;
background-color: #fbfbfb;
border-color: #512bd4;
border-width: 2px;
margin: -1px;
}
16 changes: 15 additions & 1 deletion src/Maestro/maestro-angular/src/themes/light/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,18 @@
// No customizations on normal bootstrap
@import "./variables";
@import "../base-variables";
@import "../base";
@import "../base";

.btn-info {
color: darken(#512bd4, 10%);
background-color: #f0f0f0;
border-color: darken(#512bd4, 10%);
}

.btn-info:hover, .btn-info:focus {
color: #512bd4;
background-color: #fbfbfb;
border-color: #512bd4;
border-width: 2px;
margin: -1px;
}

0 comments on commit 2286309

Please sign in to comment.