Skip to content

Commit

Permalink
feat: Margins cleanup - Remove extra-margins - MEED-2895-Meeds-io/MIP…
Browse files Browse the repository at this point in the history
…s#103 (#1283)

This change allows tp remove all paddings from the overview page portlet container.
The margin will be added as a CSS variable inside the less variables, so we can change this variable using the branding UI.

(cherry picked from commit e5452d5)
(cherry picked from commit bbe71d1)
  • Loading branch information
SaraBoutej authored and hbenali committed Nov 22, 2023
1 parent 0d836b9 commit 24a1cc4
Showing 1 changed file with 24 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -645,85 +645,85 @@
</portlet-application>
</container>
<container
id="TopChallengersContainer"
id="contributionsContainer"
template="system:/groovy/portal/webui/container/UIVColContainer.gtmpl"
cssClass="col col-sm-12 col-md-6 col-lg-4">
cssClass="col col-sm-12 col-md-6 col-lg-4 py-0">
<portlet-application>
<portlet>
<application-ref>gamification-portlets</application-ref>
<portlet-ref>topChallengers</portlet-ref>
<portlet-ref>myContributions</portlet-ref>
</portlet>
<title>Top Challengers</title>
<title>My Contributions</title>
<access-permissions>*:/platform/users;*:/platform/externals</access-permissions>
<show-info-bar>false</show-info-bar>
</portlet-application>
</container>
<container
id="ChanllengesOverviewContainer"
id="ReputationContainer"
template="system:/groovy/portal/webui/container/UIVColContainer.gtmpl"
cssClass="col col-sm-12 col-md-6 col-lg-4">
cssClass="col col-sm-12 col-md-6 col-lg-4 py-0">
<portlet-application>
<portlet>
<application-ref>gamification-portlets</application-ref>
<portlet-ref>challengesOverview</portlet-ref>
<portlet-ref>myReputation</portlet-ref>
</portlet>
<title>Challenges Overview</title>
<title>My Reputation</title>
<access-permissions>*:/platform/users;*:/platform/externals</access-permissions>
<show-info-bar>false</show-info-bar>
</portlet-application>
</container>
<container
id="ProgramsOverviewContainer"
id="RewardsContainer"
template="system:/groovy/portal/webui/container/UIVColContainer.gtmpl"
cssClass="col col-sm-12 col-md-6 col-lg-4">
cssClass="col col-sm-12 col-md-6 col-lg-4 py-0">
<portlet-application>
<portlet>
<application-ref>gamification-portlets</application-ref>
<portlet-ref>programsOverview</portlet-ref>
<portlet-ref>myRewards</portlet-ref>
</portlet>
<title>Programs Overview</title>
<title>My Rewards</title>
<access-permissions>*:/platform/users;*:/platform/externals</access-permissions>
<show-info-bar>false</show-info-bar>
</portlet-application>
</container>
<container
id="contributionsContainer"
id="TopChallengersContainer"
template="system:/groovy/portal/webui/container/UIVColContainer.gtmpl"
cssClass="col col-sm-12 col-md-6 col-lg-4">
cssClass="col col-sm-12 col-md-6 col-lg-4 py-0">
<portlet-application>
<portlet>
<application-ref>gamification-portlets</application-ref>
<portlet-ref>myContributions</portlet-ref>
<portlet-ref>topChallengers</portlet-ref>
</portlet>
<title>My Contributions</title>
<title>Top Challengers</title>
<access-permissions>*:/platform/users;*:/platform/externals</access-permissions>
<show-info-bar>false</show-info-bar>
</portlet-application>
</container>
<container
id="ReputationContainer"
id="ChanllengesOverviewContainer"
template="system:/groovy/portal/webui/container/UIVColContainer.gtmpl"
cssClass="col col-sm-12 col-md-6 col-lg-4">
cssClass="col col-sm-12 col-md-6 col-lg-4 py-0">
<portlet-application>
<portlet>
<application-ref>gamification-portlets</application-ref>
<portlet-ref>myReputation</portlet-ref>
<portlet-ref>challengesOverview</portlet-ref>
</portlet>
<title>My Reputation</title>
<title>Challenges Overview</title>
<access-permissions>*:/platform/users;*:/platform/externals</access-permissions>
<show-info-bar>false</show-info-bar>
</portlet-application>
</container>
<container
id="RewardsContainer"
id="ProgramsOverviewContainer"
template="system:/groovy/portal/webui/container/UIVColContainer.gtmpl"
cssClass="col col-sm-12 col-md-6 col-lg-4">
cssClass="col col-sm-12 col-md-6 col-lg-4 py-0">
<portlet-application>
<portlet>
<application-ref>gamification-portlets</application-ref>
<portlet-ref>myRewards</portlet-ref>
<portlet-ref>programsOverview</portlet-ref>
</portlet>
<title>My Rewards</title>
<title>Programs Overview</title>
<access-permissions>*:/platform/users;*:/platform/externals</access-permissions>
<show-info-bar>false</show-info-bar>
</portlet-application>
Expand Down

0 comments on commit 24a1cc4

Please sign in to comment.