Skip to content

Commit

Permalink
fix: in out words on VT should always be white
Browse files Browse the repository at this point in the history
  • Loading branch information
olzzon committed Jan 10, 2025
1 parent 305a880 commit e301ab8
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
15 changes: 14 additions & 1 deletion packages/webui/src/client/styles/rundownView.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3273,7 +3273,20 @@ svg.icon {
word-break: break-all;
white-space: normal;
}
.mini-inspector__value__right {
.mini-inspector__firstwords {
color: #ffffff;
font-weight: 200;
font-size: 0.8em;
letter-spacing: 0em;
line-height: 80%;
max-width: 60vw;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
white-space: normal;
}
.mini-inspector__lastwords {
color: #ffffff;
font-weight: 200;
font-size: 0.8em;
letter-spacing: 0em;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ export const VTFloatingInspector: React.FC<IProps> = ({
<span className="mini-inspector__value">{content?.fileName}</span>
</div>
<div className="segment-timeline__mini-inspector__properties">
<span className="mini-inspector__value">{content?.firstWords}</span>
<span className="mini-inspector__value__right">{content?.lastWords}</span>
<span className="mini-inspector__firstwords">{content?.firstWords}</span>
<span className="mini-inspector__lastwords">{content?.lastWords}</span>
</div>
</>
)}
Expand Down

0 comments on commit e301ab8

Please sign in to comment.