mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 01:18:23 +00:00
overflow and z-index
This commit is contained in:
parent
e185bf2dc2
commit
4b41184bed
3 changed files with 9 additions and 6 deletions
|
|
@ -4,6 +4,7 @@ import '../ManageGroupPermissionsV2/groupPermissions.theme.scss';
|
|||
import SolidIcon from '@/_ui/Icon/SolidIcons';
|
||||
import { ButtonSolid } from '@/_ui/AppButton/AppButton';
|
||||
import { OverlayTrigger, Tooltip } from 'react-bootstrap';
|
||||
import OverflowTooltip from '@/_components/OverflowTooltip';
|
||||
function AppResourcePermissions({
|
||||
updateOnlyGranularPermissions,
|
||||
permissions,
|
||||
|
|
@ -35,11 +36,12 @@ function AppResourcePermissions({
|
|||
>
|
||||
<div className="resource-name d-flex">
|
||||
<SolidIcon name="app" width="20px" className="resource-icon" />
|
||||
<div
|
||||
className="resource-text"
|
||||
data-cy={`${permissions.name.toLowerCase().replace(/\s+/g, '-')}-text`}
|
||||
>{` ${permissions.name}`}</div>
|
||||
|
||||
<div className="resource-text" data-cy={`${permissions.name.toLowerCase().replace(/\s+/g, '-')}-text`}>
|
||||
<OverflowTooltip width={160}>{` ${permissions.name}`}</OverflowTooltip>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="text-muted">
|
||||
<div className="d-flex apps-permission-wrap flex-column">
|
||||
<OverlayTrigger
|
||||
|
|
|
|||
|
|
@ -427,7 +427,7 @@
|
|||
.resource-text{
|
||||
max-width: 160px;
|
||||
padding-top: 1px;
|
||||
overflow-x: auto;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -3564,7 +3564,8 @@ fieldset:disabled .btn {
|
|||
}
|
||||
|
||||
.dropdown-menu.show {
|
||||
display: block
|
||||
display: block;
|
||||
z-index: 9999;
|
||||
}
|
||||
|
||||
.dropdown-header {
|
||||
|
|
|
|||
Loading…
Reference in a new issue