Thanks Misho!
I absolutely love the Dev Console! The issue with it is that once I enable it, it doesnât stay enabled permanently I see myself using it a lot as a way to quickly get to various settings.
Thanks! Try saving after editing the preferences. It should be tied to your WordPress user account.
I am noticing that Global block content is not properly rendered inside the Pro builder. I have bunch of pictures inside columns, and they donât have any margins and their row is not showing the correct layout.
Yes, something is definitely off there. Iâll update this thread when itâs worked out: Beta 1: Global Block Rendering
I didnât expect to be saying this, but I find the new visual UI to be a step backwards a bit. The old design was minimalist, non-intrusive. For example, the blue highlight on the selected tab is too much in my opinion. The UI design should not compete with and distract from the Content.
Really appreciate the openness about it. So with the UI, is it the contrast of that colored area being so large?
One of the challenges weâve seen with new users of Pro is people finding it complicated and overwhelming with everything going on. I can see how that UI element (big blue button) itself could be seen as intrusive compared to everything else. Iâm a bit torn though because I donât want it to feel like everything blends together. The purpose of that accent color is to focus your attention on important things you can interactive with.
Looking side by side at the old/new versions you can see one of the focuses was actually making it more minimal by reducing use of borders and shading. Itâs more of a feeling thing, but we hope making it less busy will make it feel more simple.
In your personal option, what would make it better? Different color? Curious on any other thoughts you might have. Also, after youâve played around with it some more let us know if thereâs anything else that sticks out to you like that.
One idea weâve thrown around is making a whole bunch more UI themes. In the spirit of choosing your own path with the workflow, I could see there being different color and contrast options. Theyâre not overly difficult to make because all the colors are managed as CSS vars. We would probably base them around popular code editor schemes.
You know that code editor in the dev console? Something you can play around with for yourself is tossing one of these inside:
Override the blue accent color everywhere
:root.tco-ui-theme-dark {
--c-accent: #000;
}
Override the blue accent color in just the workspace header:
.tco-workspace-nav {
--c-accent: #000;
}