Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions frontend/src/app/_theme.html
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ <h1 class="bs-section-title">Buttons</h1>
<button class="btn btn-twitter"><i class="icon-twitter icon-decent"></i> Twitter</button>
<button class="btn btn-microsoft"><i class="icon-microsoft icon-decent"></i> Microsoft</button>
<button class="btn btn-github"><i class="icon-github icon-decent"></i> Github</button>
<button class="btn btn-externaloidc"><i class="icon-externaloidc icon-decent"></i> OIDC</button>
</div>
</div>

Expand Down
4 changes: 4 additions & 0 deletions frontend/src/app/theme/_bootstrap.scss
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,10 @@ a {
@include button-variant($color-extern-twitter, $color-extern-twitter);
}

&-externaloidc {
@include button-variant($color-extern-oidc, $color-extern-oidc);
}

// Special radio button.
&-radio {
& {
Expand Down
1 change: 1 addition & 0 deletions frontend/src/app/theme/_vars.scss
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ $color-extern-github: #353535;
$color-extern-google: #d34836;
$color-extern-microsoft: #004185;
$color-extern-twitter: #1da1f2;
$color-extern-oidc: #526484;

$color-theme-brand: #3389ff;
$color-theme-brand-dark: #3284f4;
Expand Down
3 changes: 3 additions & 0 deletions frontend/src/app/theme/icomoon/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,9 @@
.icon-external-link:before {
content: "\e96d";
}
.icon-externaloidc:before {
content: "\e96d";
}
.icon-minus-square:before {
content: "\e969";
}
Expand Down
Loading