-
Notifications
You must be signed in to change notification settings - Fork 152
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
z-index problem #6
Comments
Hi @RobertHeim, There is no specific reason for setting As of now Thanks for raising this issue :) |
Wow, fast response! =) Okay, so what is the purpose of using z-index? It requires us to implement z-index for other components that normally would be fine with their natural order of layering. We will probably stick to this libary anyway, but not being forced to manually set z-indexes would be great! Could the lib use opacity instead? Thanks! |
The square box is in Also, if you noticed the code, here You can see And I guess, opacity has nothing to do with this. I agree that forcing users to set z-index is not a good thing. But I will definitely find a solution for this. Is that helped you? |
Thank you very much for the explanation and pointing to the relevant code part. Maybe a solution could use the natural |
The problem is most ( all) of the font icon libraries have their icon code in Here's some of them, // material icons
.mdi-check:before {
content: "\F12C";
}
//glyphicon
.glyphicon-ok:before {
content: "\e013";
}
//typicon
.typcn-tick:before {
content: '\e11e';
}
//ionicons
.ion-checkmark-round:before {
content: "\f121";
} This library just let their |
I've encountered a problem with using bootstrap bootboxes with your pretty checkbox plugin. |
Hello, Awesome library! however I have come across the same issue. 99999999 for the z-index seems quite excessive, what's the reasoning behind this? @lokesh-coder I have overwritten the style in the mean time but it would be good to understand why is so high? it even messes up with my modals. |
…e calculated from parent font size. Aligned to baseline of the application's font. BREAKING CHANGE: The complete API has been changed, and this version does not compatible with v2.x refactor( core ): Complete rewritten of the library feat( animation ): Pulse feat( state ): Introducing state, to work with different checkbox states feat( scale ): Added support to make checkbox bigger feat( SVG ): Added support for svg elements,files and sprites feat( Image ): Added support for tiny images feat( Switch ): New iOS style switches with 3 variants fix( core ): z-index is calculated from 0 to 2 [ #6 , #14 ] feat( lock ): Similar to disable but looks like active [ #17 ] build( CI ): Setup Travis for auto publish from staging to master doc( readme ): Updated with examples, badges, gif preview and a logo doc( readme ): Removed bower installation guide doc( readme ): Changed CDN provider from cdnjs to jsDelivr refactor( core ): All class names starts with prefix `p-` except *pretty*and *state*
…e calculated from parent font size. Aligned to baseline of the application's font. (#19) BREAKING CHANGE: The complete API has been changed, and this version does not compatible with v2.x refactor( core ): Complete rewritten of the library feat( animation ): Pulse feat( state ): Introducing state, to work with different checkbox states feat( scale ): Added support to make checkbox bigger feat( SVG ): Added support for svg elements,files and sprites feat( Image ): Added support for tiny images feat( Switch ): New iOS style switches with 3 variants fix( core ): z-index is calculated from 0 to 2 [ #6 , #14 ] feat( lock ): Similar to disable but looks like active [ #17 ] build( CI ): Setup Travis for auto publish from staging to master doc( readme ): Updated with examples, badges, gif preview and a logo doc( readme ): Removed bower installation guide doc( readme ): Changed CDN provider from cdnjs to jsDelivr refactor( core ): All class names starts with prefix `p-` except *pretty*and *state*
Hello everyone, The repo has been updated to Version 3 but without backward compatability. Closing now, as the new update will fix this. Feel free to open this again if you face any other issue with z-index. Thanks! |
Hi,
first, thanks for the nice lib! =)
On the basic square checkbox, the
pretty
class provides az-index
of 999 on the innerlabel
's::before
. Is there a specific reason for this?Actually, it requires us to implement the
z-index
property of a lot of elements to be at least 1000 because the boxes would shine through otherwise.The text was updated successfully, but these errors were encountered: