making this component took , this much code lol
pagination do be like that if you conditionally alter the links.
probably should make it into components and cleanup to reduce tech debt
pagination do be like that if you conditionally alter the links.
probably should make it into components and cleanup to reduce tech debt
Forwarded from DoniVerse
One Minute Dev: Episode 6
Selection and Caret Color
Here what I found trying to curve the border text selection on my site. You can use the css pseudo class selection to manipulate the property of selected text. I works only with limited CSS properties and unfortunately it doesn't support border radius. You still can change the default blue selection color to match your theme, so that's nice.
There's also a CSS property to change the caret in you input fields as shown above. You will use the css property caret-color. This will be more uerful if browsers start supporting different caret cursors.
#OMD #CSS #code
Selection and Caret Color
Here what I found trying to curve the border text selection on my site. You can use the css pseudo class selection to manipulate the property of selected text. I works only with limited CSS properties and unfortunately it doesn't support border radius. You still can change the default blue selection color to match your theme, so that's nice.
There's also a CSS property to change the caret in you input fields as shown above. You will use the css property caret-color. This will be more uerful if browsers start supporting different caret cursors.
#OMD #CSS #code