Bootstrap interfering Imageareaselect (Primefaces)

Asked

Viewed 53 times

0

I’m using the component, from the Extesions primefaces, called Imageareaselect.

Primefaces Extesion - Imageareaselect

However this Bootstrap TAG is causing the background of Imageareaselect is becoming disproportionate.

* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box
}
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

This image is the background with problem inserir a descrição da imagem aqui

How do I solve this problem? If I take out the CSS template gets bugged.

I was thinking of solving the problem by taking the background of Imageareaselect but I have no idea which tag he uses.

Also not found in the documentation of the first faces

  • Use the Google Chrome Inspect/Inspect option on the component you find the CSS it uses.

1 answer

0

This is what I did

.pe-imgageareaselect-outer {
    display: none !important;
}

.pe-imgageareaselect-selection {
    background: black !important;
}

Browser other questions tagged

You are not signed in. Login or sign up in order to post.