Skip to content
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

Fix CSS selector for dialog class #460

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

tholeb
Copy link

@tholeb tholeb commented Mar 30, 2024

When trying to edit nodes, I realized that the dialog were not there :
image

After a quick look at the CSS, I found that every class for the dialogs are like so : .litegraph .dialog, which means that the HTML is supposed to be like so :

...
	<div class="litegraph">
		<div class="dialog">
		...
		</div>
	</div>
...

But, the HTML is :

...
    <div class="litegraph dialog settings">
        ...
    </div>
...

The CSS should not have that space char in the selector.

After a quick edit (simply replaced every .litegraph .dialog to .litegraph.dialog) here is the result :
image

I sure can't be the only one reporting this, right ?

@daniel-lewis-ab
Copy link

Applied to my fork.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants