Bonjour,
En vous remerciant par avance pour le temps que vous voulez bien m'accorder.

J’essaie d'appliqué les propriétés transform border-style border-radius sur un bouton composé de plusieurs div, mais je ne trouve pas de solution correct.
Pouvez vous m'aider?
Voici le code test que j'utilise:
Code html : 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
 
<!DOCTYPE html>
<html lang="">
  <head>
    <meta charset="utf-8">
    <title></title>
    <style>
.GenBp {
        position: relative;
        margin: 0 auto;
        z-index: 0;
        border-radius: 0.5em;
        text-shadow: 2em 2em 3em black;
}
 
.GenBp_Bp {
        position: relative;
        margin: 0, auto;
        z-index: 0;
        border :  0.2em solid black;
        border-radius: 2em;
        box-shadow: 0.2em 0.2em 0px 0px Darkgray;
        display:inline-block;
        cursor:pointer;
        font-family:Arial;
/*      font-size:17px;*/
        margin:0.3em 0.3em;
        padding:0.2em 0.2em 0.2em 0.6em;
        text-decoration:none;
        text-shadow:0px 1px 0px Darkgray;
        border-style:outset;
}
.GenBp_Bp:active {
        box-shadow: 0.1em 0.1em 0px 0px Gray;
        transform: translateY(0.1em);
        border-style:inset;
}
.GenBp_choix_cadre{
        position: relative;
        display:flex;
        flex-direction: column;
        flex-wrap: nowrap;
        z-index: 2;
        padding:0;
        text-align: center;
        color: black;
        box-shadow: 0.3em 0.5em 0px 0px Darkgray;
        border-style:outset;
        cursor:pointer;
        background-color:transparent;
}
.GenVal_choix_cadre:active {
        box-shadow: 0.1em 0.1em 0px 0px Gray;
        transform: translateY(0.2em);
        border-style:inset;
}
.GenBp_cadre_vert{
        border :  0.2em solid lime;
        border-style:outset;
}
 
.GenBp_cadre_blanc{
        border :  0.2em solid white;
        border-style:outset;
}
.GenVal_cadre_blanc:active {
        box-shadow: 0.1em 0.1em 0px 0px Gray;
        transform: translateY(0.2em);
        border-style:inset;
}
.GenBp_choix_etiquette{
        z-index: 0;
        flex: 1 ;
        padding: 0 1em;
}
.GenBp_choix_choix{
        z-index: 0;
        flex:  1;
        padding: 0 1em;
}
.Couleur_alarme {
        border-color : yellow;
        background: linear-gradient(to bottom,
                                                                yellow 0%,
                                                         lightyellow 20%,
                                                         yellow 35%,
                                                         lightyellow 100%);
        color: black;
}
.Couleur_alarme:hover {
        background: linear-gradient(to bottom,
                                                                yellow 0%,
                                                         lightyellow 75%,
                                                         yellow 90%,
                                                         lightyellow 100%);
}
.Couleur_marcheVert {
        border-color : lime;
        background: linear-gradient(to bottom,
                                                                lime 0%,
                                                         palegreen 20%,
                                                         lime 35%,
                                                         palegreen 100%);
        color: white;
}
.Couleur_marcheVert:hover {
        background: linear-gradient(to bottom,
                                                                lime 0%,
                                                         palegreen 75%,
                                                         lime 90%,
                                                         palegreen 100%);
}
.Couleur_marcheBlanc {
        background: linear-gradient(to bottom,
                                                                white 0%,
                                                         lightgrey 20%,
                                                         white 35%,
                                                         lightgrey 100%);
        color: black;
}
.Couleur_marcheBlanc:hover {
        background: linear-gradient(to bottom,
                                                                white 0%,
                                                         lightgrey 75%,
                                                         white 90%,
                                                         lightgrey 100%);
}
.Couleur_arret {
        background: linear-gradient(to bottom,
                                                                black 0%,
                                                         dimgrey 20%,
                                                         black 35%,
                                                         dimgrey 100%);
        color: white;
}
.Couleur_arret:hover {
        background: linear-gradient(to bottom,
                                                                black 0%,
                                                         dimgrey 75%,
                                                         black 90%,
                                                         dimgrey 100%);
}
.Couleur_etiquette{
        background: linear-gradient(to bottom,
                                                                #ffee58  0%,
                                                                #fff5c4  20%,
                                                                #ffee58 35%,
                                                                #fff5c4 100%);
        color: black;
 
}
.Couleur_etiquette:hover {
        background: linear-gradient(to bottom,
                                                                #ffee58 0%,
                                                                #fff5c4 75%,
                                                                #ffee58 90%,
                                                                #fff5c4 100%);
}
    </style>
  </head>
  <body>
    <header></header>
    <main>
<table border=1px>
<thead>
<th>Bouton effet transform ok</th>
<th>Bouton effet transform HS</th>
</thead>
<tbody>
<tr>
<td>
	<div id='GenBp_1'>
	</div>
</td>
<td><div id='GenBp_2'></div></td>
</tr>
</tbody>
</table>
 
    </main>
    <footer></footer>
  </body>
<script type="text/javascript">
"use strict";
 
class GenBp1{
        constructor({id, etiq }={}){
                this.etat_bp=false;
 
                this.idcont=document.getElementById(id);
                this.idcont.classList.add('GenBp');
                this.conteneurBp = document.createElement('button');
                this.idcont.appendChild(this.conteneurBp);
 
                this.conteneurBp.classList.add('GenBp_Bp');
                this.conteneurBp.innerHTML = etiq;
                this.conteneurBp.addEventListener("click", () => {this.etat(this.etat_bp)});
                this.conteneurBp.classList.add('GenBp_cadre_vert');
 
                this.coulBP_maj=null;
                this.coulBP_aff=null;
                this.etat(false);
        }
        etat(val){
                if (val){
                        this.coulBP_maj="Couleur_marcheVert";
                }
                else {
                        this.coulBP_maj="Couleur_arret";
                }
                this.conteneurBp.classList.remove(this.coulBP_aff);
                this.conteneurBp.classList.add(this.coulBP_maj);
                this.coulBP_aff=this.coulBP_maj;
 
                this.etat_bp=!this.etat_bp;
        }
}
 
class GenBp2{
        constructor({id, etiq }={}){
                this.etat_bp=false;
 
                this.idcont=document.getElementById(id);
                this.idcont.classList.add('GenBp');
                this.conteneurBp = document.createElement('button');
                this.idcont.appendChild(this.conteneurBp);
 
                this.tetiq=etiq.split('/n');
 
                this.conteneurBp.classList.add('GenBp_choix_cadre');
                this.conteneurBp.classList.add('GenBp_cadre_vert');
 
                this.conteneurBp.addEventListener("click", () => {this.etat(this.etat_bp)});
 
                this.conteneurBp_etiquette = document.createElement('div');
                this.conteneurBp.appendChild(this.conteneurBp_etiquette);
                this.conteneurBp_etiquette.classList.add('GenBp_choix_etiquette');
                this.conteneurBp_etiquette.innerHTML = this.tetiq[0];
 
                this.conteneurBp_choix1 = document.createElement('div');
                this.conteneurBp.appendChild(this.conteneurBp_choix1);
                this.conteneurBp_choix1.classList.add('GenBp_choix_choix');
                this.conteneurBp_choix1.innerHTML = this.tetiq[1];
 
                this.conteneurBp_choix2 = document.createElement('div');
                this.conteneurBp.appendChild(this.conteneurBp_choix2);
                this.conteneurBp_choix2.classList.add('GenBp_choix_choix');
                this.conteneurBp_choix2.innerHTML = this.tetiq[2];
 
                this.coulBP_maj=null; // Class couleur bouton Mise A Jour
                this.coulBP_aff=null; // Class couleur bouton Affiché
                this.couletiq_aff=null; // Class couleur bouton Affiché
                this.coulchoix1_aff=null; // Class couleur bouton Affiché
                this.coulchoix2_aff=null; // Class couleur bouton Affiché
                this.etat(false);
        }
        etat(val){
                this.conteneurBp_etiquette.classList.remove(this.couletiq_aff);
                this.conteneurBp_choix1.classList.remove(this.coulchoix1_aff);
                this.conteneurBp_choix2.classList.remove(this.coulchoix2_aff);
 
                if (val){
                        this.coulBP_maj="Couleur_marcheVert";
                        this.conteneurBp_etiquette.classList.add('Couleur_etiquette');
                        this.conteneurBp_choix1.classList.add('Couleur_alarme');
                        this.conteneurBp_choix2.classList.add('Couleur_arret');
                        this.couletiq_aff='Couleur_etiquette';
                        this.coulchoix1_aff='Couleur_alarme';
                        this.coulchoix2_aff='Couleur_arret';
 
                }
                else {
                        this.coulBP_maj="Couleur_arret";
                        this.conteneurBp_etiquette.classList.add('Couleur_etiquette');
                        this.conteneurBp_choix1.classList.add('Couleur_arret');
                        this.conteneurBp_choix2.classList.add('Couleur_alarme');
                        this.couletiq_aff='Couleur_etiquette';
                        this.coulchoix1_aff='Couleur_arret';
                        this.coulchoix2_aff='Couleur_alarme';
                }
                this.conteneurBp.classList.remove(this.coulBP_aff);
                this.conteneurBp.classList.add(this.coulBP_maj);
                this.coulBP_aff=this.coulBP_maj;
 
                console.log('this.etat_bp: '+this.etat_bp);
                this.etat_bp=!this.etat_bp;
        }
}
 
 
let GenBp_1 = new GenBp1({id:'GenBp_1',etiq: 'bp1'});
let GenBp_2 = new GenBp2({id:'GenBp_2',etiq: 'bp2/nMarche/nArret'});
 
//dcvisu["0"].etat(val=GenBp_1.compteur);
</script>
</html>

le bouton problématique est GenBp_2,
construction:
<div id='idcont'>
____ <button class='GenBp_choix_cadre GenBp_cadre_vert'>
________<div class='GenBp_choix_etiquette'>
________ <div class='GenBp_choix_choix'>
________<div class='GenBp_choix_choix'>