You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a site is using the main template (https://github.com/unl/wdntemplates/blob/develop/Templates/fixed.dwt) then they have local html includes that may not sync until overnight but the html document fetches core.css from unlcms.unl.edu. So it may be that the version of the html includes doesn't match the css/js. (In the future this needs to be eliminated, but that will be for 5.1 or 6.0: #1348)
DCF needs to be better versioned (or versioned period) and not remove things until a major version change - (can be moved to a deprecated file in minor releases). A major version change would then be a really big red flag for downstream themes to test an update to DCF.
DCF needs to be better versioned and removing things is fine - but it needs a CHANGELOG file that helps document changes to be aware of upon updating.
The reason for the changes to the modal was to fix the broken modals for those using prefers-reduced-motion. In retrospect, I probably should have used the existing DCF class instead of changing it to a theme class. I'll work on getting the styles present for both to account for mismatched include files and CSS.
Do we need a transition css file (that is built into core) in which
.dcf-modal-overlay[aria-hidden="true"] {
opacity: 0;
pointer-events: none;
-webkit-transition: opacity .4s ease-out,visibility 0ms .4s;
transition: opacity .4s ease-out,visibility 0ms .4s;
visibility: hidden;
}
can be included then removed later (next release)?
If a site is using the main template (https://github.com/unl/wdntemplates/blob/develop/Templates/fixed.dwt) then they have local html includes that may not sync until overnight but the html document fetches core.css from unlcms.unl.edu. So it may be that the version of the html includes doesn't match the css/js. (In the future this needs to be eliminated, but that will be for 5.1 or 6.0: #1348)
This was eliminated in 5.0.11 that is needed for a site that still has 5.0.10 includes:
digitalcampusframework/dcf@5902364#diff-13ba1e99069ebd6d875c7b3ceafc2c19
Possible solutions (or ways to think about this):
Search modal classes:
The text was updated successfully, but these errors were encountered: