I appreciate the Bubble team for revamping the Editor UI, but i think the tab icons are way too tiny now.
Now is a good time to mention that you can quickly switch between the Editor, Workflow and Data tabs using “Ctrl+T”. Hopefully this will save you the frustration of dealing with the tiny icons.
I know that bubble development is very mouse-heavy, but it would be great if more keyboard shortcuts were added.
I would love for the expression editor to have more shortcuts so we wouldn’t have to constantly reach for our mouse.
What are your thoughts on this?
This was my first through… yes I need to wear glasses since a few month to see clearly little things… ahahaha
I thing the design team member are young and don’t have any view issue
Yeah, they’re not tiny for me anymore either. Silently or not, kudos to them if they saw this thread (I know lots of Bubble folks monitor the forum) and made the adjustment. We do have to deduct a few points for the icons being so tiny in the first place, but, eh, stuff happens.
For those of you, who would like to get the old sidebar back:
Just change the content of this file:
to:
setTimeout(() => {
var buttons = document.getElementsByTagName('button');
for (let i = 0; i < buttons.length; i++) {
var label = buttons[i].getAttribute("aria-label");
if (["Design", "Workflow", "Data", "Styles", "Plugins", "Settings", "Logs"].includes(label)) {
var titleSpan = document.createElement("span");
titleSpan.appendChild(document.createTextNode(label));
titleSpan.style.fontSize = "10px";
buttons[i].appendChild(titleSpan);
buttons[i].style.height = "60px";
}
}
}, 5000);
If you spend a lot of time in the editor, maybe someone should spend some time on a chrome extension to improve this experience. That would make some jobs easier on Bubble. A keyboard extension maybe? What do you think is the demand for an extension like this?
Surely you’re not all mac people? Ctrl-T is a browser shortcut to create a new tab. In every browser I’ve ever used. WTF?
I really want this toggle shortcut, but ctrl-t gives me a new tab!