Skip to content

Commit

Permalink
feat(gluu-core-bom): fix design for bootstrap 5
Browse files Browse the repository at this point in the history
  • Loading branch information
shekhar16 committed Dec 23, 2023
1 parent ca2feaa commit 2fdec30
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
style="margin-bottom: 0px; overflow: auto;">
<ul class="nav nav-tabs" id="oidctab">
<li><a href="#standardSettings"
class="StandardTab" data-bs-toggle="tab" class="active">#{msgs['clientForm.tab.standard']}</a></li>
class="StandardTab active" data-bs-toggle="tab">#{msgs['clientForm.tab.standard']}</a></li>
<li><a href="#token" class="Token"
data-bs-toggle="tab">#{msgs['clientForm.tab.token']}</a></li>
<li><a href="#logout" class="Logout"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@
<b:panel title="oxAuth Logo/Favicon" look="primary"
iconAwesome="fa-sliders">
<div class="row">
<div class="col-sm-6 col-lg-6" style="padding-right: 15px !important;>
<div class="col-sm-6 col-lg-6" style="padding-right: 15px !important;">
<b:panel id="oxAuthLogoPanelId" title="Current oxAuth Logo"
look="success" collapsible="true" collapsed="true">
<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion server/src/main/webapp/client/clientInventory.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<h:panelGroup id="oidcClientsTable">
<div class="row"
style="padding: 5px; margin-bottom: 5px; margin-left: 15px">
<b:link style-class="addClientButtonClass btn btn-primary"
<b:link style-class="addClientButtonClass btn btn-primary" style="width: 9%;"
icon="plus" outcome="/client/addClient" onclick="clearOIDC();"
value="#{msgs['client.addClient']}" includeViewParams="false" />
</div>
Expand Down
10 changes: 5 additions & 5 deletions server/src/main/webapp/scope/scopeInventory.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="row"
style="padding: 5px; margin-bottom: 5px; margin-left: 15px">
<b:link style-class="addScopeButtonClass btn btn-primary"
icon="plus" outcome="/scope/addScope"
icon="plus" outcome="/scope/addScope" style="width: 9%;"
value="#{msgs['scope.addScope']}" includeViewParams="false" />
</div>
<p:spacer height="16" />
Expand Down Expand Up @@ -56,18 +56,18 @@
value="#{searchScopeAction.scopeList}" var="clt"
print="true" excel="true" csv="true" pdf="true"
select="true">
<b:dataTableColumn label="#{msgs['scope.inum']}">
<b:dataTableColumn label="#{msgs['scope.inum']}" header-style="font-size: 14px !important;">
<h:link includeViewParams="false"
outcome="/scope/updateScope" value="#{clt.inum}">
<f:param name="inum" value="#{clt.inum}" />
</h:link>
</b:dataTableColumn>
<b:dataTableColumn label="#{msgs['scope.displayName']}"
<b:dataTableColumn label="#{msgs['scope.displayName']}" header-style="font-size: 14px !important;"
value="#{clt.id eq null ? clt.displayName : clt.id}">
</b:dataTableColumn>
<b:dataTableColumn value="#{clt.description}"
<b:dataTableColumn value="#{clt.description}" header-style="font-size: 14px !important;"
label="#{msgs['scope.description']}" />
<b:dataTableColumn label="#{msgs['scope.scopeType']}"
<b:dataTableColumn label="#{msgs['scope.scopeType']}" header-style="font-size: 14px !important;"
value="#{clt.scopeType}" severity="primary" />
</b:dataTable>
</h:form>
Expand Down

0 comments on commit 2fdec30

Please sign in to comment.