Skip to content

Commit

Permalink
feat: Apply border-radius to apps (Apps) - MEED-2681 - Meeds-io/MIPs#81
Browse files Browse the repository at this point in the history
… (#282)

This change adds the new brandable border radius to the app admin application

(cherry picked from commit 41abeef)
(cherry picked from commit 9f4e379)
  • Loading branch information
SaraBoutej authored and exo-swf committed Nov 14, 2023
1 parent a41fb19 commit 532613c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
7 changes: 0 additions & 7 deletions app-center-webapps/src/main/webapp/skin/less/app-center.less
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

/* This file contains CSS for admin setup portlet */
.applicationsAdmin {
background: @baseBackgroundDefault !important;
border-radius: 6px;
box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.02);
display: block;

.uiTabNormal.uiTabInPage {
.appAdminTabs {
.v-item-group {
Expand Down Expand Up @@ -426,7 +421,6 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
width: 100%;
}
.authorizedApplicationsContainer {
border-radius: 4px;
background: @baseBackgroundDefault;
margin-right: 14px ~'; /** orientation=lt */ ';
margin-left: 14px ~'; /** orientation=rt */ ';
Expand Down Expand Up @@ -592,7 +586,6 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
}
}
.userFavoriteApplicationsContainer {
border-radius: 4px;
background: @baseBackgroundDefault;

.userFavoriteApplications {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
<v-flex>
<v-tabs
v-model="selectedTab"
slider-size="4">
slider-size="4"
class="card-border-radius">
<v-tab
key="applications"
href="#applications"
Expand All @@ -35,7 +36,7 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
</v-tab>
</v-tabs>

<v-tabs-items v-model="selectedTab" class="mt-2">
<v-tabs-items v-model="selectedTab" class="mt-2 card-border-radius">
<v-tab-item
id="applications"
value="applications"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
<template>
<div class="userApplications">
<v-row dense>
<v-col class="authorizedApplicationsContainer">
<v-col class="authorizedApplicationsContainer card-border-radius">
<user-authorizedApplications :can-add-favorite="canAddFavorite" :default-app-image="defaultAppImage" />
</v-col>
<v-col class="userFavoriteApplicationsContainer" sm="3">
<v-col class="userFavoriteApplicationsContainer card-border-radius" sm="3">
<user-favoriteApplications :default-app-image="defaultAppImage" @canAddFavorite="setCanAddFavorite" />
</v-col>
</v-row>
Expand Down

0 comments on commit 532613c

Please sign in to comment.