Skip to content

Commit

Permalink
Merge Spaces Directory - Meeds-io/MIPs#158 (#843)
Browse files Browse the repository at this point in the history
  • Loading branch information
boubaker authored Oct 9, 2024
2 parents f324b5e + ebf6b7e commit ba34c6c
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 32 additions & 1 deletion platform-ui-skin/src/main/webapp/skin/less/core/helpers.less
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
.text-subtitle-font-size {
font-size: @textSubtitleFontSize !important;
}
.text-font-size {
.text-font-size, .text-body-font-size {
font-size: @textFontSize !important;
}
.widget-text-header{
Expand Down Expand Up @@ -300,6 +300,9 @@
.no-box-shadow {
box-shadow: none !important;
}
.border-radius-circle {
border-radius: 50% !important;
}
.border-radius {
border-radius: @inputBorderRadius !important;
}
Expand All @@ -318,6 +321,18 @@
.border-bottom-right-radius {
border-bottom-right-radius: @baseBorderRadius !important;
}
.no-border-top-left-radius {
border-top-left-radius: 0 !important;
}
.no-border-top-right-radius {
border-top-right-radius: 0 !important;
}
.no-border-bottom-left-radius {
border-bottom-left-radius: 0 !important;
}
.no-border-bottom-right-radius {
border-bottom-right-radius: 0 !important;
}
.application-background {
background: @baseBackground !important;
}
Expand Down Expand Up @@ -717,6 +732,10 @@
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
/* 2 x line-height max.. To not use padding with this */
.max-height-2lh {
max-height: 2lh;
}
.text-truncate-3 {
display: -webkit-box;
overflow: hidden;
Expand All @@ -725,6 +744,10 @@
-webkit-line-clamp: 3 !important;
-webkit-box-orient: vertical;
}
/* 3 x line-height max. To not use padding with this */
.max-height-3lh {
max-height: 3lh;
}
.text-truncate-4 {
display: -webkit-box;
overflow: hidden;
Expand All @@ -733,6 +756,10 @@
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
}
/* 4 x line-height max. To not use padding with this */
.max-height-4lh {
max-height: 4lh;
}
.text-truncate-5 {
display: -webkit-box;
overflow: hidden;
Expand All @@ -741,6 +768,10 @@
-webkit-line-clamp: 5;
-webkit-box-orient: vertical;
}
/* 5 x line-height max. To not use padding with this */
.max-height-5lh {
max-height: 5lh;
}
.medium-grey-color {
color: @mediumGrey !important;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@
color: @primaryColor !important;
caret-color: @primaryColor !important;
}
.btn {
.btn, .v-btn.btn {
border: 1px solid @btnBorder;
color: @btnColor;
background-color: @btnBackgroundColor;
Expand Down

0 comments on commit ba34c6c

Please sign in to comment.