I’m using APEX 23.1 with Redwood Light Theme.
I need to increase the width of the “Actions Column” (Right Side Column) but in the theme roller there isn’t option like other themes have. Is there a way to increase this?
I tried some Inline CSS but it isn’t working as it should.
example:
.t-Body-actions {
width: 540px
}
:not(.u-RTL) .t-PageBody.js-rightCollapsed .t-Body-actions {
transform: translate3d(540px, 0, 0)!important
}
:not(.u-RTL) .t-PageBody.js-rightExpanded.t-PageBody--hideLeft .t-Body-main {
margin-right: 540px!important
}
:not(.u-RTL) .t-PageBody.js-rightExpanded.t-PageBody--hideLeft .t-Body-title {
right: 540px;
}