File tree Expand file tree Collapse file tree 2 files changed +14
-6
lines changed
packages/webui/src/client Expand file tree Collapse file tree 2 files changed +14
-6
lines changed Original file line number Diff line number Diff line change @@ -3148,7 +3148,7 @@ svg.icon {
3148
3148
> .video-preview ,
3149
3149
> .thumbnail {
3150
3150
display : block ;
3151
- width : 320 px ;
3151
+ width : 420 px ;
3152
3152
height : 180px ;
3153
3153
background : #000 ;
3154
3154
}
@@ -3263,6 +3263,10 @@ svg.icon {
3263
3263
word-break : break-all ;
3264
3264
white-space : normal ;
3265
3265
}
3266
+ .mini-inspector__value__right {
3267
+ position : absolute ;
3268
+ right : 0 ;
3269
+ }
3266
3270
.mini-inspector__system {
3267
3271
font-weight : 300 ;
3268
3272
font-style : italic ;
Original file line number Diff line number Diff line change @@ -146,11 +146,15 @@ export const VTFloatingInspector: React.FC<IProps> = ({
146
146
>
147
147
{ showMiniInspectorNotice && noticeLevel && renderNotice ( t , noticeLevel , noticeMessages ) }
148
148
{ showMiniInspectorClipData && (
149
- < div className = "segment-timeline__mini-inspector__properties" >
150
- < span className = "mini-inspector__value" > { content ?. fileName } </ span >
151
- < span className = "mini-inspector__value" > { content ?. firstWords } </ span >
152
- < span className = "mini-inspector__value" > { content ?. lastWords } </ span >
153
- </ div >
149
+ < >
150
+ < div className = "segment-timeline__mini-inspector__properties" >
151
+ < span className = "mini-inspector__value" > { content ?. fileName } </ span >
152
+ </ div >
153
+ < div className = "segment-timeline__mini-inspector__properties" >
154
+ < span className = "mini-inspector__value" > { content ?. firstWords } </ span >
155
+ < span className = "mini-inspector__value__right" > { content ?. lastWords } </ span >
156
+ </ div >
157
+ </ >
154
158
) }
155
159
</ div >
156
160
)
You can’t perform that action at this time.
0 commit comments