8000 David/enhancement modebar by davidangarita1 · Pull Request #7429 · plotly/plotly.js · GitHub
[go: up one dir, main page]

Skip to content

David/enhancement modebar #7429

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
Jul 25, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add custom CSS class "modebar--custom"
  • Loading branch information
davidangarita1 committed May 28, 2025
commit ebb7b1210856c5f7b6fc9e0ea4ec256bfea54d37
2 changes: 1 addition & 1 deletion src/components/modebar/modebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ proto.update = function(graphInfo, buttons) {
this.element.setAttribute('id', modeBarId);
this.element.setAttribute('role', 'toolbar');
this._uid = modeBarId;
this.element.className = 'modebar';
this.element.className = 'modebar modebar--custom';
if(context.displayModeBar === 'hover') this.element.className += ' modebar--hover ease-bg';

if(fullLayout.modebar.orientation === 'v') {
Expand Down
0