File tree Expand file tree Collapse file tree 2 files changed +16
-3
lines changed
packages/webui/src/client Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -3263,7 +3263,20 @@ svg.icon {
3263
3263
word-break : break-all ;
3264
3264
white-space : normal ;
3265
3265
}
3266
- .mini-inspector__value__right {
3266
+ .mini-inspector__firstwords {
3267
+ color : #ffffff ;
3268
+ font-weight : 200 ;
3269
+ font-size : 0.8em ;
3270
+ letter-spacing : 0em ;
3271
+ line-height : 80% ;
3272
+ max-width : 60vw ;
3273
+ overflow : hidden ;
3274
+ text-overflow : ellipsis ;
3275
+ word-break : break-all ;
3276
+ white-space : normal ;
3277
+ }
3278
+ .mini-inspector__lastwords {
3279
+ color : #ffffff ;
3267
3280
font-weight : 200 ;
3268
3281
font-size : 0.8em ;
3269
3282
letter-spacing : 0em ;
Original file line number Diff line number Diff line change @@ -151,8 +151,8 @@ export const VTFloatingInspector: React.FC<IProps> = ({
151
151
< span className = "mini-inspector__value" > { content ?. fileName } </ span >
152
152
</ div >
153
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 >
154
+ < span className = "mini-inspector__firstwords " > { content ?. firstWords } </ span >
155
+ < span className = "mini-inspector__lastwords " > { content ?. lastWords } </ span >
156
156
</ div >
157
157
</ >
158
158
) }
You can’t perform that action at this time.
0 commit comments