Created
March 6, 2026 12:28
-
-
Save Lego2012/5b2fd1564fb7c1f0d57d397e6ff4083f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * See what you've edited in Bricks | |
| * https://youtu.be/c-ktTNIp_hI | |
| */ | |
| li.has-settings { | |
| background-color: rgba(252,87,120, .5) !important; | |
| } | |
| span.bricks-svg-wrapper::after { | |
| display: none !important; | |
| } | |
| /* Deutlicher Marker für geänderte Werte im linken Style-Panel */ | |
| .bricks-panel-controls .has-setting { | |
| left: -11px !important; | |
| width: 3px !important; | |
| min-width: 3px !important; | |
| border-radius: 2px !important; | |
| background: var(--builder-color-accent) !important; | |
| opacity: 1 !important; | |
| transform: none !important; | |
| } | |
| /* Bei aufgeklappten Gruppen sauber ausrichten */ | |
| .bricks-panel-controls .control-group-title .has-setting, | |
| .bricks-panel-controls .control-group.open .control-group-title .has-setting { | |
| left: 9px !important; | |
| } | |
| /* Den kleinen Punkt ausblenden */ | |
| .bricks-panel-controls .has-setting .indicator { | |
| display: none !important; | |
| } | |
| /* Marker nicht blass beim Hover */ | |
| .bricks-panel-controls .has-setting:hover { | |
| background: var(--builder-color-accent) !important; | |
| } | |
| /* Aktive Gruppe im dunklen Panel besser lesbar */ | |
| .bricks-panel-controls .control-group.open .control-group-title { | |
| position: relative; | |
| } | |
| /* Fallback, falls Bricks an einzelnen Stellen andere Marker nutzt */ | |
| .bricks-panel-controls :is(.control, .control-group-title, .control-inner) > .has-setting { | |
| opacity: 1 !important; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment