Bonjour à tous,

Je vous appelle à l'aide car je me heurte à un problème qui ne m'est jamais arrivé et je ne trouve pas la solution.

Explications :
J'ai un fichier css chargé dans mon code HTML et seule une partie de ce fichier est prise en compte...
Une des parties posant problème est la suivante :

JS (fonctionnel):
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
 
$(InputsWrapper).append('<div class="checkboxbutton" id="InputsWrapper_'+field.id+'">' + '<p class="checkbox_child" id="para'+radio_sub_para_Count+'">' + '<label>'+field.a+'</label>' + '<input type="checkbox" name="mychekcbox[]" id="field_'+field.titre+'" placeholder="'+field.placeholder+'"/>'+'<button class="removeclass3">x</button>' + '</p>' + '</div>');
CSS :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
 
div.checkboxbutton{
background:#E1F3FC;
margin-bottom:10px;
margin-top:15px;
margin-left:10px;
width:300px;
height:35px;
border-radius:5px;
border:1px solid blue;
padding:5px;
cursor:move
}
.removeclass3 {
        background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ff0000), color-stop(1, #bd2a2a));
        background:-moz-linear-gradient(top, #ff0000 5%, #bd2a2a 100%);
        background:-webkit-linear-gradient(top, #ff0000 5%, #bd2a2a 100%);
        background:-o-linear-gradient(top, #ff0000 5%, #bd2a2a 100%);
        background:-ms-linear-gradient(top, #ff0000 5%, #bd2a2a 100%);
        background:linear-gradient(to bottom, #ff0000 5%, #bd2a2a 100%);
        filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0000', endColorstr='#bd2a2a',GradientType=0);
        background-color:#ff0000;
        -moz-border-radius:36px;
        -webkit-border-radius:36px;
        border-radius:36px;
        border:1px solid #18ab29;
        display:inline-block;
        cursor:pointer;
        color:#ffffff;
        font-family:arial;
        font-size:17px;
        padding:16px 21px;
        text-decoration:none;
}
.removeclass3:hover {
        background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #bd2a2a), color-stop(1, #ff0000));
        background:-moz-linear-gradient(top, #bd2a2a 5%, #ff0000 100%);
        background:-webkit-linear-gradient(top, #bd2a2a 5%, #ff0000 100%);
        background:-o-linear-gradient(top, #bd2a2a 5%, #ff0000 100%);
        background:-ms-linear-gradient(top, #bd2a2a 5%, #ff0000 100%);
        background:linear-gradient(to bottom, #bd2a2a 5%, #ff0000 100%);
        filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bd2a2a', endColorstr='#ff0000',GradientType=0);
        background-color:#bd2a2a;
}
.removeclass3:active {
        position:relative;
        top:1px;
}
Avez vous une idée de ce qui peut causer cela ?

Merci de votre aide,
Corentin.