We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
I created a new Theme for DNNCommunity and the Module Action Menus all look fine, but the Move (last one). It looks like this:
IMO this is due to the use of
box-sizing: border-box
In the theme and the items having a fixed height:
Dnn.Platform/DNN Platform/Website/admin/Menus/ModuleActions/ModuleActions.css
Line 114 in 4b31e41
And thus they are not high enough when you use border-box.
Also this is the only Action Menu dropdown that has a font-family defined for some reason.
I first tested this:
div.actionMenu ul.dnn_mact > li.actionMenuMove > ul li { box-sizing: content-box; height: auto; font-family:inherit; }
To see if removing the height works in an content-box situation.
And then:
div.actionMenu ul.dnn_mact > li.actionMenuMove > ul li { box-sizing: border-box; height: auto; font-family:inherit; }
The result is the same, meaning that the height and font-family can be removed IMO
No response
9.12.0 (latest release)
The text was updated successfully, but these errors were encountered:
Update ModuleActions.css for dnnsoftware#5783
c7247d0
- Removed fixed height - Removed Font Family Arial
Merge pull request #5784 from Timo-Breumelhof/Timo-Breumelhof-patch-1
7233375
Update ModuleActions.css for #5783
Successfully merging a pull request may close this issue.
Is there an existing issue for this?
What happened?
I created a new Theme for DNNCommunity and the Module Action Menus all look fine, but the Move (last one).
It looks like this:
IMO this is due to the use of
box-sizing: border-box
In the theme and the items having a fixed height:
Dnn.Platform/DNN Platform/Website/admin/Menus/ModuleActions/ModuleActions.css
Line 114 in 4b31e41
And thus they are not high enough when you use border-box.
Also this is the only Action Menu dropdown that has a font-family defined for some reason.
I first tested this:
To see if removing the height works in an content-box situation.
And then:
The result is the same, meaning that the height and font-family can be removed IMO
Steps to reproduce?
Current Behavior
Expected Behavior
Relevant log output
No response
Anything else?
No response
Affected Versions
9.12.0 (latest release)
What browsers are you seeing the problem on?
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: