Skip to content

Commit

Permalink
[4.4] Media Manager long filenames (#42691)
Browse files Browse the repository at this point in the history
  • Loading branch information
brianteeman authored Jan 22, 2024
1 parent 7204840 commit d9a443b
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
}

.media-browser-item-info {
max-width: 250px;
padding: 0 2px;
overflow: hidden;
font-size: .9rem;
Expand Down Expand Up @@ -125,8 +126,7 @@
&.active {
top: 0;
z-index: 1;
width: max-content;
min-width: 100%;
width: 100%;
background-color: var(--template-bg-dark-3);
border: 1px solid hsl(var(--hue), 35%, 95%);
border-radius: .25rem;
Expand Down Expand Up @@ -159,6 +159,9 @@
.media-browser-actions-item-name {
padding: 2px;
margin-block-end: 3px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
button, a {
position: relative;
Expand Down

0 comments on commit d9a443b

Please sign in to comment.