We weren't able to show more of the UT26.1 enhancement on today's office hours, but here is the app used to demo some of the new features for those curious. oracleapex.com/ords/r/timpla…#orclapex
Without going into detail, the variable prefix too will help you understand what part of the UI layer it controls.
--a APEX (core/global)
--ut Universal Theme
--u Utility Class
--rw Redwood
--js Javascript Functions
--oj Oracle Jet
--fc Full Calendar
You can use this same method if you ever wanted to hide the icons in the Side Navigation as well. We can start doing a lot more with CSS, without relying on specific markup, or having to use JS.
Just add this to your page, theme roller, or external style sheet.
/* Collapses icon column when menu has no icons */
.a-Menu-content:not(:has(.a-Icon)) .a-Menu-statusCol {
inline-size: 0;
padding-inline-end: 0;
}
Just add this css snippet and use the .u-field-sizing-content utility class on the item's CSS Classes.
/* Resize item based on content */
@supports (field-sizing: content) {
.u-field-sizing-content {
field-sizing: content;
}
}
Because a bit of UI/UX, Template Components, and Template Directives never hurts. See you in Nashville - Tuesday, July 16, 4:00 pm - 5:00 pm @odtug#Kscope24!
Join Michael Hichwa and Andy Mendelsohn to learn how #GenAI in Oracle APEX can help developers focus on innovation not code—building mission-critical apps that enterprises can depend on and users will love.
social.ora.cl/6014588RC#orclAPEX
#tinyCSStip One thing that has always annoyed me about `:empty` is that it doesn't work for elements that have text content, but no element children.
`:has()` fixes this problem.
`:not(:has(*))` selects elements that don't have element children, even if they have text content.
ALT :empty {
/* only selects elements without elelent children
* and without any text content whatsoever,
* including whitespace */
}
:not(:has(*)) {
/* selects elements without elelent children,
* even if they have any kind of text content */
}
🚨🚨🚨🚨
Apple will NOT remove PWA support on iOS
🥳🥳🥳🥳
👉This is an official statement form Apple that replaced today the previous excuses published around the removal.
We did it, folks!
Open Letter to Tim Cook: Sabotaging Web Apps is Indefensible
🔨 Apple breaking EU Web Apps in < 7 days
😢 Many companies will be bankrupted / severely hurt
🌎 This does global damage to the web
👇SIGN THE OPEN LETTER (Link below)
ALT Open Letter to Tim Cook: Sabotaging Web Apps Is Indefensible
Sign The Letter (Down Arrow)