Hi Max, for now I have the code in the advanced script plugin and activate the snippet when needed. Would be nice if we have the option in the builder to toggle it on or off. There is also this X-ray mode code snippet from bricks lab:
/* X-ray Mode */
// .brx-body.iframe {
// filter: grayscale(1);
// }
.brx-body * :not(.brx-body.main .bricks-svg-wrapper .bricks-svg, #bricks-preview-element-actions li.action.bricks-svg-wrapper,
#bricks-preview-element-actions li.action .options,
#bricks-preview-element-actions li.action .options .option,
#bricks-preview-element-actions li.action .unit,
#bricks-preview-element-actions .bricks-svg-wrapper .bricks-svg,
#bricks-builder-context-menu,
#bricks-builder-context-menu ul li,
#bricks-builder-context-menu ul li .label,
#bricks-builder-context-menu ul li .shortcut,
#bricks-builder-context-menu ul li .buttons,
#bricks-builder-context-menu ul li span) {
outline-style: dotted;
/* Default outline - Few options to try out */
/* Dark: rgba(0,0,0,0.40) */
/* Yellow: rgba(255,250,0,0.80) */
/* Blue: rgba(0,135,255,0.50) */
outline-color: rgba(0,135,255,0.50);
outline-width: 2px;
/* The offset values prevent the outlines from overlapping with eachother. Set to 0px for maximum accuracy */
outline-offset: -1.3px;
}
.brx-body * :not(.brx-body.main .bricks-svg-wrapper .bricks-svg,
#bricks-preview-element-actions li.action, .bricks-svg-wrapper,
#bricks-preview-element-actions li.action .options,
#bricks-preview-element-actions li.action .options .option,
#bricks-preview-element-actions li.action .unit,
#bricks-preview-element-actions li.action.width .resize)::before {
outline-style: dotted;
/* Default green for :before rgba(0,255,178,0.40) */
outline-color: rgba(0,255,178,0.40);
outline-width: 2px;
/* The offset values prevent the outlines from overlapping with eachother. Set to 0px for maximum accuracy */
outline-offset: -1.3px;
}
.brx-body *::after {
outline-style: dotted;
/* Default red for :after rgba(255,0,0,0.50) */
outline-color: rgba(255,0,0,0.40);
outline-width: 2px;
/* The offset values prevent the outlines from overlapping with eachother. Set to 0px for maximum accuracy */
outline-offset: -1.3px;
}
#wpadminbar *::before,
#wpadminbar *,
#wpadminbar *::after {
outline-style: none;
}
That maybe could be included @Daniele