fix: hide overflow of columns in effects tab in actor sheets
This commit is contained in:
parent
0afdb45449
commit
63c30ca18b
2 changed files with 3 additions and 2 deletions
|
@ -97,8 +97,9 @@
|
||||||
> * {
|
> * {
|
||||||
height: $row-height;
|
height: $row-height;
|
||||||
line-height: $row-height;
|
line-height: $row-height;
|
||||||
white-space: nowrap;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ SPDX-License-Identifier: MIT
|
||||||
<div title="{{effectData.label}}">{{effectData.label}}</div>
|
<div title="{{effectData.label}}">{{effectData.label}}</div>
|
||||||
|
|
||||||
{{!-- source name --}}
|
{{!-- source name --}}
|
||||||
<div>{{effectData.sourceName}}</div>
|
<div title="{{effectData.sourceName}}">{{effectData.sourceName}}</div>
|
||||||
|
|
||||||
{{!-- factor --}}
|
{{!-- factor --}}
|
||||||
<div title="{{effectData.factor}}">{{effectData.factor}}</div>
|
<div title="{{effectData.factor}}">{{effectData.factor}}</div>
|
||||||
|
|
Loading…
Reference in a new issue