legionaire Posted November 14 Posted November 14 is ipsGrid_span no longer used in 5.0 and if not what replaced it ?
Management Matt Posted November 15 Management Posted November 15 I'm going to tag in our CSS maestro @Ehren for assistance. shahed and SeNioR- 2
SeNioR- Posted November 15 Posted November 15 Hi. You need to replace ipsGrid with ipsData and ipsData--grid and for single record you need to useipsData__item. Adriano Faria and David N. 2
Management Matt Posted November 15 Management Posted November 15 Ehren, you look different today. G17 Media, DawPi, SeNioR- and 4 others 1 6
legionaire Posted November 15 Author Posted November 15 Thanks to you both will give that a shot 🙂 Matt 1
Solution Ehren Posted November 16 Solution Posted November 16 On 11/15/2024 at 10:53 AM, legionaire said: is ipsGrid_span no longer used in 5.0 and if not what replaced it ? ipsGrid has moved to a more fluid concept in version 5. With version 4, you'd typically add ipsGrid and then each child would need to use a ipsGrid_spanx class which told it how many columns to span (out of 12). On tablets and phones, these grids would automatically collapse to 1 column. That concept was fine a decade ago, but with the limitless amount of devices these days, fluid/dynamic concepts are better. In version 5, when you assign ipsGrid, all children are automatically assigned to a grid (the span class is now redundant). By default, grids have an ideal column width of 260px, but you can change that by adding a basis class, such as i-basis_350 which will make all columns 350px, or by changing the --i-basis CSS variable for that element. Columns will automatically grow/shrink/add/remove depending on the available space on the screen. If you need to restrict the grid to a certain amount of columns (lets assume you never want more than 3 columns for some reason), you can add ipsGrid--max-3 to the parent. If you need to use the old grid system and force content into a 12 column grid (like v4), you can use .ipsSpanGrid on the parent, and then ipsSpanGrid__4 (for example) on the children. But the new fluid code is better 🙂 Matt, shahed and Marco Junior 2 1
shahed Posted November 18 Posted November 18 (edited) On 11/15/2024 at 12:43 PM, Matt said: I'm going to tag in our CSS maestro @Ehren for assistance. I mean talking about @Ehren as CSS maestro is one thing, and seeing it in action how he disable an element without a template condition is something else entirely. Just tip of the Iceberg... 🫡 Edited November 18 by shahed Ehren and Matt 1 1
legionaire Posted November 25 Author Posted November 25 Thanks Ehren, I know it has been a while, but I finally got this incorporated using ipsGrid. I have one more question (for anyone who can answer) is there a way to have my app take on the theme settings for any theme that may be used ? Matt 1
Ehren Posted November 25 Posted November 25 10 hours ago, legionaire said: is there a way to have my app take on the theme settings for any theme that may be used ? If you can elaborate on what you're trying to achieve, I might be able to help 🙂
legionaire Posted Tuesday at 12:13 PM Author Posted Tuesday at 12:13 PM It used to be you could use ipsAreaBackground for your application to obtain the same look and feel of a theme you were using however, that does not seem to work in 5.0. I don't want to make the app the coloring I like and not be able to change it but, to take on the look of the theme that is being used
Ehren Posted Thursday at 04:16 AM Posted Thursday at 04:16 AM All of the theme colours are available as variables. The most useful ones for backgrounds are --i-background_1 through to --i-background_6. Background 1 is the lightest colour in a light theme, and the darkest in the dark theme. There are 3 main colors: --i-color_root, --i-color_soft and --i-color_hard. "Root" is the global text colour, "soft" is a subtle/softer colour and "hard" is a higher contrast colour. There are also a bunch of others including --i-color_primary, --i-color_secondary, --i-color_positive, --i-color_negative. In practice, variables in v5 look like this: .box{ background-color: var(--i-background_3); color: var(--i-color_hard); padding: 1em; } David N., Afrodude and SeNioR- 3
legionaire Posted Friday at 03:32 PM Author Posted Friday at 03:32 PM Thank you Ehren, that will get me going Ehren 1
SeNioR- Posted Friday at 03:47 PM Posted Friday at 03:47 PM On 11/28/2024 at 5:16 AM, Ehren said: backgrounds are --i-background_1 through to --i-background_6. On 11/28/2024 at 5:16 AM, Ehren said: --i-color_root, --i-color_soft and --i-color_hard. I have to admit that the new variable naming is much more intuitive and simpler than in IC4 👍 Even if we don't know the exact name of a variable, we can easily guess it. Adriano Faria and Ehren 1 1
Ehren Posted Friday at 08:18 PM Posted Friday at 08:18 PM I’m glad you think so too. Numbers have been much easier to work with compared to descriptive names. 🙂 I should also mention that those variables map directly to utility classes, such as class=“i-background_2 i-color_hard”
Recommended Posts