1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-02 20:28:00 +00:00

cut off long relationship descriptions

This commit is contained in:
Cezary Statkiewicz 2024-08-28 15:13:12 +00:00
parent 8cd9f5b8e0
commit 360f837713
8 changed files with 82 additions and 27 deletions
changelog/entries/unreleased/bug
web-frontend/modules

View file

@ -0,0 +1,7 @@
{
"type": "bug",
"message": "Cut off long relationship descriptions",
"issue_number": 2742,
"bullet_points": [],
"created_at": "2024-08-02"
}

View file

@ -2,23 +2,34 @@
margin: 5px 4px; margin: 5px 4px;
padding: 0 5px; padding: 0 5px;
background-color: $color-neutral-100; background-color: $color-neutral-100;
display: flex; display: inline-flex;
flex-wrap: nowrap; flex-wrap: nowrap;
max-width: calc(100% - 8px); white-space: nowrap;
@include rounded($rounded); @include rounded($rounded);
@include fixed-height(22px, 13px);
&:last-child { &:last-child {
margin-right: 0; margin-right: 0;
} }
@include fixed-height(22px, 13px); .row-modal__field-item &,
.grid-view-array-field.active & {
margin: 5px 4px;
max-width: calc(100% - 8px);
white-space: initial;
display: flex;
}
} }
.array-field__ellipsis { .array-field__ellipsis,
@extend %ellipsis; .array-field__name {
.row-modal__field-item &,
.grid-view-array-field.active & {
max-width: 100%;
max-width: 100%; @extend %ellipsis;
}
} }
.array-field__time { .array-field__time {
@ -27,7 +38,11 @@
.array-field__button { .array-field__button {
margin: 3px 4px; margin: 3px 4px;
max-width: calc(100% - 8px);
.row-modal__field-item &,
.active & {
max-width: calc(100% - 8px);
}
&:last-child { &:last-child {
margin-right: 0; margin-right: 0;
@ -35,25 +50,45 @@
} }
.array-field__multiple-select-container { .array-field__multiple-select-container {
display: contents; display: inline-flex;
.row-modal__field-item &,
.grid-view-array-field.active & {
display: contents;
flex-wrap: wrap;
max-width: 100%;
}
} }
.array-field__single-option { .array-field__single-option {
white-space: nowrap; white-space: nowrap;
margin: 6px 4px 4px; margin: 6px 4px 4px;
overflow: unset; overflow: unset;
display: flex;
flex-wrap: nowrap; flex-wrap: nowrap;
// must use !import because the `select-option-style` overwrites the `max-width`, and // must use !import because the `select-option-style` overwrites the `max-width`, and
// we don't want to use that one. // we don't want to use that one.
max-width: calc(100% - 8px) !important; max-width: calc(100% - 8px) !important;
box-sizing: unset;
@include select-option-style(flex, true); @include select-option-style(inline-flex, true);
&:last-child { &:last-child {
margin-right: 0; margin-right: 0;
} }
.row-modal__field-item & {
box-sizing: border-box;
}
.grid-view-array-field.active & {
display: flex;
overflow: auto;
&:last-child {
margin-right: 4px;
}
}
} }
.array-field__file { .array-field__file {

View file

@ -1,24 +1,19 @@
.grid-view-array-field { .grid-view-array-field {
overflow: hidden; overflow: clip;
display: flex;
flex-flow: row;
flex-wrap: nowrap;
list-style: none; list-style: none;
margin: 0; margin: 0;
padding: 0 4px; padding: 0 0 0 4px;
user-select: none; user-select: none;
display: flex;
&.active { &.active {
height: auto; height: auto;
flex-flow: row;
flex-wrap: wrap; flex-wrap: wrap;
overflow: auto;
bottom: auto; bottom: auto;
min-width: calc(100% + 4px); min-width: calc(100% + 4px);
min-height: calc(100% + 4px); min-height: calc(100% + 4px);
padding: 0 4px;
.array-field__item {
height: auto;
}
} }
.grid-view__column--matches-search & { .grid-view__column--matches-search & {

View file

@ -28,7 +28,6 @@
background-color: $color-neutral-100; background-color: $color-neutral-100;
display: flex; display: flex;
color: $color-neutral-900; color: $color-neutral-900;
max-width: calc(100% - 5px);
@include rounded($rounded); @include rounded($rounded);
@include fixed-height(22px, 13px); @include fixed-height(22px, 13px);
@ -39,6 +38,7 @@
.grid-field-many-to-many__cell.active & { .grid-field-many-to-many__cell.active & {
background-color: $color-primary-100; background-color: $color-primary-100;
max-width: calc(100% - 5px);
.grid-view__column--matches-search & { .grid-view__column--matches-search & {
background-color: $color-primary-200; background-color: $color-primary-200;
@ -69,11 +69,15 @@
} }
.grid-field-many-to-many__name { .grid-field-many-to-many__name {
@extend %ellipsis; white-space: nowrap;
overflow: hidden;
max-width: 100%; max-width: 100%;
} }
.grid-field-many-to-many__cell.active .grid-field-many-to-many__name {
@extend %ellipsis;
}
.grid-field-many-to-many__loading { .grid-field-many-to-many__loading {
margin: 5px 0 0 4px; margin: 5px 0 0 4px;

View file

@ -3,7 +3,11 @@
margin: 6px 4px 4px; margin: 6px 4px 4px;
overflow: unset; overflow: unset;
@include select-option-style(flex, true); @include select-option-style(flex, true, false);
.grid-field-many-to-many__cell.active & {
max-width: calc(100% - 8px);
}
.grid-view__column--matches-search .grid-field-many-to-many__cell.active & { .grid-view__column--matches-search .grid-field-many-to-many__cell.active & {
background-color: $color-primary-200; background-color: $color-primary-200;

View file

@ -1,11 +1,18 @@
@mixin select-option-style($display, $include-shadow-if-bg-same-color: false) { @mixin select-option-style(
$display,
$include-shadow-if-bg-same-color: false,
$max-width-100: true
) {
@extend %ellipsis; @extend %ellipsis;
display: $display; display: $display;
color: $color-neutral-900; color: $color-neutral-900;
border-radius: 20px; border-radius: 20px;
padding: 0 10px; padding: 0 10px;
max-width: 100%;
@if $max-width-100 {
max-width: 100%;
}
@if $include-shadow-if-bg-same-color { @if $include-shadow-if-bg-same-color {
// Special case for search matches background // Special case for search matches background

View file

@ -34,6 +34,7 @@ $base-font-family: $text-font-stack !default;
$radius-none: 0 !default; $radius-none: 0 !default;
$rounded: 4px !default; $rounded: 4px !default;
$rounded-left: 4px 0 0 4px !default;
$rounded-md: 6px !default; $rounded-md: 6px !default;
$rounded-xl: 12px !default; $rounded-xl: 12px !default;
$rounded-2xl: 16px !default; $rounded-2xl: 16px !default;

View file

@ -11,7 +11,9 @@
rel="nofollow noopener noreferrer" rel="nofollow noopener noreferrer"
@mousedown.stop @mousedown.stop
> >
{{ $options.methods.getLabelOrURL(props.value) }} <span class=".array-field__ellipsis">{{
$options.methods.getLabelOrURL(props.value)
}}</span>
</Button> </Button>
<Button v-else size="tiny" type="secondary" tag="a" disabled> <Button v-else size="tiny" type="secondary" tag="a" disabled>
{{ $options.methods.getLabelOrURL(props.value) }} {{ $options.methods.getLabelOrURL(props.value) }}