ode-csslib 4.0.2 → 4.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +251 -20
- package/dist/index.css.map +1 -0
- package/dist/version.txt +1 -1
- package/package.json +1 -1
- package/scss/specifics/calendar/_calendar.scss +3 -5
- package/scss/specifics/competences/components/_competences.scss +616 -601
- package/scss/specifics/competences/components/_slider.scss +20 -19
- package/scss/specifics/presences/components/containers/_register.scss +15 -19
- package/scss/specifics/presences/components/containers/registry/_table.scss +2 -2
- package/scss/specifics/presences/components/material/_radio.scss +13 -13
- package/scss/specifics/presences/generic/_flex.scss +4 -3
|
@@ -20,7 +20,7 @@ $eval-lighter-grey: #f4f3f3;
|
|
|
20
20
|
|
|
21
21
|
body.evaluations {
|
|
22
22
|
.select:not(button) {
|
|
23
|
-
select{
|
|
23
|
+
select {
|
|
24
24
|
margin: 0;
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -30,10 +30,10 @@ body.evaluations {
|
|
|
30
30
|
.twentyFontSize {
|
|
31
31
|
font-size: 20px !important;
|
|
32
32
|
}
|
|
33
|
-
.bottomInfo{
|
|
33
|
+
.bottomInfo {
|
|
34
34
|
padding-bottom: 25px;
|
|
35
35
|
}
|
|
36
|
-
.allIgnored{
|
|
36
|
+
.allIgnored {
|
|
37
37
|
transform: rotate(-90deg);
|
|
38
38
|
position: relative;
|
|
39
39
|
display: inline-block;
|
|
@@ -41,7 +41,7 @@ body.evaluations {
|
|
|
41
41
|
i.allIgnored.users:before {
|
|
42
42
|
color: $red;
|
|
43
43
|
}
|
|
44
|
-
i.ignored.users:before{
|
|
44
|
+
i.ignored.users:before {
|
|
45
45
|
color: green !important;
|
|
46
46
|
}
|
|
47
47
|
|
|
@@ -65,7 +65,7 @@ body.evaluations {
|
|
|
65
65
|
background: grey !important;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
|
-
.height-fit-content{
|
|
68
|
+
.height-fit-content {
|
|
69
69
|
height: fit-content;
|
|
70
70
|
}
|
|
71
71
|
|
|
@@ -91,7 +91,7 @@ body.evaluations {
|
|
|
91
91
|
}
|
|
92
92
|
c-skills-color-page c-skills-bubble > span.rounded {
|
|
93
93
|
border: none;
|
|
94
|
-
box-shadow: 0 1px 1px rgba(0,0,0,0.4);
|
|
94
|
+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
|
|
95
95
|
}
|
|
96
96
|
c-skill-note-devoir > .rounded {
|
|
97
97
|
width: 20px !important;
|
|
@@ -103,10 +103,10 @@ body.evaluations {
|
|
|
103
103
|
margin-left: 5px;
|
|
104
104
|
margin-bottom: 10px;
|
|
105
105
|
}
|
|
106
|
-
.FloatRight{
|
|
106
|
+
.FloatRight {
|
|
107
107
|
float: right;
|
|
108
108
|
}
|
|
109
|
-
.tuto-legend{
|
|
109
|
+
.tuto-legend {
|
|
110
110
|
display: inline;
|
|
111
111
|
list-style-type: none;
|
|
112
112
|
padding-left: 0px;
|
|
@@ -115,7 +115,7 @@ body.evaluations {
|
|
|
115
115
|
display: inline;
|
|
116
116
|
padding: 5px;
|
|
117
117
|
}
|
|
118
|
-
-webkit-font-smoothing:antialiased !important;
|
|
118
|
+
-webkit-font-smoothing: antialiased !important;
|
|
119
119
|
/* tooltip sur l'écran de saisie des notes */
|
|
120
120
|
.skills-color-page > li > span.tooltip-overlay {
|
|
121
121
|
width: 22px !important;
|
|
@@ -130,7 +130,8 @@ body.evaluations {
|
|
|
130
130
|
#volet {
|
|
131
131
|
width: 250px;
|
|
132
132
|
padding: 10px;
|
|
133
|
-
background: rgb(75, 175, 213);
|
|
133
|
+
background: rgb(75, 175, 213);
|
|
134
|
+
color: #fff;
|
|
134
135
|
}
|
|
135
136
|
|
|
136
137
|
#volet a.ouvrir,
|
|
@@ -143,10 +144,10 @@ body.evaluations {
|
|
|
143
144
|
|
|
144
145
|
#volet {
|
|
145
146
|
position: absolute;
|
|
146
|
-
right: -270px;
|
|
147
|
-
-webkit-transition: all .5s ease-in;
|
|
148
|
-
-moz-transition: all .5s ease-in;
|
|
149
|
-
transition: all .5s ease-in;
|
|
147
|
+
right: -270px; /* test fixed + scroll, on retire la position top */
|
|
148
|
+
-webkit-transition: all 0.5s ease-in;
|
|
149
|
+
-moz-transition: all 0.5s ease-in;
|
|
150
|
+
transition: all 0.5s ease-in;
|
|
150
151
|
-webkit-text-fill-color: #fff;
|
|
151
152
|
}
|
|
152
153
|
#volet a.ouvrir,
|
|
@@ -154,15 +155,15 @@ body.evaluations {
|
|
|
154
155
|
position: absolute;
|
|
155
156
|
left: -44px;
|
|
156
157
|
top: 0px;
|
|
157
|
-
height
|
|
158
|
+
height: 30px;
|
|
158
159
|
width: 30px;
|
|
159
160
|
-webkit-transform: rotate(270deg);
|
|
160
161
|
-moz-transform: rotate(270deg);
|
|
161
162
|
-o-transform: rotate(270deg);
|
|
162
163
|
-ms-transform: rotate(270deg);
|
|
163
|
-
-moz-radius:
|
|
164
|
+
-moz-radius: 50% 50% 0 0;
|
|
164
165
|
border-radius: 50% 50% 0 0;
|
|
165
|
-
box-shadow: 0 1px 3px rgba(0,0,0,0.26)
|
|
166
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.26);
|
|
166
167
|
}
|
|
167
168
|
.close a.fermer {
|
|
168
169
|
display: none;
|
|
@@ -186,11 +187,11 @@ body.evaluations {
|
|
|
186
187
|
/* test fixed + scroll */
|
|
187
188
|
#volet_clos {
|
|
188
189
|
position: fixed;
|
|
189
|
-
top: 170px;
|
|
190
|
+
top: 170px;
|
|
191
|
+
right: 0;
|
|
190
192
|
z-index: 4;
|
|
191
193
|
}
|
|
192
194
|
|
|
193
|
-
|
|
194
195
|
span.rounded.textColorPage {
|
|
195
196
|
position: absolute;
|
|
196
197
|
z-index: 10;
|
|
@@ -212,38 +213,42 @@ body.evaluations {
|
|
|
212
213
|
font-family: Helvetica Neue;
|
|
213
214
|
}
|
|
214
215
|
&.evaluations {
|
|
215
|
-
.datepicker{
|
|
216
|
+
.datepicker {
|
|
216
217
|
z-index: 120000 !important;
|
|
217
218
|
}
|
|
218
219
|
}
|
|
219
220
|
canvas.chart.chart-bar {
|
|
220
221
|
cursor: pointer;
|
|
221
222
|
}
|
|
222
|
-
@media screen and (max-width:
|
|
223
|
+
@media screen and (max-width: $small-mobile) {
|
|
223
224
|
.input-moyenne {
|
|
224
|
-
float:none;
|
|
225
|
+
float: none;
|
|
225
226
|
font-weight: bold;
|
|
226
227
|
display: inline-block;
|
|
227
|
-
text-align
|
|
228
|
+
text-align: center !important;
|
|
228
229
|
}
|
|
229
230
|
}
|
|
230
|
-
.evalLibre{
|
|
231
|
+
.evalLibre {
|
|
231
232
|
height: 800px;
|
|
232
233
|
}
|
|
233
234
|
select.padding-select-accueil {
|
|
234
235
|
padding-right: 30px !important;
|
|
235
236
|
}
|
|
236
237
|
|
|
237
|
-
@media screen and (max-device-width
|
|
238
|
+
@media screen and (max-device-width: $fat-mobile) {
|
|
238
239
|
.responsive-table table thead {
|
|
239
240
|
display: none !important;
|
|
240
241
|
}
|
|
241
|
-
input[type=text],
|
|
242
|
+
input[type="text"],
|
|
243
|
+
input[type="password"],
|
|
244
|
+
input[type="search"],
|
|
245
|
+
input[type="tel"],
|
|
246
|
+
input[type="email"] {
|
|
242
247
|
text-align: center !important;
|
|
243
248
|
}
|
|
244
249
|
|
|
245
|
-
.suiviDesAcquis{
|
|
246
|
-
.selectable-list li{
|
|
250
|
+
.suiviDesAcquis {
|
|
251
|
+
.selectable-list li {
|
|
247
252
|
float: none;
|
|
248
253
|
display: inline;
|
|
249
254
|
}
|
|
@@ -257,20 +262,20 @@ body.evaluations {
|
|
|
257
262
|
padding-left: 5px;
|
|
258
263
|
}
|
|
259
264
|
|
|
260
|
-
.domaine-maitrise{
|
|
265
|
+
.domaine-maitrise {
|
|
261
266
|
padding-top: 5px;
|
|
262
267
|
}
|
|
263
268
|
|
|
264
269
|
.legende-bfc-left {
|
|
265
|
-
width: 20
|
|
270
|
+
width: 20% !important;
|
|
266
271
|
}
|
|
267
272
|
|
|
268
273
|
.legende-bfc-right {
|
|
269
274
|
width: 65%;
|
|
270
|
-
.conversion-libelle{
|
|
275
|
+
.conversion-libelle {
|
|
271
276
|
font-weight: 400;
|
|
272
277
|
max-width: 100%;
|
|
273
|
-
width: 100
|
|
278
|
+
width: 100%;
|
|
274
279
|
}
|
|
275
280
|
}
|
|
276
281
|
|
|
@@ -280,7 +285,8 @@ body.evaluations {
|
|
|
280
285
|
|
|
281
286
|
// Suivi élève : Vue Liste //
|
|
282
287
|
|
|
283
|
-
table thead tr,
|
|
288
|
+
table thead tr,
|
|
289
|
+
ul.list-view thead tr {
|
|
284
290
|
color: $white !important;
|
|
285
291
|
}
|
|
286
292
|
|
|
@@ -290,15 +296,15 @@ body.evaluations {
|
|
|
290
296
|
width: 0%;
|
|
291
297
|
}
|
|
292
298
|
|
|
293
|
-
.disabled{
|
|
299
|
+
.disabled {
|
|
294
300
|
opacity: 0.45;
|
|
295
301
|
cursor: default;
|
|
296
302
|
}
|
|
297
|
-
.noClick{
|
|
303
|
+
.noClick {
|
|
298
304
|
cursor: default;
|
|
299
305
|
}
|
|
300
306
|
|
|
301
|
-
@media screen and (min-device-width
|
|
307
|
+
@media screen and (min-device-width: $tablette) {
|
|
302
308
|
.enLargedLightBox div.content {
|
|
303
309
|
width: 80% !important;
|
|
304
310
|
}
|
|
@@ -312,7 +318,7 @@ body.evaluations {
|
|
|
312
318
|
z-index: 1;
|
|
313
319
|
height: 100%;
|
|
314
320
|
}
|
|
315
|
-
.custom-mobile-releve{
|
|
321
|
+
.custom-mobile-releve {
|
|
316
322
|
display: none;
|
|
317
323
|
}
|
|
318
324
|
.list-devoirs table tbody tr {
|
|
@@ -328,11 +334,10 @@ body.evaluations {
|
|
|
328
334
|
margin: 10px;
|
|
329
335
|
padding: 15px;
|
|
330
336
|
background: #fff;
|
|
331
|
-
@include box-shadow(rgba(0,0,0,0.26) 0 1px 3px);
|
|
337
|
+
@include box-shadow(rgba(0, 0, 0, 0.26) 0 1px 3px);
|
|
332
338
|
}
|
|
333
339
|
|
|
334
|
-
|
|
335
|
-
th{
|
|
340
|
+
th {
|
|
336
341
|
&.colDevoir {
|
|
337
342
|
white-space: nowrap;
|
|
338
343
|
text-overflow: ellipsis;
|
|
@@ -341,7 +346,7 @@ body.evaluations {
|
|
|
341
346
|
}
|
|
342
347
|
}
|
|
343
348
|
|
|
344
|
-
@media screen and (max-device-width: 1350px
|
|
349
|
+
@media screen and (max-device-width: 1350px) {
|
|
345
350
|
input.input-list {
|
|
346
351
|
max-width: 49% !important;
|
|
347
352
|
}
|
|
@@ -350,8 +355,7 @@ body.evaluations {
|
|
|
350
355
|
}
|
|
351
356
|
}
|
|
352
357
|
|
|
353
|
-
@media screen and (min-device-width: $tablette
|
|
354
|
-
|
|
358
|
+
@media screen and (min-device-width: $tablette) {
|
|
355
359
|
.overflowXScroll {
|
|
356
360
|
overflow-x: scroll !important;
|
|
357
361
|
}
|
|
@@ -363,18 +367,18 @@ body.evaluations {
|
|
|
363
367
|
.nav-releve {
|
|
364
368
|
margin-top: -50px;
|
|
365
369
|
}
|
|
366
|
-
.toogleDevoir{
|
|
370
|
+
.toogleDevoir {
|
|
367
371
|
align-content: right !important;
|
|
368
372
|
display: inline-block;
|
|
369
373
|
float: right;
|
|
370
374
|
margin-right: -5px;
|
|
371
|
-
margin-top:
|
|
375
|
+
margin-top: 10px;
|
|
372
376
|
}
|
|
373
|
-
.toogleIcon{
|
|
377
|
+
.toogleIcon {
|
|
374
378
|
transform: rotate(90deg);
|
|
375
379
|
position: relative;
|
|
376
380
|
}
|
|
377
|
-
.toogleIcon:before{
|
|
381
|
+
.toogleIcon:before {
|
|
378
382
|
color: $white !important;
|
|
379
383
|
}
|
|
380
384
|
.tableReleves {
|
|
@@ -385,8 +389,8 @@ body.evaluations {
|
|
|
385
389
|
.responsive-table {
|
|
386
390
|
margin-top: 0 !important;
|
|
387
391
|
margin-bottom: 0 !important;
|
|
388
|
-
border:none;
|
|
389
|
-
border-bottom: 1px solid #ccc
|
|
392
|
+
border: none;
|
|
393
|
+
border-bottom: 1px solid #ccc;
|
|
390
394
|
}
|
|
391
395
|
.tableReleveStats {
|
|
392
396
|
box-shadow: 0 0 0px 0 grey !important;
|
|
@@ -418,7 +422,7 @@ body.evaluations {
|
|
|
418
422
|
}
|
|
419
423
|
|
|
420
424
|
.tableReleve {
|
|
421
|
-
tr{
|
|
425
|
+
tr {
|
|
422
426
|
display: flex !important;
|
|
423
427
|
td {
|
|
424
428
|
border-left: solid 1px #e0d8d8;
|
|
@@ -451,7 +455,7 @@ body.evaluations {
|
|
|
451
455
|
}
|
|
452
456
|
|
|
453
457
|
thead {
|
|
454
|
-
th{
|
|
458
|
+
th {
|
|
455
459
|
height: 15px;
|
|
456
460
|
}
|
|
457
461
|
}
|
|
@@ -479,13 +483,13 @@ body.evaluations {
|
|
|
479
483
|
max-width: 30%;
|
|
480
484
|
height: 25px;
|
|
481
485
|
}
|
|
482
|
-
ul.input-list{
|
|
486
|
+
ul.input-list {
|
|
483
487
|
padding-top: 0px;
|
|
484
488
|
padding-left: 0px;
|
|
485
489
|
margin-top: 1px;
|
|
486
490
|
margin-bottom: 1px;
|
|
487
491
|
}
|
|
488
|
-
li.input-list{
|
|
492
|
+
li.input-list {
|
|
489
493
|
list-style-type: none;
|
|
490
494
|
background: #0499e2;
|
|
491
495
|
color: white;
|
|
@@ -496,11 +500,11 @@ body.evaluations {
|
|
|
496
500
|
}
|
|
497
501
|
.col1 {
|
|
498
502
|
width: 200px !important;
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
503
|
+
}
|
|
504
|
+
.colMoyenne {
|
|
505
|
+
width: 100px !important;
|
|
506
|
+
text-align: center !important;
|
|
507
|
+
}
|
|
504
508
|
}
|
|
505
509
|
.moyenneClasse {
|
|
506
510
|
color: $primary-dark;
|
|
@@ -514,98 +518,99 @@ body.evaluations {
|
|
|
514
518
|
color: $green;
|
|
515
519
|
font-weight: bold;
|
|
516
520
|
}
|
|
517
|
-
.display-check{
|
|
521
|
+
.display-check {
|
|
518
522
|
height: 24px;
|
|
519
523
|
text-align: center;
|
|
520
524
|
}
|
|
521
525
|
.statClasse {
|
|
522
526
|
box-shadow: 0 0 1px 0 grey;
|
|
523
|
-
tbody{
|
|
524
|
-
tr{
|
|
525
|
-
&:nth-child(2n){
|
|
526
|
-
background-color: rgba(0, 0, 0,0.05);
|
|
527
|
+
tbody {
|
|
528
|
+
tr {
|
|
529
|
+
&:nth-child(2n) {
|
|
530
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
527
531
|
}
|
|
528
|
-
&:hover{
|
|
529
|
-
background-color: rgba(0, 0, 0,0.15);
|
|
532
|
+
&:hover {
|
|
533
|
+
background-color: rgba(0, 0, 0, 0.15);
|
|
530
534
|
}
|
|
531
535
|
}
|
|
532
536
|
}
|
|
533
537
|
}
|
|
534
538
|
|
|
535
|
-
.checkbox-domaine{
|
|
539
|
+
.checkbox-domaine {
|
|
536
540
|
background-color: #4bafd5;
|
|
537
541
|
margin-left: 6px !important;
|
|
538
542
|
}
|
|
539
543
|
|
|
540
544
|
.tableReleve {
|
|
541
545
|
box-shadow: 0 0 1px 0 grey;
|
|
542
|
-
tbody{
|
|
543
|
-
tr{
|
|
544
|
-
&:nth-child(2n){
|
|
545
|
-
background-color: rgba(0, 0, 0,0.05);
|
|
546
|
+
tbody {
|
|
547
|
+
tr {
|
|
548
|
+
&:nth-child(2n) {
|
|
549
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
546
550
|
}
|
|
547
|
-
&:hover{
|
|
548
|
-
background-color: rgba(0, 0, 0,0.15);
|
|
551
|
+
&:hover {
|
|
552
|
+
background-color: rgba(0, 0, 0, 0.15);
|
|
549
553
|
}
|
|
550
554
|
}
|
|
551
555
|
}
|
|
552
|
-
thead{
|
|
553
|
-
a{
|
|
556
|
+
thead {
|
|
557
|
+
a {
|
|
554
558
|
color: $white;
|
|
555
559
|
}
|
|
556
560
|
}
|
|
557
561
|
}
|
|
558
|
-
.ligneReleve{
|
|
559
|
-
&.visible{
|
|
560
|
-
&:nth-child(2n){
|
|
561
|
-
background-color: rgba(0,0,0,0.05);
|
|
562
|
+
.ligneReleve {
|
|
563
|
+
&.visible {
|
|
564
|
+
&:nth-child(2n) {
|
|
565
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
562
566
|
}
|
|
563
567
|
}
|
|
564
568
|
}
|
|
565
|
-
.tableRelevePadding{
|
|
566
|
-
> tbody{
|
|
567
|
-
> tr{
|
|
568
|
-
> td{
|
|
569
|
+
.tableRelevePadding {
|
|
570
|
+
> tbody {
|
|
571
|
+
> tr {
|
|
572
|
+
> td {
|
|
569
573
|
padding: 0px 10px !important;
|
|
570
|
-
input[type="text"]{
|
|
574
|
+
input[type="text"] {
|
|
571
575
|
width: 5em;
|
|
572
576
|
text-align: center;
|
|
573
577
|
}
|
|
574
578
|
}
|
|
575
579
|
}
|
|
576
580
|
}
|
|
577
|
-
.widthMax{
|
|
581
|
+
.widthMax {
|
|
578
582
|
width: 66% !important;
|
|
579
|
-
input[type="text"]{
|
|
583
|
+
input[type="text"] {
|
|
580
584
|
width: 100% !important;
|
|
581
585
|
}
|
|
582
586
|
}
|
|
583
587
|
}
|
|
584
588
|
|
|
585
|
-
@media screen and (max-device-width
|
|
589
|
+
@media screen and (max-device-width: $small-mobile) {
|
|
586
590
|
.tableRelevePadding tbody tr td {
|
|
587
591
|
padding: 10px !important;
|
|
588
592
|
}
|
|
589
593
|
}
|
|
590
594
|
|
|
591
|
-
@media screen and (max-device-width
|
|
595
|
+
@media screen and (max-device-width: $fat-mobile) {
|
|
592
596
|
.tableRelevePadding tbody tr td {
|
|
593
597
|
padding: 10px !important;
|
|
594
598
|
}
|
|
595
599
|
}
|
|
596
600
|
|
|
597
|
-
.download-link{
|
|
601
|
+
.download-link {
|
|
598
602
|
margin-bottom: 20px;
|
|
599
603
|
}
|
|
600
604
|
|
|
601
|
-
.input-note{
|
|
605
|
+
.input-note {
|
|
602
606
|
text-align: right;
|
|
603
607
|
display: block;
|
|
604
608
|
padding: 0;
|
|
605
609
|
margin: 0 auto;
|
|
606
610
|
}
|
|
607
|
-
input[type=text]{
|
|
608
|
-
&.input-note,
|
|
611
|
+
input[type="text"] {
|
|
612
|
+
&.input-note,
|
|
613
|
+
&.input-appreciation {
|
|
609
614
|
border-bottom: 1px solid rgb(75, 175, 213) !important;
|
|
610
615
|
margin-bottom: 0 !important;
|
|
611
616
|
padding: 0;
|
|
@@ -635,7 +640,7 @@ body.evaluations {
|
|
|
635
640
|
z-index: 1;
|
|
636
641
|
height: 10.5vh;
|
|
637
642
|
background: #ffffff;
|
|
638
|
-
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.35);
|
|
643
|
+
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35);
|
|
639
644
|
}
|
|
640
645
|
|
|
641
646
|
.colMoyenne.size {
|
|
@@ -643,13 +648,13 @@ body.evaluations {
|
|
|
643
648
|
justify-content: space-between;
|
|
644
649
|
}
|
|
645
650
|
|
|
646
|
-
@media screen and (max-device-width
|
|
651
|
+
@media screen and (max-device-width: $small-mobile) {
|
|
647
652
|
.colMoyenne.size {
|
|
648
653
|
display: block;
|
|
649
654
|
}
|
|
650
655
|
}
|
|
651
656
|
|
|
652
|
-
@media screen and (max-device-width
|
|
657
|
+
@media screen and (max-device-width: $fat-mobile) {
|
|
653
658
|
.colMoyenne.size {
|
|
654
659
|
display: block;
|
|
655
660
|
}
|
|
@@ -660,8 +665,8 @@ body.evaluations {
|
|
|
660
665
|
max-width: 58%;
|
|
661
666
|
}
|
|
662
667
|
|
|
663
|
-
input[type=text]{
|
|
664
|
-
&.input-list{
|
|
668
|
+
input[type="text"] {
|
|
669
|
+
&.input-list {
|
|
665
670
|
border-bottom: 1px solid rgb(75, 175, 213) !important;
|
|
666
671
|
margin-bottom: 0 !important;
|
|
667
672
|
padding: 0;
|
|
@@ -672,7 +677,7 @@ body.evaluations {
|
|
|
672
677
|
}
|
|
673
678
|
}
|
|
674
679
|
|
|
675
|
-
.input-moyenne{
|
|
680
|
+
.input-moyenne {
|
|
676
681
|
font-weight: bold;
|
|
677
682
|
width: 60%;
|
|
678
683
|
display: block;
|
|
@@ -692,35 +697,35 @@ body.evaluations {
|
|
|
692
697
|
.paddingHeight {
|
|
693
698
|
padding: 8px;
|
|
694
699
|
}
|
|
695
|
-
.expandable{
|
|
696
|
-
&:nth-child(2n){
|
|
697
|
-
background-color: rgba(0,0,0,0.05);
|
|
700
|
+
.expandable {
|
|
701
|
+
&:nth-child(2n) {
|
|
702
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
698
703
|
}
|
|
699
|
-
&.opened{
|
|
700
|
-
.plus-input{
|
|
704
|
+
&.opened {
|
|
705
|
+
.plus-input {
|
|
701
706
|
@include fonticon;
|
|
702
|
-
&::after{
|
|
707
|
+
&::after {
|
|
703
708
|
content: "\e85e";
|
|
704
709
|
}
|
|
705
710
|
}
|
|
706
711
|
}
|
|
707
|
-
&.cell{
|
|
708
|
-
&:hover{
|
|
709
|
-
background-color: rgba(0,0,0,0.05);
|
|
712
|
+
&.cell {
|
|
713
|
+
&:hover {
|
|
714
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
710
715
|
}
|
|
711
716
|
}
|
|
712
717
|
}
|
|
713
|
-
.devoir-header{
|
|
714
|
-
&::after{
|
|
718
|
+
.devoir-header {
|
|
719
|
+
&::after {
|
|
715
720
|
content: none !important;
|
|
716
721
|
clear: none !important;
|
|
717
722
|
}
|
|
718
|
-
.cell{
|
|
723
|
+
.cell {
|
|
719
724
|
border-left: solid 1px rgba(0, 0, 0, 0.3);
|
|
720
725
|
border-bottom: solid 1px rgba(0, 0, 0, 0.2);
|
|
721
|
-
color: rgba(0,0,0,0.6);
|
|
726
|
+
color: rgba(0, 0, 0, 0.6);
|
|
722
727
|
overflow: hidden;
|
|
723
|
-
&:first-child{
|
|
728
|
+
&:first-child {
|
|
724
729
|
border-left: none;
|
|
725
730
|
}
|
|
726
731
|
}
|
|
@@ -736,18 +741,18 @@ body.evaluations {
|
|
|
736
741
|
|
|
737
742
|
> input {
|
|
738
743
|
cursor: not-allowed;
|
|
739
|
-
border:0px !important;
|
|
740
|
-
margin:0px !important;
|
|
744
|
+
border: 0px !important;
|
|
745
|
+
margin: 0px !important;
|
|
741
746
|
background: none !important;
|
|
742
|
-
height:1em;
|
|
747
|
+
height: 1em;
|
|
743
748
|
}
|
|
744
749
|
}
|
|
745
|
-
.row{
|
|
746
|
-
input:not(input[type="button"]){
|
|
750
|
+
.row {
|
|
751
|
+
input:not(input[type="button"]) {
|
|
747
752
|
height: 20px !important;
|
|
748
753
|
margin-bottom: 2px !important;
|
|
749
754
|
}
|
|
750
|
-
.devoirs-header{
|
|
755
|
+
.devoirs-header {
|
|
751
756
|
display: block;
|
|
752
757
|
background-color: $white;
|
|
753
758
|
height: 90px !important;
|
|
@@ -792,15 +797,15 @@ body.evaluations {
|
|
|
792
797
|
}
|
|
793
798
|
}
|
|
794
799
|
|
|
795
|
-
.appreciation-classe{
|
|
800
|
+
.appreciation-classe {
|
|
796
801
|
padding-top: 5px;
|
|
797
802
|
}
|
|
798
803
|
|
|
799
|
-
.padding-table-elements{
|
|
804
|
+
.padding-table-elements {
|
|
800
805
|
padding: 10px 20px;
|
|
801
806
|
}
|
|
802
807
|
|
|
803
|
-
.elements-header{
|
|
808
|
+
.elements-header {
|
|
804
809
|
display: block;
|
|
805
810
|
background-color: $white;
|
|
806
811
|
margin-top: 1%;
|
|
@@ -816,65 +821,65 @@ body.evaluations {
|
|
|
816
821
|
}
|
|
817
822
|
}
|
|
818
823
|
}
|
|
819
|
-
.indent-five{
|
|
824
|
+
.indent-five {
|
|
820
825
|
text-indent: 5px;
|
|
821
826
|
}
|
|
822
|
-
.indent-fifteen{
|
|
827
|
+
.indent-fifteen {
|
|
823
828
|
text-indent: 15px;
|
|
824
829
|
}
|
|
825
|
-
.coche-case{
|
|
826
|
-
padding:5px 0 0 10px;
|
|
827
|
-
box-sizing:border-box;
|
|
830
|
+
.coche-case {
|
|
831
|
+
padding: 5px 0 0 10px;
|
|
832
|
+
box-sizing: border-box;
|
|
828
833
|
}
|
|
829
|
-
.expandable-liste{
|
|
830
|
-
.expandable{
|
|
831
|
-
border-bottom: solid 1px rgba(0,0,0,0.2);
|
|
834
|
+
.expandable-liste {
|
|
835
|
+
.expandable {
|
|
836
|
+
border-bottom: solid 1px rgba(0, 0, 0, 0.2);
|
|
832
837
|
@include transition(all 100ms ease-out);
|
|
833
838
|
height: 35px;
|
|
834
839
|
overflow: hidden;
|
|
835
840
|
padding: 5px;
|
|
836
841
|
box-sizing: border-box;
|
|
837
842
|
|
|
838
|
-
&.opened{
|
|
843
|
+
&.opened {
|
|
839
844
|
height: auto;
|
|
840
845
|
z-index: 1;
|
|
841
846
|
transform: scale(1.005);
|
|
842
|
-
.row{
|
|
843
|
-
&:first-child{
|
|
844
|
-
border-bottom: solid 1px rgba(0,0,0,0.2);
|
|
847
|
+
.row {
|
|
848
|
+
&:first-child {
|
|
849
|
+
border-bottom: solid 1px rgba(0, 0, 0, 0.2);
|
|
845
850
|
}
|
|
846
|
-
&:nth-child(2){
|
|
851
|
+
&:nth-child(2) {
|
|
847
852
|
color: $text-light;
|
|
848
853
|
text-indent: 40px;
|
|
849
854
|
}
|
|
850
855
|
}
|
|
851
856
|
}
|
|
852
|
-
&:first-child{
|
|
857
|
+
&:first-child {
|
|
853
858
|
//margin-top:15px;
|
|
854
859
|
}
|
|
855
860
|
}
|
|
856
861
|
|
|
857
|
-
&.notes-devoir-liste{
|
|
858
|
-
.expandable{
|
|
862
|
+
&.notes-devoir-liste {
|
|
863
|
+
.expandable {
|
|
859
864
|
height: auto;
|
|
860
865
|
}
|
|
861
866
|
}
|
|
862
|
-
.expandable-content{
|
|
867
|
+
.expandable-content {
|
|
863
868
|
padding: 0 4px 0 4px;
|
|
864
869
|
font-size: 14px;
|
|
865
|
-
> label{
|
|
870
|
+
> label {
|
|
866
871
|
margin-top: 2px;
|
|
867
872
|
display: block;
|
|
868
873
|
}
|
|
869
874
|
}
|
|
870
|
-
.expandable-name{
|
|
875
|
+
.expandable-name {
|
|
871
876
|
padding: 2px 10px 0px 6px;
|
|
872
877
|
font-size: 13px;
|
|
873
878
|
}
|
|
874
879
|
}
|
|
875
880
|
|
|
876
881
|
.expandable-appreciation {
|
|
877
|
-
border-bottom: solid 1px rgba(0,0,0,0.2);
|
|
882
|
+
border-bottom: solid 1px rgba(0, 0, 0, 0.2);
|
|
878
883
|
transition: all 100ms ease-out;
|
|
879
884
|
height: 30px;
|
|
880
885
|
overflow: hidden;
|
|
@@ -883,8 +888,8 @@ body.evaluations {
|
|
|
883
888
|
}
|
|
884
889
|
|
|
885
890
|
@media screen and (max-width: $tablette) {
|
|
886
|
-
.expandable-liste{
|
|
887
|
-
.expandable-content{
|
|
891
|
+
.expandable-liste {
|
|
892
|
+
.expandable-content {
|
|
888
893
|
padding: 0;
|
|
889
894
|
}
|
|
890
895
|
}
|
|
@@ -915,7 +920,7 @@ body.evaluations {
|
|
|
915
920
|
|
|
916
921
|
.criterion {
|
|
917
922
|
padding: 5px;
|
|
918
|
-
margin:0;
|
|
923
|
+
margin: 0;
|
|
919
924
|
|
|
920
925
|
&.card {
|
|
921
926
|
box-shadow: none;
|
|
@@ -923,7 +928,11 @@ body.evaluations {
|
|
|
923
928
|
}
|
|
924
929
|
}
|
|
925
930
|
|
|
926
|
-
input[type=text],
|
|
931
|
+
input[type="text"],
|
|
932
|
+
input[type="password"],
|
|
933
|
+
input[type="search"],
|
|
934
|
+
input[type="tel"],
|
|
935
|
+
input[type="email"] {
|
|
927
936
|
margin-bottom: 2px;
|
|
928
937
|
}
|
|
929
938
|
|
|
@@ -938,14 +947,14 @@ body.evaluations {
|
|
|
938
947
|
}
|
|
939
948
|
|
|
940
949
|
.openedEleve {
|
|
941
|
-
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.35);
|
|
950
|
+
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35);
|
|
942
951
|
padding: 10px;
|
|
943
952
|
z-index: 1;
|
|
944
953
|
transform: scaleY(1.005);
|
|
945
954
|
background: white;
|
|
946
955
|
}
|
|
947
956
|
|
|
948
|
-
.devoir .row:nth-child(3){
|
|
957
|
+
.devoir .row:nth-child(3) {
|
|
949
958
|
color: $text-light;
|
|
950
959
|
text-indent: 40px;
|
|
951
960
|
}
|
|
@@ -970,7 +979,7 @@ body.evaluations {
|
|
|
970
979
|
min-width: 70px;
|
|
971
980
|
white-space: nowrap;
|
|
972
981
|
}
|
|
973
|
-
.gradetooltip{
|
|
982
|
+
.gradetooltip {
|
|
974
983
|
position: absolute;
|
|
975
984
|
width: 100%;
|
|
976
985
|
height: 100%;
|
|
@@ -979,9 +988,9 @@ body.evaluations {
|
|
|
979
988
|
top: 0;
|
|
980
989
|
}
|
|
981
990
|
|
|
982
|
-
.tooltip{
|
|
983
|
-
.content{
|
|
984
|
-
>
|
|
991
|
+
.tooltip {
|
|
992
|
+
.content {
|
|
993
|
+
> p {
|
|
985
994
|
margin: 0;
|
|
986
995
|
padding: 0;
|
|
987
996
|
}
|
|
@@ -1018,29 +1027,29 @@ body.evaluations {
|
|
|
1018
1027
|
.center {
|
|
1019
1028
|
text-align: center !important;
|
|
1020
1029
|
}
|
|
1021
|
-
.buttonHeader{
|
|
1022
|
-
.button{
|
|
1030
|
+
.buttonHeader {
|
|
1031
|
+
.button {
|
|
1023
1032
|
margin-left: 15px !important;
|
|
1024
1033
|
margin-bottom: 15px !important;
|
|
1025
|
-
&:first-child{
|
|
1034
|
+
&:first-child {
|
|
1026
1035
|
margin-left: 0px !important;
|
|
1027
1036
|
}
|
|
1028
1037
|
}
|
|
1029
1038
|
}
|
|
1030
|
-
.shadow{
|
|
1031
|
-
@include box-shadow(0px 0px 5px 0px rgba(0,0,0,0.35));
|
|
1039
|
+
.shadow {
|
|
1040
|
+
@include box-shadow(0px 0px 5px 0px rgba(0, 0, 0, 0.35));
|
|
1032
1041
|
}
|
|
1033
|
-
.criteres{
|
|
1034
|
-
&.opened{
|
|
1042
|
+
.criteres {
|
|
1043
|
+
&.opened {
|
|
1035
1044
|
height: 205px;
|
|
1036
1045
|
}
|
|
1037
|
-
&.openedProgramme{
|
|
1046
|
+
&.openedProgramme {
|
|
1038
1047
|
height: auto;
|
|
1039
1048
|
.plus-input::after {
|
|
1040
1049
|
content: "\e841";
|
|
1041
1050
|
}
|
|
1042
1051
|
}
|
|
1043
|
-
&.openedAppreciation{
|
|
1052
|
+
&.openedAppreciation {
|
|
1044
1053
|
height: 300px;
|
|
1045
1054
|
.plus-input::after {
|
|
1046
1055
|
content: "\e841";
|
|
@@ -1054,19 +1063,24 @@ body.evaluations {
|
|
|
1054
1063
|
}
|
|
1055
1064
|
}
|
|
1056
1065
|
|
|
1057
|
-
.appreciationTextarea{
|
|
1066
|
+
.appreciationTextarea {
|
|
1058
1067
|
height: 220px;
|
|
1059
1068
|
}
|
|
1060
1069
|
|
|
1061
|
-
.criteres,
|
|
1070
|
+
.criteres,
|
|
1071
|
+
.statistiques-devoir,
|
|
1072
|
+
.detail-devoir,
|
|
1073
|
+
.student-info,
|
|
1074
|
+
.devoir-info,
|
|
1075
|
+
.notes-help {
|
|
1062
1076
|
position: relative;
|
|
1063
|
-
.plus-input{
|
|
1077
|
+
.plus-input {
|
|
1064
1078
|
right: 5px;
|
|
1065
1079
|
position: absolute;
|
|
1066
1080
|
top: 11px;
|
|
1067
1081
|
z-index: 11;
|
|
1068
1082
|
@include fonticon;
|
|
1069
|
-
&::after{
|
|
1083
|
+
&::after {
|
|
1070
1084
|
content: "\e87b";
|
|
1071
1085
|
font-size: 15px;
|
|
1072
1086
|
color: $grey;
|
|
@@ -1077,39 +1091,45 @@ body.evaluations {
|
|
|
1077
1091
|
background-color: inherit;
|
|
1078
1092
|
font-size: 10px;
|
|
1079
1093
|
}
|
|
1080
|
-
&:hover::after{
|
|
1094
|
+
&:hover::after {
|
|
1081
1095
|
color: $cyan;
|
|
1082
1096
|
}
|
|
1083
1097
|
}
|
|
1084
1098
|
|
|
1085
1099
|
&.opened {
|
|
1086
|
-
.plus-input::after{
|
|
1100
|
+
.plus-input::after {
|
|
1087
1101
|
content: "\e841";
|
|
1088
1102
|
}
|
|
1089
1103
|
}
|
|
1090
1104
|
}
|
|
1091
|
-
.criteres,
|
|
1105
|
+
.criteres,
|
|
1106
|
+
.statistiques-devoir,
|
|
1107
|
+
.detail-devoir,
|
|
1108
|
+
.devoir-info {
|
|
1092
1109
|
height: 25px;
|
|
1093
1110
|
overflow: hidden;
|
|
1094
1111
|
@include transition(all 100ms ease-out);
|
|
1095
1112
|
}
|
|
1096
|
-
.fiche{
|
|
1113
|
+
.fiche {
|
|
1097
1114
|
margin-top: 10px;
|
|
1098
1115
|
border-radius: 5px;
|
|
1099
1116
|
font-size: 14px !important;
|
|
1100
1117
|
background-color: $white;
|
|
1101
1118
|
position: relative;
|
|
1102
|
-
&.student-info,
|
|
1119
|
+
&.student-info,
|
|
1120
|
+
&.devoir-info,
|
|
1121
|
+
&.notes-help,
|
|
1122
|
+
&.diffsize {
|
|
1103
1123
|
height: 40px;
|
|
1104
1124
|
overflow: hidden;
|
|
1105
1125
|
@include transition(all 100ms ease-out);
|
|
1106
|
-
&.opened{
|
|
1126
|
+
&.opened {
|
|
1107
1127
|
min-height: 100px;
|
|
1108
1128
|
height: auto;
|
|
1109
1129
|
}
|
|
1110
1130
|
}
|
|
1111
|
-
&.student-info{
|
|
1112
|
-
h2{
|
|
1131
|
+
&.student-info {
|
|
1132
|
+
h2 {
|
|
1113
1133
|
color: $grey;
|
|
1114
1134
|
line-height: 37px;
|
|
1115
1135
|
}
|
|
@@ -1117,15 +1137,15 @@ body.evaluations {
|
|
|
1117
1137
|
&.diffpadding {
|
|
1118
1138
|
padding: 0;
|
|
1119
1139
|
}
|
|
1120
|
-
ul{
|
|
1140
|
+
ul {
|
|
1121
1141
|
margin: 0;
|
|
1122
1142
|
padding: 0;
|
|
1123
1143
|
list-style-type: none;
|
|
1124
1144
|
}
|
|
1125
|
-
> div{
|
|
1145
|
+
> div {
|
|
1126
1146
|
padding: 0 10px 5px 10px;
|
|
1127
1147
|
}
|
|
1128
|
-
.head{
|
|
1148
|
+
.head {
|
|
1129
1149
|
padding: 3px;
|
|
1130
1150
|
text-align: left;
|
|
1131
1151
|
margin: 0;
|
|
@@ -1137,14 +1157,18 @@ body.evaluations {
|
|
|
1137
1157
|
width: 80%;
|
|
1138
1158
|
}
|
|
1139
1159
|
}
|
|
1140
|
-
.datepicker{
|
|
1141
|
-
z-index:10002 !important;
|
|
1160
|
+
.datepicker {
|
|
1161
|
+
z-index: 10002 !important;
|
|
1142
1162
|
table {
|
|
1143
1163
|
line-height: 24px !important;
|
|
1144
1164
|
}
|
|
1145
1165
|
}
|
|
1146
|
-
h1,
|
|
1147
|
-
|
|
1166
|
+
h1,
|
|
1167
|
+
h2,
|
|
1168
|
+
h3,
|
|
1169
|
+
h4,
|
|
1170
|
+
h5 {
|
|
1171
|
+
> span {
|
|
1148
1172
|
font-style: italic;
|
|
1149
1173
|
}
|
|
1150
1174
|
}
|
|
@@ -1159,17 +1183,17 @@ body.evaluations {
|
|
|
1159
1183
|
|
|
1160
1184
|
.inputContainer {
|
|
1161
1185
|
display: flex;
|
|
1162
|
-
i{
|
|
1163
|
-
margin-left
|
|
1186
|
+
i {
|
|
1187
|
+
margin-left: 10px;
|
|
1164
1188
|
}
|
|
1165
1189
|
}
|
|
1166
1190
|
|
|
1167
|
-
.inputSection1{
|
|
1191
|
+
.inputSection1 {
|
|
1168
1192
|
width: 50%;
|
|
1169
1193
|
border-right: 1px solid lightgrey;
|
|
1170
1194
|
}
|
|
1171
1195
|
|
|
1172
|
-
.inputSection2{
|
|
1196
|
+
.inputSection2 {
|
|
1173
1197
|
width: 50%;
|
|
1174
1198
|
}
|
|
1175
1199
|
|
|
@@ -1177,36 +1201,36 @@ body.evaluations {
|
|
|
1177
1201
|
margin: 14px;
|
|
1178
1202
|
}
|
|
1179
1203
|
|
|
1180
|
-
.header-opt{
|
|
1204
|
+
.header-opt {
|
|
1181
1205
|
font-style: italic;
|
|
1182
1206
|
font-weight: bold !important;
|
|
1183
1207
|
}
|
|
1184
|
-
.controls-fixed{
|
|
1185
|
-
background-color:rgba(0, 0, 0, 0.1);
|
|
1186
|
-
bottom:0;
|
|
1187
|
-
left:0;
|
|
1188
|
-
padding:10px 15px;
|
|
1189
|
-
position:fixed;
|
|
1190
|
-
top:auto;
|
|
1191
|
-
width:100%;
|
|
1208
|
+
.controls-fixed {
|
|
1209
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
1210
|
+
bottom: 0;
|
|
1211
|
+
left: 0;
|
|
1212
|
+
padding: 10px 15px;
|
|
1213
|
+
position: fixed;
|
|
1214
|
+
top: auto;
|
|
1215
|
+
width: 100%;
|
|
1192
1216
|
}
|
|
1193
|
-
.imgEleve{
|
|
1217
|
+
.imgEleve {
|
|
1194
1218
|
width: 100%;
|
|
1195
1219
|
height: auto;
|
|
1196
1220
|
display: inline-block;
|
|
1197
1221
|
vertical-align: middle;
|
|
1198
1222
|
text-align: center;
|
|
1199
|
-
img{
|
|
1223
|
+
img {
|
|
1200
1224
|
width: 40%;
|
|
1201
1225
|
}
|
|
1202
1226
|
}
|
|
1203
|
-
.close-input{
|
|
1227
|
+
.close-input {
|
|
1204
1228
|
right: 18px;
|
|
1205
1229
|
position: absolute;
|
|
1206
1230
|
top: 5px;
|
|
1207
1231
|
@include fonticon;
|
|
1208
|
-
&::after{
|
|
1209
|
-
content:
|
|
1232
|
+
&::after {
|
|
1233
|
+
content: "\e866";
|
|
1210
1234
|
font-size: 15px;
|
|
1211
1235
|
color: $grey;
|
|
1212
1236
|
font-weight: 300;
|
|
@@ -1215,11 +1239,11 @@ body.evaluations {
|
|
|
1215
1239
|
border: none;
|
|
1216
1240
|
background-color: inherit;
|
|
1217
1241
|
}
|
|
1218
|
-
&:hover::after{
|
|
1242
|
+
&:hover::after {
|
|
1219
1243
|
color: $cyan;
|
|
1220
1244
|
}
|
|
1221
1245
|
}
|
|
1222
|
-
.header-fixed{
|
|
1246
|
+
.header-fixed {
|
|
1223
1247
|
position: fixed;
|
|
1224
1248
|
top: 64px;
|
|
1225
1249
|
width: 100%;
|
|
@@ -1231,45 +1255,45 @@ body.evaluations {
|
|
|
1231
1255
|
text-indent: 4px;
|
|
1232
1256
|
margin-left: 15px;
|
|
1233
1257
|
}
|
|
1234
|
-
.absolute-button-header-releve{
|
|
1258
|
+
.absolute-button-header-releve {
|
|
1235
1259
|
position: absolute !important;
|
|
1236
1260
|
right: 1%;
|
|
1237
1261
|
top: 34px;
|
|
1238
1262
|
}
|
|
1239
|
-
.header-outter-fixed{
|
|
1263
|
+
.header-outter-fixed {
|
|
1240
1264
|
padding: 74px 0 0 0;
|
|
1241
1265
|
position: relative;
|
|
1242
1266
|
display: block;
|
|
1243
1267
|
}
|
|
1244
|
-
.detail-devoir{
|
|
1245
|
-
&.opened{
|
|
1268
|
+
.detail-devoir {
|
|
1269
|
+
&.opened {
|
|
1246
1270
|
min-height: 100px;
|
|
1247
1271
|
height: auto;
|
|
1248
1272
|
}
|
|
1249
1273
|
}
|
|
1250
|
-
.statistiques-devoir{
|
|
1251
|
-
&.opened{
|
|
1274
|
+
.statistiques-devoir {
|
|
1275
|
+
&.opened {
|
|
1252
1276
|
height: auto !important;
|
|
1253
1277
|
max-height: 152px;
|
|
1254
1278
|
}
|
|
1255
1279
|
}
|
|
1256
|
-
.children-list{
|
|
1280
|
+
.children-list {
|
|
1257
1281
|
text-align: center;
|
|
1258
|
-
.dominos{
|
|
1282
|
+
.dominos {
|
|
1259
1283
|
margin-bottom: 0px !important;
|
|
1260
1284
|
text-align: center;
|
|
1261
|
-
.item{
|
|
1285
|
+
.item {
|
|
1262
1286
|
float: none !important;
|
|
1263
1287
|
display: inline-block;
|
|
1264
1288
|
cursor: pointer;
|
|
1265
1289
|
}
|
|
1266
1290
|
}
|
|
1267
1291
|
}
|
|
1268
|
-
.lightbox-parent{
|
|
1269
|
-
section{
|
|
1270
|
-
&.ligtbox{
|
|
1271
|
-
> div{
|
|
1272
|
-
&.content{
|
|
1292
|
+
.lightbox-parent {
|
|
1293
|
+
section {
|
|
1294
|
+
&.ligtbox {
|
|
1295
|
+
> div {
|
|
1296
|
+
&.content {
|
|
1273
1297
|
width: 400px;
|
|
1274
1298
|
}
|
|
1275
1299
|
}
|
|
@@ -1282,36 +1306,46 @@ body.evaluations {
|
|
|
1282
1306
|
display: inline-block;
|
|
1283
1307
|
position: relative;
|
|
1284
1308
|
margin: 5px 0;
|
|
1285
|
-
>i.download:before{
|
|
1309
|
+
> i.download:before {
|
|
1286
1310
|
margin-right: 9px !important;
|
|
1287
1311
|
font-size: 20px !important;
|
|
1288
1312
|
}
|
|
1289
1313
|
}
|
|
1290
|
-
.button-download{
|
|
1314
|
+
.button-download {
|
|
1291
1315
|
margin-left: 20px;
|
|
1292
1316
|
top: 0px;
|
|
1293
1317
|
position: relative;
|
|
1294
1318
|
float: right;
|
|
1295
1319
|
}
|
|
1296
|
-
.ul-competences{
|
|
1320
|
+
.ul-competences {
|
|
1297
1321
|
list-style-type: none;
|
|
1298
|
-
li{
|
|
1322
|
+
li {
|
|
1299
1323
|
padding: 5px;
|
|
1300
1324
|
}
|
|
1301
1325
|
}
|
|
1302
|
-
.ul-domaines{
|
|
1326
|
+
.ul-domaines {
|
|
1303
1327
|
margin-top: 20px;
|
|
1304
1328
|
}
|
|
1305
1329
|
/**
|
|
1306
1330
|
DIRECTIVE COLOR COMPETENCE
|
|
1307
1331
|
**/
|
|
1308
|
-
.green{
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
.
|
|
1312
|
-
|
|
1332
|
+
.green {
|
|
1333
|
+
background-color: $green !important;
|
|
1334
|
+
}
|
|
1335
|
+
.yellow {
|
|
1336
|
+
background-color: $yellow !important;
|
|
1337
|
+
}
|
|
1338
|
+
.orange {
|
|
1339
|
+
background-color: $orange !important;
|
|
1340
|
+
}
|
|
1341
|
+
.red {
|
|
1342
|
+
background-color: $red !important;
|
|
1343
|
+
}
|
|
1344
|
+
.grey {
|
|
1345
|
+
background-color: $grey !important;
|
|
1346
|
+
}
|
|
1313
1347
|
|
|
1314
|
-
.competence-color{
|
|
1348
|
+
.competence-color {
|
|
1315
1349
|
display: inline-block;
|
|
1316
1350
|
padding: 15px 0px 10px 35px;
|
|
1317
1351
|
position: relative;
|
|
@@ -1325,19 +1359,19 @@ body.evaluations {
|
|
|
1325
1359
|
@include transition(all 200ms ease);
|
|
1326
1360
|
background-color: transparent !important;
|
|
1327
1361
|
float: left;
|
|
1328
|
-
&:hover{
|
|
1362
|
+
&:hover {
|
|
1329
1363
|
border: solid 1px rgba(0, 0, 0, 0.3);
|
|
1330
1364
|
}
|
|
1331
|
-
&.opened{
|
|
1332
|
-
> .skills-text-overflow{
|
|
1333
|
-
&::before{
|
|
1365
|
+
&.opened {
|
|
1366
|
+
> .skills-text-overflow {
|
|
1367
|
+
&::before {
|
|
1334
1368
|
content: "\f0d7";
|
|
1335
1369
|
}
|
|
1336
1370
|
}
|
|
1337
1371
|
}
|
|
1338
|
-
> .skills-text-overflow{
|
|
1372
|
+
> .skills-text-overflow {
|
|
1339
1373
|
@include fonticon;
|
|
1340
|
-
&::before{
|
|
1374
|
+
&::before {
|
|
1341
1375
|
content: "\e823";
|
|
1342
1376
|
/*left: 0px;*/
|
|
1343
1377
|
/*position: absolute;*/
|
|
@@ -1348,7 +1382,7 @@ body.evaluations {
|
|
|
1348
1382
|
}
|
|
1349
1383
|
}
|
|
1350
1384
|
}
|
|
1351
|
-
.competence-color-header{
|
|
1385
|
+
.competence-color-header {
|
|
1352
1386
|
display: inline-block;
|
|
1353
1387
|
padding: 10px 50px 10px 0px;
|
|
1354
1388
|
position: relative;
|
|
@@ -1361,27 +1395,28 @@ body.evaluations {
|
|
|
1361
1395
|
@include transition(all 200ms ease);
|
|
1362
1396
|
background-color: transparent !important;
|
|
1363
1397
|
float: none;
|
|
1364
|
-
&:after{
|
|
1398
|
+
&:after {
|
|
1365
1399
|
top: 17px;
|
|
1366
1400
|
right: 65px;
|
|
1367
1401
|
}
|
|
1368
1402
|
}
|
|
1369
|
-
.competence-color,
|
|
1370
|
-
|
|
1371
|
-
|
|
1403
|
+
.competence-color,
|
|
1404
|
+
.competence-color-header {
|
|
1405
|
+
&:after {
|
|
1406
|
+
content: "";
|
|
1372
1407
|
width: 20px;
|
|
1373
1408
|
height: 20px;
|
|
1374
1409
|
border-radius: 50%;
|
|
1375
1410
|
display: inline-block;
|
|
1376
|
-
position: absolute
|
|
1411
|
+
position: absolute;
|
|
1377
1412
|
background-color: #000;
|
|
1378
1413
|
right: 20px;
|
|
1379
1414
|
top: 19px;
|
|
1380
1415
|
cursor: pointer;
|
|
1381
1416
|
@include transition(all 200ms ease);
|
|
1382
1417
|
}
|
|
1383
|
-
> span{
|
|
1384
|
-
&.competence-vignette{
|
|
1418
|
+
> span {
|
|
1419
|
+
&.competence-vignette {
|
|
1385
1420
|
padding: 0 50px 0 0;
|
|
1386
1421
|
position: relative;
|
|
1387
1422
|
cursor: pointer;
|
|
@@ -1394,57 +1429,57 @@ body.evaluations {
|
|
|
1394
1429
|
z-index: 2;
|
|
1395
1430
|
}
|
|
1396
1431
|
}
|
|
1397
|
-
&.grey{
|
|
1398
|
-
&:after{
|
|
1432
|
+
&.grey {
|
|
1433
|
+
&:after {
|
|
1399
1434
|
background-color: $grey !important;
|
|
1400
1435
|
}
|
|
1401
1436
|
}
|
|
1402
|
-
&.green{
|
|
1403
|
-
&:after{
|
|
1437
|
+
&.green {
|
|
1438
|
+
&:after {
|
|
1404
1439
|
background-color: $green !important;
|
|
1405
1440
|
}
|
|
1406
1441
|
}
|
|
1407
|
-
&.yellow{
|
|
1408
|
-
&:after{
|
|
1442
|
+
&.yellow {
|
|
1443
|
+
&:after {
|
|
1409
1444
|
background-color: $yellow !important;
|
|
1410
1445
|
}
|
|
1411
1446
|
}
|
|
1412
|
-
&.orange{
|
|
1413
|
-
&:after{
|
|
1447
|
+
&.orange {
|
|
1448
|
+
&:after {
|
|
1414
1449
|
background-color: $orange !important;
|
|
1415
1450
|
}
|
|
1416
1451
|
}
|
|
1417
|
-
&.red{
|
|
1418
|
-
&:after{
|
|
1452
|
+
&.red {
|
|
1453
|
+
&:after {
|
|
1419
1454
|
background-color: $red !important;
|
|
1420
1455
|
}
|
|
1421
1456
|
}
|
|
1422
1457
|
}
|
|
1423
|
-
.competence-text-overflow{
|
|
1458
|
+
.competence-text-overflow {
|
|
1424
1459
|
white-space: nowrap;
|
|
1425
1460
|
text-overflow: ellipsis;
|
|
1426
1461
|
overflow: hidden;
|
|
1427
1462
|
}
|
|
1428
|
-
.competence-eye{
|
|
1463
|
+
.competence-eye {
|
|
1429
1464
|
display: inline-block;
|
|
1430
1465
|
position: absolute;
|
|
1431
1466
|
top: 20px;
|
|
1432
1467
|
left: 5px;
|
|
1433
1468
|
cursor: zoom-in;
|
|
1434
|
-
&:hover{
|
|
1469
|
+
&:hover {
|
|
1435
1470
|
height: 100%;
|
|
1436
|
-
~ .competence-text-overflow{
|
|
1437
|
-
> .competence-nom{
|
|
1471
|
+
~ .competence-text-overflow {
|
|
1472
|
+
> .competence-nom {
|
|
1438
1473
|
white-space: normal;
|
|
1439
1474
|
}
|
|
1440
1475
|
}
|
|
1441
1476
|
}
|
|
1442
1477
|
}
|
|
1443
|
-
.rounded-color-vignette{
|
|
1478
|
+
.rounded-color-vignette {
|
|
1444
1479
|
top: 9px;
|
|
1445
1480
|
right: -10px;
|
|
1446
1481
|
}
|
|
1447
|
-
.rounded{
|
|
1482
|
+
.rounded {
|
|
1448
1483
|
width: 23px;
|
|
1449
1484
|
height: 23px;
|
|
1450
1485
|
border-radius: 50%;
|
|
@@ -1461,14 +1496,14 @@ body.evaluations {
|
|
|
1461
1496
|
outline: none;
|
|
1462
1497
|
}
|
|
1463
1498
|
}
|
|
1464
|
-
.competence-color-popup-close{
|
|
1499
|
+
.competence-color-popup-close {
|
|
1465
1500
|
position: absolute;
|
|
1466
1501
|
left: 3px;
|
|
1467
1502
|
top: 0;
|
|
1468
1503
|
text-align: center;
|
|
1469
1504
|
cursor: pointer;
|
|
1470
1505
|
}
|
|
1471
|
-
.tooltip-overlay{
|
|
1506
|
+
.tooltip-overlay {
|
|
1472
1507
|
position: absolute;
|
|
1473
1508
|
width: 43px;
|
|
1474
1509
|
height: 34px;
|
|
@@ -1476,7 +1511,7 @@ body.evaluations {
|
|
|
1476
1511
|
left: 0px;
|
|
1477
1512
|
z-index: 10;
|
|
1478
1513
|
}
|
|
1479
|
-
.competence-color-popup{
|
|
1514
|
+
.competence-color-popup {
|
|
1480
1515
|
position: absolute;
|
|
1481
1516
|
left: 0;
|
|
1482
1517
|
top: 400px;
|
|
@@ -1486,33 +1521,33 @@ body.evaluations {
|
|
|
1486
1521
|
width: 100%;
|
|
1487
1522
|
z-index: 2;
|
|
1488
1523
|
@include transition(all 200ms ease);
|
|
1489
|
-
&.opened{
|
|
1524
|
+
&.opened {
|
|
1490
1525
|
top: 0;
|
|
1491
1526
|
}
|
|
1492
|
-
h4{
|
|
1527
|
+
h4 {
|
|
1493
1528
|
margin: 0;
|
|
1494
1529
|
padding: 10px;
|
|
1495
1530
|
}
|
|
1496
1531
|
> h4 {
|
|
1497
|
-
&:first-child{
|
|
1498
|
-
border-bottom: solid 1px rgba(0,0,0,0.3);
|
|
1532
|
+
&:first-child {
|
|
1533
|
+
border-bottom: solid 1px rgba(0, 0, 0, 0.3);
|
|
1499
1534
|
}
|
|
1500
|
-
&:last-child{
|
|
1501
|
-
border-top: solid 1px rgba(0,0,0,0.3);
|
|
1535
|
+
&:last-child {
|
|
1536
|
+
border-top: solid 1px rgba(0, 0, 0, 0.3);
|
|
1502
1537
|
}
|
|
1503
1538
|
}
|
|
1504
1539
|
}
|
|
1505
|
-
.color-list{
|
|
1540
|
+
.color-list {
|
|
1506
1541
|
min-width: 200px;
|
|
1507
1542
|
max-width: 300px;
|
|
1508
1543
|
text-indent: 0;
|
|
1509
1544
|
text-align: center;
|
|
1510
|
-
ul{
|
|
1545
|
+
ul {
|
|
1511
1546
|
width: 90%;
|
|
1512
1547
|
padding: 15px 0;
|
|
1513
1548
|
margin: 0 0 0 5%;
|
|
1514
1549
|
height: 30px;
|
|
1515
|
-
li{
|
|
1550
|
+
li {
|
|
1516
1551
|
display: inline-block;
|
|
1517
1552
|
list-style-type: none;
|
|
1518
1553
|
width: 23%;
|
|
@@ -1520,8 +1555,8 @@ body.evaluations {
|
|
|
1520
1555
|
height: 30px;
|
|
1521
1556
|
cursor: pointer;
|
|
1522
1557
|
position: relative;
|
|
1523
|
-
.rounded{
|
|
1524
|
-
|
|
1558
|
+
.rounded {
|
|
1559
|
+
> .rounded {
|
|
1525
1560
|
position: absolute;
|
|
1526
1561
|
left: 0;
|
|
1527
1562
|
top: 0;
|
|
@@ -1530,9 +1565,9 @@ body.evaluations {
|
|
|
1530
1565
|
height: 23px;
|
|
1531
1566
|
}
|
|
1532
1567
|
}
|
|
1533
|
-
&:hover{
|
|
1534
|
-
.rounded{
|
|
1535
|
-
> .rounded{
|
|
1568
|
+
&:hover {
|
|
1569
|
+
.rounded {
|
|
1570
|
+
> .rounded {
|
|
1536
1571
|
opacity: 0.25;
|
|
1537
1572
|
transform: scale(1.4);
|
|
1538
1573
|
}
|
|
@@ -1541,10 +1576,10 @@ body.evaluations {
|
|
|
1541
1576
|
}
|
|
1542
1577
|
}
|
|
1543
1578
|
}
|
|
1544
|
-
.skills-h4{
|
|
1579
|
+
.skills-h4 {
|
|
1545
1580
|
margin: 0;
|
|
1546
1581
|
}
|
|
1547
|
-
.competence-nom{
|
|
1582
|
+
.competence-nom {
|
|
1548
1583
|
width: 95%;
|
|
1549
1584
|
display: block;
|
|
1550
1585
|
overflow: hidden;
|
|
@@ -1553,16 +1588,16 @@ body.evaluations {
|
|
|
1553
1588
|
/***
|
|
1554
1589
|
DIRECTIVE SKILLS LIST
|
|
1555
1590
|
***/
|
|
1556
|
-
.skills-list{
|
|
1591
|
+
.skills-list {
|
|
1557
1592
|
width: 90%;
|
|
1558
1593
|
margin-left: 5%;
|
|
1559
1594
|
list-style-type: none;
|
|
1560
1595
|
padding: 0;
|
|
1561
|
-
ul{
|
|
1596
|
+
ul {
|
|
1562
1597
|
list-style-type: none;
|
|
1563
1598
|
padding: 0;
|
|
1564
1599
|
}
|
|
1565
|
-
li{
|
|
1600
|
+
li {
|
|
1566
1601
|
position: relative;
|
|
1567
1602
|
}
|
|
1568
1603
|
}
|
|
@@ -1571,18 +1606,18 @@ body.evaluations {
|
|
|
1571
1606
|
list-style-type: none;
|
|
1572
1607
|
overflow-y: scroll;
|
|
1573
1608
|
height: 260px;
|
|
1574
|
-
ul{
|
|
1609
|
+
ul {
|
|
1575
1610
|
list-style-type: none;
|
|
1576
1611
|
overflow-y: hidden;
|
|
1577
1612
|
}
|
|
1578
|
-
li{
|
|
1613
|
+
li {
|
|
1579
1614
|
position: relative;
|
|
1580
1615
|
}
|
|
1581
1616
|
}
|
|
1582
1617
|
|
|
1583
|
-
@media screen and (min-width: $tablette){
|
|
1584
|
-
.skills-list{
|
|
1585
|
-
ul{
|
|
1618
|
+
@media screen and (min-width: $tablette) {
|
|
1619
|
+
.skills-list {
|
|
1620
|
+
ul {
|
|
1586
1621
|
&:nth-child(2) {
|
|
1587
1622
|
margin-left: 20px;
|
|
1588
1623
|
}
|
|
@@ -1590,52 +1625,52 @@ body.evaluations {
|
|
|
1590
1625
|
}
|
|
1591
1626
|
}
|
|
1592
1627
|
|
|
1593
|
-
.skills-header{
|
|
1628
|
+
.skills-header {
|
|
1594
1629
|
cursor: pointer;
|
|
1595
1630
|
@include transition(all 200ms ease);
|
|
1596
|
-
&.skill-50{
|
|
1631
|
+
&.skill-50 {
|
|
1597
1632
|
height: 50px;
|
|
1598
1633
|
overflow: hidden;
|
|
1599
1634
|
}
|
|
1600
|
-
&.skill-30{
|
|
1635
|
+
&.skill-30 {
|
|
1601
1636
|
height: 30px;
|
|
1602
1637
|
overflow: hidden;
|
|
1603
1638
|
}
|
|
1604
|
-
&.skill-40{
|
|
1639
|
+
&.skill-40 {
|
|
1605
1640
|
height: 40px;
|
|
1606
1641
|
overflow: hidden;
|
|
1607
1642
|
}
|
|
1608
|
-
&.skill-45{
|
|
1643
|
+
&.skill-45 {
|
|
1609
1644
|
height: 45px;
|
|
1610
1645
|
overflow: hidden;
|
|
1611
1646
|
}
|
|
1612
|
-
&.opened{
|
|
1647
|
+
&.opened {
|
|
1613
1648
|
height: auto;
|
|
1614
1649
|
overflow: visible;
|
|
1615
1650
|
@include transition(all 200ms ease);
|
|
1616
|
-
> .skills-text-overflow{
|
|
1651
|
+
> .skills-text-overflow {
|
|
1617
1652
|
i.skills-open-icon::before {
|
|
1618
1653
|
content: "\e841";
|
|
1619
1654
|
}
|
|
1620
1655
|
}
|
|
1621
1656
|
}
|
|
1622
|
-
> span{
|
|
1657
|
+
> span {
|
|
1623
1658
|
padding: 10px 35px 10px 50px;
|
|
1624
1659
|
border-bottom: solid 1px #e0e0e0;
|
|
1625
1660
|
display: block;
|
|
1626
1661
|
cursor: pointer;
|
|
1627
|
-
&.skills-teach{
|
|
1662
|
+
&.skills-teach {
|
|
1628
1663
|
padding: 10px 35px 10px 20px;
|
|
1629
1664
|
|
|
1630
|
-
> span{
|
|
1665
|
+
> span {
|
|
1631
1666
|
margin-bottom: 5px;
|
|
1632
1667
|
}
|
|
1633
1668
|
}
|
|
1634
1669
|
}
|
|
1635
|
-
> .skills-text-overflow{
|
|
1670
|
+
> .skills-text-overflow {
|
|
1636
1671
|
i.skills-open-icon {
|
|
1637
1672
|
@include fonticon;
|
|
1638
|
-
&::before{
|
|
1673
|
+
&::before {
|
|
1639
1674
|
content: "\e823";
|
|
1640
1675
|
left: 0;
|
|
1641
1676
|
position: absolute;
|
|
@@ -1646,7 +1681,7 @@ body.evaluations {
|
|
|
1646
1681
|
}
|
|
1647
1682
|
}
|
|
1648
1683
|
|
|
1649
|
-
.skills-text-overflow{
|
|
1684
|
+
.skills-text-overflow {
|
|
1650
1685
|
text-overflow: ellipsis;
|
|
1651
1686
|
white-space: nowrap;
|
|
1652
1687
|
overflow: hidden;
|
|
@@ -1654,33 +1689,33 @@ body.evaluations {
|
|
|
1654
1689
|
@include transition(all 200ms ease);
|
|
1655
1690
|
}
|
|
1656
1691
|
|
|
1657
|
-
.skills-list-connaissance{
|
|
1692
|
+
.skills-list-connaissance {
|
|
1658
1693
|
margin: 10px 5px 0 45px;
|
|
1659
1694
|
cursor: pointer;
|
|
1660
1695
|
padding: 0 0 0 15px;
|
|
1661
1696
|
}
|
|
1662
1697
|
|
|
1663
|
-
.skills-list-proposition{
|
|
1698
|
+
.skills-list-proposition {
|
|
1664
1699
|
margin: 10px 5px 0 5px;
|
|
1665
1700
|
cursor: pointer;
|
|
1666
1701
|
padding: 0 0 0 5px;
|
|
1667
1702
|
}
|
|
1668
1703
|
|
|
1669
1704
|
.skills-list-proposition:hover {
|
|
1670
|
-
color: #
|
|
1705
|
+
color: #ff8500;
|
|
1671
1706
|
}
|
|
1672
1707
|
|
|
1673
|
-
.skills-checkbox{
|
|
1708
|
+
.skills-checkbox {
|
|
1674
1709
|
left: 30px;
|
|
1675
1710
|
position: absolute;
|
|
1676
1711
|
top: 9px;
|
|
1677
1712
|
}
|
|
1678
1713
|
|
|
1679
|
-
.skills-headers-checkbox{
|
|
1714
|
+
.skills-headers-checkbox {
|
|
1680
1715
|
left: 20px;
|
|
1681
1716
|
}
|
|
1682
1717
|
|
|
1683
|
-
.skill-connaissance-eye{
|
|
1718
|
+
.skill-connaissance-eye {
|
|
1684
1719
|
height: 100%;
|
|
1685
1720
|
display: inline-block;
|
|
1686
1721
|
position: absolute;
|
|
@@ -1688,19 +1723,19 @@ body.evaluations {
|
|
|
1688
1723
|
right: 0px;
|
|
1689
1724
|
color: $grey;
|
|
1690
1725
|
cursor: zoom-in;
|
|
1691
|
-
@include transition(all 200ms ease)
|
|
1726
|
+
@include transition(all 200ms ease);
|
|
1692
1727
|
&:before {
|
|
1693
1728
|
padding: 6px;
|
|
1694
1729
|
}
|
|
1695
|
-
&:hover{
|
|
1696
|
-
color: rgba(0,0,0,1);
|
|
1697
|
-
~ .skills-text-overflow{
|
|
1730
|
+
&:hover {
|
|
1731
|
+
color: rgba(0, 0, 0, 1);
|
|
1732
|
+
~ .skills-text-overflow {
|
|
1698
1733
|
white-space: normal;
|
|
1699
1734
|
}
|
|
1700
1735
|
}
|
|
1701
1736
|
}
|
|
1702
1737
|
|
|
1703
|
-
.skills-label{
|
|
1738
|
+
.skills-label {
|
|
1704
1739
|
height: 100%;
|
|
1705
1740
|
width: 100%;
|
|
1706
1741
|
display: inline-block;
|
|
@@ -1709,7 +1744,7 @@ body.evaluations {
|
|
|
1709
1744
|
/**
|
|
1710
1745
|
DIRECTIVE SKILLS COLOR PAGE
|
|
1711
1746
|
**/
|
|
1712
|
-
.skills-color-page{
|
|
1747
|
+
.skills-color-page {
|
|
1713
1748
|
list-style-type: none;
|
|
1714
1749
|
//float: right;
|
|
1715
1750
|
padding: 0;
|
|
@@ -1719,17 +1754,18 @@ body.evaluations {
|
|
|
1719
1754
|
//top: 68px !important;
|
|
1720
1755
|
//margin-top: 5px !important;
|
|
1721
1756
|
z-index: 10;
|
|
1722
|
-
li{
|
|
1757
|
+
li {
|
|
1723
1758
|
display: inline-block;
|
|
1724
1759
|
height: 34px;
|
|
1725
1760
|
width: 43px;
|
|
1726
1761
|
position: relative;
|
|
1727
|
-
> .rounded,
|
|
1762
|
+
> .rounded,
|
|
1763
|
+
> .rounded > .rounded {
|
|
1728
1764
|
position: absolute;
|
|
1729
1765
|
left: 0;
|
|
1730
|
-
top:0;
|
|
1766
|
+
top: 0;
|
|
1731
1767
|
border: none;
|
|
1732
|
-
box-shadow: 0 1px 1px rgba(0,0,0,0.4);
|
|
1768
|
+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
|
|
1733
1769
|
}
|
|
1734
1770
|
}
|
|
1735
1771
|
|
|
@@ -1742,14 +1778,14 @@ body.evaluations {
|
|
|
1742
1778
|
}
|
|
1743
1779
|
}
|
|
1744
1780
|
.grey-skill-page {
|
|
1745
|
-
background-color: $grey!important;
|
|
1781
|
+
background-color: $grey !important;
|
|
1746
1782
|
}
|
|
1747
1783
|
|
|
1748
1784
|
.skills-color-column {
|
|
1749
1785
|
list-style-type: none;
|
|
1750
1786
|
padding: 0 0 0 9px !important;
|
|
1751
1787
|
margin: 0;
|
|
1752
|
-
li{
|
|
1788
|
+
li {
|
|
1753
1789
|
display: inline-block;
|
|
1754
1790
|
|
|
1755
1791
|
label.checkbox {
|
|
@@ -1765,7 +1801,7 @@ body.evaluations {
|
|
|
1765
1801
|
transform: scale(1.3);
|
|
1766
1802
|
box-shadow: 1px 2px 3px grey;
|
|
1767
1803
|
}
|
|
1768
|
-
.skills-eleve-list{
|
|
1804
|
+
.skills-eleve-list {
|
|
1769
1805
|
list-style-type: none;
|
|
1770
1806
|
padding: 0;
|
|
1771
1807
|
margin: 3px;
|
|
@@ -1775,9 +1811,9 @@ body.evaluations {
|
|
|
1775
1811
|
height: 20px;
|
|
1776
1812
|
}
|
|
1777
1813
|
}
|
|
1778
|
-
.devoir-icons-view{
|
|
1814
|
+
.devoir-icons-view {
|
|
1779
1815
|
text-align: center;
|
|
1780
|
-
.devoir-icons-element{
|
|
1816
|
+
.devoir-icons-element {
|
|
1781
1817
|
display: inline-block;
|
|
1782
1818
|
float: none;
|
|
1783
1819
|
transition: all 0.2s ease-in-out;
|
|
@@ -1787,13 +1823,14 @@ body.evaluations {
|
|
|
1787
1823
|
border-radius: 7px;
|
|
1788
1824
|
min-width: 280px;
|
|
1789
1825
|
max-width: 280px;
|
|
1790
|
-
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 1px 2px rgba(0,0,0,0.24);
|
|
1791
|
-
&:hover{
|
|
1792
|
-
box-shadow: 0 10px 20px rgba(0,0,0,0.19),
|
|
1826
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 1px 2px rgba(0, 0, 0, 0.24);
|
|
1827
|
+
&:hover {
|
|
1828
|
+
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19),
|
|
1829
|
+
0 6px 6px rgba(0, 0, 0, 0.23);
|
|
1793
1830
|
}
|
|
1794
1831
|
.devoir-icons-container {
|
|
1795
|
-
background: $white none repeat scroll 0 0
|
|
1796
|
-
border
|
|
1832
|
+
background: $white none repeat scroll 0 0;
|
|
1833
|
+
border: 1px solid transparent;
|
|
1797
1834
|
box-sizing: border-box;
|
|
1798
1835
|
display: block;
|
|
1799
1836
|
transition: all 0.2s ease-in-out;
|
|
@@ -1810,33 +1847,35 @@ body.evaluations {
|
|
|
1810
1847
|
}
|
|
1811
1848
|
}
|
|
1812
1849
|
}
|
|
1813
|
-
.devoir-icons-name{
|
|
1850
|
+
.devoir-icons-name {
|
|
1814
1851
|
font-weight: 300;
|
|
1815
1852
|
font-size: 20px;
|
|
1816
1853
|
}
|
|
1817
|
-
.devoir-icons-description{
|
|
1854
|
+
.devoir-icons-description {
|
|
1818
1855
|
padding-top: 16px;
|
|
1819
1856
|
padding-bottom: 16px;
|
|
1820
1857
|
min-height: 23px;
|
|
1821
1858
|
font-style: italic;
|
|
1822
1859
|
}
|
|
1823
|
-
.devoir-icons-checkbox{
|
|
1860
|
+
.devoir-icons-checkbox {
|
|
1824
1861
|
top: 15px;
|
|
1825
1862
|
position: absolute;
|
|
1826
1863
|
right: 10px;
|
|
1827
1864
|
z-index: 2;
|
|
1828
|
-
> footer{
|
|
1865
|
+
> footer {
|
|
1829
1866
|
font-weight: 500;
|
|
1830
|
-
> .devoir-icons-coef{
|
|
1867
|
+
> .devoir-icons-coef {
|
|
1831
1868
|
float: right;
|
|
1832
1869
|
}
|
|
1833
1870
|
}
|
|
1834
|
-
> header,
|
|
1871
|
+
> header,
|
|
1872
|
+
> footer {
|
|
1835
1873
|
display: block;
|
|
1836
1874
|
width: 100%;
|
|
1837
1875
|
min-height: 20px;
|
|
1838
1876
|
padding: 5px 0;
|
|
1839
|
-
> .devoir-icons-date,
|
|
1877
|
+
> .devoir-icons-date,
|
|
1878
|
+
> .devoir-icons-class {
|
|
1840
1879
|
float: left;
|
|
1841
1880
|
}
|
|
1842
1881
|
}
|
|
@@ -1844,14 +1883,14 @@ body.evaluations {
|
|
|
1844
1883
|
.releve-coef {
|
|
1845
1884
|
display: block;
|
|
1846
1885
|
}
|
|
1847
|
-
.nav-devoirs{
|
|
1886
|
+
.nav-devoirs {
|
|
1848
1887
|
//position: fixed !important;
|
|
1849
1888
|
width: 96% !important;
|
|
1850
1889
|
//height: 146px;
|
|
1851
1890
|
background-color: $lightest-grey;
|
|
1852
1891
|
z-index: 3;
|
|
1853
1892
|
//margin-bottom: 25px;
|
|
1854
|
-
top:0;
|
|
1893
|
+
top: 0;
|
|
1855
1894
|
button {
|
|
1856
1895
|
position: absolute;
|
|
1857
1896
|
bottom: 21px;
|
|
@@ -1859,15 +1898,15 @@ body.evaluations {
|
|
|
1859
1898
|
margin: 0;
|
|
1860
1899
|
}
|
|
1861
1900
|
}
|
|
1862
|
-
.button-devoir{
|
|
1901
|
+
.button-devoir {
|
|
1863
1902
|
margin-left: 0;
|
|
1864
1903
|
}
|
|
1865
|
-
.text-overflow{
|
|
1904
|
+
.text-overflow {
|
|
1866
1905
|
overflow: hidden;
|
|
1867
1906
|
white-space: nowrap;
|
|
1868
1907
|
text-overflow: ellipsis;
|
|
1869
1908
|
}
|
|
1870
|
-
.devoir-percent{
|
|
1909
|
+
.devoir-percent {
|
|
1871
1910
|
background-color: $cyan;
|
|
1872
1911
|
height: 3px;
|
|
1873
1912
|
display: block;
|
|
@@ -1875,29 +1914,29 @@ body.evaluations {
|
|
|
1875
1914
|
top: 0;
|
|
1876
1915
|
left: 0;
|
|
1877
1916
|
}
|
|
1878
|
-
.header-releve{
|
|
1879
|
-
nav{
|
|
1917
|
+
.header-releve {
|
|
1918
|
+
nav {
|
|
1880
1919
|
margin-right: 50px;
|
|
1881
|
-
.button{
|
|
1920
|
+
.button {
|
|
1882
1921
|
margin-left: 10px;
|
|
1883
1922
|
}
|
|
1884
1923
|
}
|
|
1885
1924
|
}
|
|
1886
|
-
.releve-header-content{
|
|
1925
|
+
.releve-header-content {
|
|
1887
1926
|
width: 95%;
|
|
1888
1927
|
padding-left: 0;
|
|
1889
1928
|
margin-left: 0;
|
|
1890
1929
|
left: 0;
|
|
1891
1930
|
}
|
|
1892
|
-
.nav-buttons{
|
|
1931
|
+
.nav-buttons {
|
|
1893
1932
|
width: 100%;
|
|
1894
|
-
> button{
|
|
1933
|
+
> button {
|
|
1895
1934
|
width: 100%;
|
|
1896
1935
|
top: 20px;
|
|
1897
1936
|
}
|
|
1898
1937
|
}
|
|
1899
|
-
.header-notes{
|
|
1900
|
-
> h2{
|
|
1938
|
+
.header-notes {
|
|
1939
|
+
> h2 {
|
|
1901
1940
|
text-align: left;
|
|
1902
1941
|
margin: 0;
|
|
1903
1942
|
display: block;
|
|
@@ -1910,11 +1949,11 @@ body.evaluations {
|
|
|
1910
1949
|
display: inline-block;
|
|
1911
1950
|
margin-left: 15px;
|
|
1912
1951
|
margin-top: 30px;
|
|
1913
|
-
> h1{
|
|
1952
|
+
> h1 {
|
|
1914
1953
|
font-size: 25px;
|
|
1915
1954
|
}
|
|
1916
1955
|
}
|
|
1917
|
-
.switch-view-buttons{
|
|
1956
|
+
.switch-view-buttons {
|
|
1918
1957
|
position: absolute !important;
|
|
1919
1958
|
bottom: 20px;
|
|
1920
1959
|
right: 1%;
|
|
@@ -1927,27 +1966,27 @@ body.evaluations {
|
|
|
1927
1966
|
//.list-devoirs{
|
|
1928
1967
|
// margin-top: 60px;
|
|
1929
1968
|
//}
|
|
1930
|
-
.notes-help{
|
|
1969
|
+
.notes-help {
|
|
1931
1970
|
.legend {
|
|
1932
1971
|
.rounded {
|
|
1933
1972
|
position: absolute;
|
|
1934
1973
|
left: -15px;
|
|
1935
1974
|
}
|
|
1936
|
-
> ul{
|
|
1975
|
+
> ul {
|
|
1937
1976
|
list-style-type: none;
|
|
1938
1977
|
margin: 0;
|
|
1939
|
-
> li{
|
|
1978
|
+
> li {
|
|
1940
1979
|
position: relative;
|
|
1941
1980
|
text-indent: 15px;
|
|
1942
1981
|
margin: 15px;
|
|
1943
|
-
> .rounded{
|
|
1982
|
+
> .rounded {
|
|
1944
1983
|
position: absolute;
|
|
1945
1984
|
left: -15px;
|
|
1946
|
-
text-align: center!important;
|
|
1985
|
+
text-align: center !important;
|
|
1947
1986
|
text-indent: 0px !important;
|
|
1948
|
-
&::before{
|
|
1987
|
+
&::before {
|
|
1949
1988
|
/*content: counter(step-counter)".";*/
|
|
1950
|
-
content
|
|
1989
|
+
content: " ";
|
|
1951
1990
|
font-weight: 400;
|
|
1952
1991
|
color: #444;
|
|
1953
1992
|
opacity: 0.8;
|
|
@@ -1960,17 +1999,17 @@ body.evaluations {
|
|
|
1960
1999
|
}
|
|
1961
2000
|
}
|
|
1962
2001
|
|
|
1963
|
-
> .eleven{
|
|
2002
|
+
> .eleven {
|
|
1964
2003
|
margin-left: 4%;
|
|
1965
|
-
> h4{
|
|
1966
|
-
border-bottom: solid 1px rgba(0,0,0,0.15);
|
|
2004
|
+
> h4 {
|
|
2005
|
+
border-bottom: solid 1px rgba(0, 0, 0, 0.15);
|
|
1967
2006
|
font-weight: 400;
|
|
1968
2007
|
text-indent: 15px;
|
|
1969
2008
|
}
|
|
1970
2009
|
}
|
|
1971
2010
|
}
|
|
1972
2011
|
|
|
1973
|
-
@media screen and(min-width: $tablette) {
|
|
2012
|
+
@media screen and (min-width: $tablette) {
|
|
1974
2013
|
.addRemplacement {
|
|
1975
2014
|
.addRemplacementTable {
|
|
1976
2015
|
padding: 15px 40px;
|
|
@@ -1980,17 +2019,16 @@ body.evaluations {
|
|
|
1980
2019
|
text-align-last: right;
|
|
1981
2020
|
padding-right: 10px;
|
|
1982
2021
|
padding-top: 10px;
|
|
1983
|
-
|
|
1984
2022
|
}
|
|
1985
2023
|
}
|
|
1986
2024
|
|
|
1987
2025
|
.listRemplacementsTable {
|
|
1988
|
-
margin:auto;
|
|
2026
|
+
margin: auto;
|
|
1989
2027
|
}
|
|
1990
2028
|
}
|
|
1991
2029
|
}
|
|
1992
2030
|
|
|
1993
|
-
@media screen and(min-width: $tablette) {
|
|
2031
|
+
@media screen and (min-width: $tablette) {
|
|
1994
2032
|
.addDevoir {
|
|
1995
2033
|
.skills-list {
|
|
1996
2034
|
margin: 0 0 0 5% !important;
|
|
@@ -2014,8 +2052,7 @@ body.evaluations {
|
|
|
2014
2052
|
}
|
|
2015
2053
|
}
|
|
2016
2054
|
|
|
2017
|
-
|
|
2018
|
-
.addDevoirTable{
|
|
2055
|
+
.addDevoirTable {
|
|
2019
2056
|
padding: 15px 40px;
|
|
2020
2057
|
|
|
2021
2058
|
.addDevoirTable__libelle {
|
|
@@ -2024,21 +2061,19 @@ body.evaluations {
|
|
|
2024
2061
|
padding-right: 10px;
|
|
2025
2062
|
padding-top: 10px;
|
|
2026
2063
|
}
|
|
2027
|
-
|
|
2028
2064
|
}
|
|
2029
|
-
|
|
2030
2065
|
}
|
|
2031
2066
|
|
|
2032
|
-
.button-add-devoir{
|
|
2067
|
+
.button-add-devoir {
|
|
2033
2068
|
margin-left: 10px !important;
|
|
2034
2069
|
height: auto !important;
|
|
2035
2070
|
}
|
|
2036
|
-
.button-evaluation-devoir{
|
|
2037
|
-
flex:auto;
|
|
2071
|
+
.button-evaluation-devoir {
|
|
2072
|
+
flex: auto;
|
|
2038
2073
|
padding: 8px 0px 10px !important;
|
|
2039
2074
|
z-index: 11 !important;
|
|
2040
2075
|
}
|
|
2041
|
-
.div-buttons-evaluation-devoir{
|
|
2076
|
+
.div-buttons-evaluation-devoir {
|
|
2042
2077
|
display: flex;
|
|
2043
2078
|
width: 18%;
|
|
2044
2079
|
right: -20px;
|
|
@@ -2091,36 +2126,36 @@ body.evaluations {
|
|
|
2091
2126
|
border-radius: 10%;
|
|
2092
2127
|
}
|
|
2093
2128
|
|
|
2094
|
-
.columns-popup-items{
|
|
2129
|
+
.columns-popup-items {
|
|
2095
2130
|
margin: 10px;
|
|
2096
2131
|
}
|
|
2097
2132
|
|
|
2098
|
-
.checkbox-grid{
|
|
2133
|
+
.checkbox-grid {
|
|
2099
2134
|
display: grid;
|
|
2100
2135
|
}
|
|
2101
|
-
.nbr-Cartouche{
|
|
2136
|
+
.nbr-Cartouche {
|
|
2102
2137
|
margin-left: 3%;
|
|
2103
2138
|
text-align: center;
|
|
2104
2139
|
padding: 3px;
|
|
2105
2140
|
}
|
|
2106
|
-
.option-eleve{
|
|
2141
|
+
.option-eleve {
|
|
2107
2142
|
padding-top: 3px;
|
|
2108
|
-
> span{
|
|
2143
|
+
> span {
|
|
2109
2144
|
margin-top: auto;
|
|
2110
2145
|
margin-left: 2%;
|
|
2111
2146
|
position: absolute;
|
|
2112
2147
|
margin-bottom: auto;
|
|
2113
2148
|
}
|
|
2114
2149
|
}
|
|
2115
|
-
.additional-options{
|
|
2150
|
+
.additional-options {
|
|
2116
2151
|
border-left: 2px solid;
|
|
2117
2152
|
margin-left: 4%;
|
|
2118
2153
|
margin-top: 3%;
|
|
2119
2154
|
padding: 1.5%;
|
|
2120
2155
|
animation-duration: 1s;
|
|
2121
2156
|
background-image: linear-gradient(to right, #f2f2f2, #fff);
|
|
2122
|
-
>div{
|
|
2123
|
-
margin:6px;
|
|
2157
|
+
> div {
|
|
2158
|
+
margin: 6px;
|
|
2124
2159
|
}
|
|
2125
2160
|
//animation-name: slidein;
|
|
2126
2161
|
}
|
|
@@ -2134,13 +2169,13 @@ body.evaluations {
|
|
|
2134
2169
|
font-size: 100%;
|
|
2135
2170
|
}
|
|
2136
2171
|
}
|
|
2137
|
-
.solid-bottom{
|
|
2172
|
+
.solid-bottom {
|
|
2138
2173
|
border-bottom: solid 2px black;
|
|
2139
2174
|
}
|
|
2140
2175
|
|
|
2141
2176
|
.button-edit-devoir-not-fixed {
|
|
2142
2177
|
margin-top: -18px !important;
|
|
2143
|
-
flex:auto;
|
|
2178
|
+
flex: auto;
|
|
2144
2179
|
padding: 8px 0px 10px !important;
|
|
2145
2180
|
}
|
|
2146
2181
|
|
|
@@ -2161,7 +2196,7 @@ body.evaluations {
|
|
|
2161
2196
|
display: inline-block;
|
|
2162
2197
|
}
|
|
2163
2198
|
|
|
2164
|
-
.devoir-skills-list{
|
|
2199
|
+
.devoir-skills-list {
|
|
2165
2200
|
padding: 0;
|
|
2166
2201
|
list-style-type: none;
|
|
2167
2202
|
|
|
@@ -2170,11 +2205,11 @@ body.evaluations {
|
|
|
2170
2205
|
}
|
|
2171
2206
|
}
|
|
2172
2207
|
//Relevé périodique lightbox par élève Acquis scolaire, suivi élève, historique
|
|
2173
|
-
.acquis_scolaire{
|
|
2174
|
-
span{
|
|
2208
|
+
.acquis_scolaire {
|
|
2209
|
+
span {
|
|
2175
2210
|
font-size: 14px;
|
|
2176
2211
|
}
|
|
2177
|
-
.moyenne_pos{
|
|
2212
|
+
.moyenne_pos {
|
|
2178
2213
|
margin-left: 20px;
|
|
2179
2214
|
}
|
|
2180
2215
|
}
|
|
@@ -2204,17 +2239,17 @@ body.evaluations {
|
|
|
2204
2239
|
|
|
2205
2240
|
.header {
|
|
2206
2241
|
h2 {
|
|
2207
|
-
color
|
|
2242
|
+
color: $grey;
|
|
2208
2243
|
margin-top: 0;
|
|
2209
2244
|
}
|
|
2210
2245
|
}
|
|
2211
2246
|
}
|
|
2212
2247
|
|
|
2213
|
-
.criterion-fixed{
|
|
2248
|
+
.criterion-fixed {
|
|
2214
2249
|
position: fixed !important;
|
|
2215
2250
|
top: 144px !important;
|
|
2216
2251
|
}
|
|
2217
|
-
.fixed-container{
|
|
2252
|
+
.fixed-container {
|
|
2218
2253
|
left: 17.66% !important;
|
|
2219
2254
|
}
|
|
2220
2255
|
.devoir-with-comp {
|
|
@@ -2226,80 +2261,80 @@ body.evaluations {
|
|
|
2226
2261
|
padding: 0 10px;
|
|
2227
2262
|
}
|
|
2228
2263
|
|
|
2229
|
-
i.show-chart{
|
|
2264
|
+
i.show-chart {
|
|
2230
2265
|
@include fonticon;
|
|
2231
2266
|
font-size: 24px;
|
|
2232
2267
|
opacity: 0.2;
|
|
2233
2268
|
|
|
2234
|
-
&::after{
|
|
2235
|
-
content:"\e810";
|
|
2269
|
+
&::after {
|
|
2270
|
+
content: "\e810";
|
|
2236
2271
|
}
|
|
2237
2272
|
|
|
2238
|
-
&.selected{
|
|
2273
|
+
&.selected {
|
|
2239
2274
|
opacity: 0.6;
|
|
2240
2275
|
}
|
|
2241
2276
|
}
|
|
2242
2277
|
|
|
2243
|
-
i.show-cards{
|
|
2278
|
+
i.show-cards {
|
|
2244
2279
|
@include fonticon;
|
|
2245
2280
|
opacity: 0.2;
|
|
2246
2281
|
|
|
2247
|
-
&::after{
|
|
2248
|
-
content:"\e837";
|
|
2282
|
+
&::after {
|
|
2283
|
+
content: "\e837";
|
|
2249
2284
|
}
|
|
2250
2285
|
|
|
2251
|
-
&.selected{
|
|
2286
|
+
&.selected {
|
|
2252
2287
|
opacity: 0.6;
|
|
2253
2288
|
}
|
|
2254
2289
|
}
|
|
2255
2290
|
|
|
2256
|
-
i.show-suivi-eleve{
|
|
2291
|
+
i.show-suivi-eleve {
|
|
2257
2292
|
@include fonticon;
|
|
2258
2293
|
font-size: 24px;
|
|
2259
2294
|
opacity: 0.2;
|
|
2260
2295
|
|
|
2261
|
-
&::after{
|
|
2262
|
-
content:"\e824";
|
|
2296
|
+
&::after {
|
|
2297
|
+
content: "\e824";
|
|
2263
2298
|
}
|
|
2264
2299
|
|
|
2265
|
-
&.selected{
|
|
2300
|
+
&.selected {
|
|
2266
2301
|
opacity: 0.6;
|
|
2267
2302
|
}
|
|
2268
2303
|
}
|
|
2269
2304
|
|
|
2270
|
-
i.show-bilan-eleve{
|
|
2305
|
+
i.show-bilan-eleve {
|
|
2271
2306
|
@include fonticon;
|
|
2272
2307
|
font-size: 24px;
|
|
2273
2308
|
opacity: 0.2;
|
|
2274
2309
|
|
|
2275
|
-
&::after{
|
|
2276
|
-
content:"\e8b8";
|
|
2310
|
+
&::after {
|
|
2311
|
+
content: "\e8b8";
|
|
2277
2312
|
}
|
|
2278
2313
|
|
|
2279
|
-
&.selected{
|
|
2314
|
+
&.selected {
|
|
2280
2315
|
opacity: 0.6;
|
|
2281
2316
|
}
|
|
2282
2317
|
}
|
|
2283
2318
|
|
|
2284
|
-
i.show-bilan-fin-cycle{
|
|
2319
|
+
i.show-bilan-fin-cycle {
|
|
2285
2320
|
@include fonticon;
|
|
2286
2321
|
font-size: 24px;
|
|
2287
2322
|
opacity: 0.2;
|
|
2288
2323
|
|
|
2289
|
-
&::after{
|
|
2290
|
-
content:"\e8b3";
|
|
2324
|
+
&::after {
|
|
2325
|
+
content: "\e8b3";
|
|
2291
2326
|
}
|
|
2292
2327
|
|
|
2293
|
-
&.selected{
|
|
2328
|
+
&.selected {
|
|
2294
2329
|
opacity: 0.6;
|
|
2295
2330
|
}
|
|
2296
2331
|
}
|
|
2297
2332
|
|
|
2298
|
-
i.icon-back{
|
|
2333
|
+
i.icon-back {
|
|
2299
2334
|
@include fonticon;
|
|
2300
2335
|
|
|
2301
|
-
&::after{
|
|
2302
|
-
content:"\e84c";
|
|
2336
|
+
&::after {
|
|
2337
|
+
content: "\e84c";
|
|
2303
2338
|
}
|
|
2304
2339
|
|
|
2305
2340
|
margin-right: 15px;
|
|
@@ -2309,7 +2344,7 @@ body.evaluations {
|
|
|
2309
2344
|
@include fonticon;
|
|
2310
2345
|
|
|
2311
2346
|
&::after {
|
|
2312
|
-
content
|
|
2347
|
+
content: "\e817";
|
|
2313
2348
|
}
|
|
2314
2349
|
}
|
|
2315
2350
|
|
|
@@ -2317,7 +2352,7 @@ body.evaluations {
|
|
|
2317
2352
|
@include fonticon;
|
|
2318
2353
|
|
|
2319
2354
|
&::after {
|
|
2320
|
-
content
|
|
2355
|
+
content: "\e874";
|
|
2321
2356
|
}
|
|
2322
2357
|
}
|
|
2323
2358
|
|
|
@@ -2347,7 +2382,7 @@ body.evaluations {
|
|
|
2347
2382
|
}
|
|
2348
2383
|
|
|
2349
2384
|
.show-appreciation {
|
|
2350
|
-
height:2em;
|
|
2385
|
+
height: 2em;
|
|
2351
2386
|
}
|
|
2352
2387
|
|
|
2353
2388
|
.hide-appreciation {
|
|
@@ -2382,7 +2417,7 @@ body.evaluations {
|
|
|
2382
2417
|
}
|
|
2383
2418
|
}
|
|
2384
2419
|
}
|
|
2385
|
-
.clear-none{
|
|
2420
|
+
.clear-none {
|
|
2386
2421
|
clear: none !important;
|
|
2387
2422
|
}
|
|
2388
2423
|
|
|
@@ -2390,7 +2425,7 @@ body.evaluations {
|
|
|
2390
2425
|
margin: 0 auto;
|
|
2391
2426
|
padding: 0 15px;
|
|
2392
2427
|
box-sizing: border-box;
|
|
2393
|
-
overflow
|
|
2428
|
+
overflow: hidden;
|
|
2394
2429
|
|
|
2395
2430
|
.suivi-eleve-ctl {
|
|
2396
2431
|
background-color: $white;
|
|
@@ -2409,23 +2444,23 @@ body.evaluations {
|
|
|
2409
2444
|
width: 200%;
|
|
2410
2445
|
}
|
|
2411
2446
|
|
|
2412
|
-
i.show-chart{
|
|
2447
|
+
i.show-chart {
|
|
2413
2448
|
margin-right: 15px;
|
|
2414
2449
|
}
|
|
2415
2450
|
|
|
2416
|
-
i.show-suivi-eleve{
|
|
2451
|
+
i.show-suivi-eleve {
|
|
2417
2452
|
margin-right: 15px;
|
|
2418
2453
|
}
|
|
2419
2454
|
|
|
2420
|
-
i.show-bilan-eleve{
|
|
2455
|
+
i.show-bilan-eleve {
|
|
2421
2456
|
margin-right: 15px;
|
|
2422
2457
|
}
|
|
2423
2458
|
|
|
2424
|
-
i.show-bilan-fin-cycle{
|
|
2459
|
+
i.show-bilan-fin-cycle {
|
|
2425
2460
|
margin-right: 15px;
|
|
2426
2461
|
}
|
|
2427
2462
|
|
|
2428
|
-
i.icon-back{
|
|
2463
|
+
i.icon-back {
|
|
2429
2464
|
font-size: 24px;
|
|
2430
2465
|
}
|
|
2431
2466
|
|
|
@@ -2433,28 +2468,29 @@ body.evaluations {
|
|
|
2433
2468
|
@include fonticon;
|
|
2434
2469
|
|
|
2435
2470
|
&::before {
|
|
2436
|
-
content
|
|
2471
|
+
content: "\e8be";
|
|
2437
2472
|
}
|
|
2438
2473
|
}
|
|
2439
2474
|
|
|
2440
|
-
.suivi-eleve,
|
|
2475
|
+
.suivi-eleve,
|
|
2476
|
+
.detail-competence {
|
|
2441
2477
|
float: left;
|
|
2442
2478
|
}
|
|
2443
2479
|
|
|
2444
2480
|
.classe-view {
|
|
2445
|
-
.border-green{
|
|
2481
|
+
.border-green {
|
|
2446
2482
|
border: solid 3px $green;
|
|
2447
2483
|
}
|
|
2448
|
-
.border-yellow{
|
|
2484
|
+
.border-yellow {
|
|
2449
2485
|
border: solid 3px $yellow;
|
|
2450
2486
|
}
|
|
2451
|
-
.border-orange{
|
|
2487
|
+
.border-orange {
|
|
2452
2488
|
border: solid 3px $orange;
|
|
2453
2489
|
}
|
|
2454
|
-
.border-red{
|
|
2490
|
+
.border-red {
|
|
2455
2491
|
border: solid 3px $red;
|
|
2456
2492
|
}
|
|
2457
|
-
.border-grey{
|
|
2493
|
+
.border-grey {
|
|
2458
2494
|
border: solid 3px $grey;
|
|
2459
2495
|
}
|
|
2460
2496
|
|
|
@@ -2464,7 +2500,8 @@ body.evaluations {
|
|
|
2464
2500
|
transition: all 0.2s ease-in-out;
|
|
2465
2501
|
|
|
2466
2502
|
&:hover {
|
|
2467
|
-
box-shadow: 0 10px 20px rgba(0,0,0,0.19),
|
|
2503
|
+
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19),
|
|
2504
|
+
0 6px 6px rgba(0, 0, 0, 0.23);
|
|
2468
2505
|
}
|
|
2469
2506
|
.bottom {
|
|
2470
2507
|
padding: 0px 10px 85% 10px;
|
|
@@ -2516,7 +2553,7 @@ body.evaluations {
|
|
|
2516
2553
|
.domaine-display {
|
|
2517
2554
|
padding: 2px 0 !important;
|
|
2518
2555
|
font-weight: bold;
|
|
2519
|
-
button{
|
|
2556
|
+
button {
|
|
2520
2557
|
padding: 0px 4px !important;
|
|
2521
2558
|
font-size: 11px !important;
|
|
2522
2559
|
text-transform: none !important;
|
|
@@ -2528,10 +2565,9 @@ body.evaluations {
|
|
|
2528
2565
|
margin-top: 20px !important;
|
|
2529
2566
|
}
|
|
2530
2567
|
|
|
2531
|
-
.domaine-line{
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
content: ' ';
|
|
2568
|
+
.domaine-line {
|
|
2569
|
+
&::after {
|
|
2570
|
+
content: " ";
|
|
2535
2571
|
display: block;
|
|
2536
2572
|
clear: both;
|
|
2537
2573
|
}
|
|
@@ -2540,7 +2576,6 @@ body.evaluations {
|
|
|
2540
2576
|
}
|
|
2541
2577
|
|
|
2542
2578
|
.detail-competence {
|
|
2543
|
-
|
|
2544
2579
|
.addDevoirTable__libelle {
|
|
2545
2580
|
padding-right: 2px;
|
|
2546
2581
|
}
|
|
@@ -2552,7 +2587,8 @@ body.evaluations {
|
|
|
2552
2587
|
.detail {
|
|
2553
2588
|
width: 100%;
|
|
2554
2589
|
overflow: auto;
|
|
2555
|
-
&.table-view,
|
|
2590
|
+
&.table-view,
|
|
2591
|
+
&.graph-view {
|
|
2556
2592
|
table {
|
|
2557
2593
|
margin: 50px auto;
|
|
2558
2594
|
}
|
|
@@ -2564,7 +2600,6 @@ body.evaluations {
|
|
|
2564
2600
|
|
|
2565
2601
|
&.graph-view {
|
|
2566
2602
|
table {
|
|
2567
|
-
|
|
2568
2603
|
tr {
|
|
2569
2604
|
border-top: solid 1px transparent;
|
|
2570
2605
|
|
|
@@ -2601,7 +2636,7 @@ body.evaluations {
|
|
|
2601
2636
|
margin: 0 10px;
|
|
2602
2637
|
vertical-align: top;
|
|
2603
2638
|
|
|
2604
|
-
.rounded{
|
|
2639
|
+
.rounded {
|
|
2605
2640
|
opacity: 0.45;
|
|
2606
2641
|
&.selected {
|
|
2607
2642
|
opacity: 1;
|
|
@@ -2610,16 +2645,14 @@ body.evaluations {
|
|
|
2610
2645
|
}
|
|
2611
2646
|
}
|
|
2612
2647
|
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
padding-top:8px;
|
|
2648
|
+
.indent-eight {
|
|
2649
|
+
padding-top: 8px;
|
|
2616
2650
|
}
|
|
2617
2651
|
|
|
2618
|
-
.graphe-widget{
|
|
2619
|
-
height:240px !important;
|
|
2620
|
-
|
|
2652
|
+
.graphe-widget {
|
|
2653
|
+
height: 240px !important;
|
|
2621
2654
|
}
|
|
2622
|
-
.RechercheAcceuil{
|
|
2655
|
+
.RechercheAcceuil {
|
|
2623
2656
|
margin-left: 60px !important;
|
|
2624
2657
|
}
|
|
2625
2658
|
|
|
@@ -2634,29 +2667,25 @@ body.evaluations {
|
|
|
2634
2667
|
width: 100%;
|
|
2635
2668
|
}
|
|
2636
2669
|
|
|
2637
|
-
.RechercheSuiviEleve{
|
|
2670
|
+
.RechercheSuiviEleve {
|
|
2638
2671
|
margin-left: 8.3% !important;
|
|
2639
2672
|
width: 83.5%;
|
|
2640
|
-
|
|
2641
2673
|
}
|
|
2642
|
-
.detail{
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
margin-left: 8.5%!important;
|
|
2674
|
+
.detail {
|
|
2675
|
+
.info {
|
|
2676
|
+
margin-left: 8.5% !important;
|
|
2646
2677
|
}
|
|
2647
|
-
|
|
2648
2678
|
}
|
|
2649
|
-
.headerAccueil{
|
|
2679
|
+
.headerAccueil {
|
|
2650
2680
|
margin-left: 4%;
|
|
2651
2681
|
}
|
|
2652
|
-
.marginNiveau{
|
|
2653
|
-
margin-left
|
|
2654
|
-
margin-right
|
|
2682
|
+
.marginNiveau {
|
|
2683
|
+
margin-left: 50%;
|
|
2684
|
+
margin-right: 25%;
|
|
2655
2685
|
}
|
|
2656
|
-
.openedSectionDom{
|
|
2686
|
+
.openedSectionDom {
|
|
2657
2687
|
height: 0 !important;
|
|
2658
|
-
overflow: hidden!important;
|
|
2659
|
-
|
|
2688
|
+
overflow: hidden !important;
|
|
2660
2689
|
}
|
|
2661
2690
|
|
|
2662
2691
|
.chevron {
|
|
@@ -2678,8 +2707,8 @@ body.evaluations {
|
|
|
2678
2707
|
}
|
|
2679
2708
|
}
|
|
2680
2709
|
|
|
2681
|
-
.rounded{
|
|
2682
|
-
&.filterSpan{
|
|
2710
|
+
.rounded {
|
|
2711
|
+
&.filterSpan {
|
|
2683
2712
|
opacity: 0.45;
|
|
2684
2713
|
&.selectedFilterGrey {
|
|
2685
2714
|
opacity: 1;
|
|
@@ -2687,36 +2716,35 @@ body.evaluations {
|
|
|
2687
2716
|
}
|
|
2688
2717
|
}
|
|
2689
2718
|
|
|
2690
|
-
|
|
2691
|
-
.chartSuiviEleve{
|
|
2719
|
+
.chartSuiviEleve {
|
|
2692
2720
|
//width : 90% !important;
|
|
2693
2721
|
//height: 90% !important;
|
|
2694
2722
|
margin: 2%;
|
|
2695
2723
|
}
|
|
2696
2724
|
|
|
2697
|
-
.switchToView{
|
|
2725
|
+
.switchToView {
|
|
2698
2726
|
margin-left: 6%;
|
|
2699
2727
|
color: #4bafd5;
|
|
2700
2728
|
}
|
|
2701
2729
|
|
|
2702
|
-
.buttonEvalPopupDelete{
|
|
2730
|
+
.buttonEvalPopupDelete {
|
|
2703
2731
|
margin-bottom: 25px;
|
|
2704
2732
|
margin-left: 10px;
|
|
2705
2733
|
float: right;
|
|
2706
2734
|
}
|
|
2707
2735
|
|
|
2708
|
-
.buttonEvalPopupConfirm{
|
|
2736
|
+
.buttonEvalPopupConfirm {
|
|
2709
2737
|
margin-bottom: 25px;
|
|
2710
2738
|
margin-right: 10px;
|
|
2711
2739
|
float: right;
|
|
2712
2740
|
background-color: silver;
|
|
2713
2741
|
}
|
|
2714
2742
|
|
|
2715
|
-
.lightBoxEval{
|
|
2743
|
+
.lightBoxEval {
|
|
2716
2744
|
width: 100%;
|
|
2717
2745
|
}
|
|
2718
2746
|
|
|
2719
|
-
.paddingTwenty{
|
|
2747
|
+
.paddingTwenty {
|
|
2720
2748
|
padding: 20px;
|
|
2721
2749
|
}
|
|
2722
2750
|
|
|
@@ -2728,7 +2756,7 @@ body.evaluations {
|
|
|
2728
2756
|
li {
|
|
2729
2757
|
height: 50px;
|
|
2730
2758
|
|
|
2731
|
-
div{
|
|
2759
|
+
div {
|
|
2732
2760
|
vertical-align: top;
|
|
2733
2761
|
height: 100%;
|
|
2734
2762
|
position: relative;
|
|
@@ -2738,7 +2766,7 @@ body.evaluations {
|
|
|
2738
2766
|
text-align: right;
|
|
2739
2767
|
}
|
|
2740
2768
|
|
|
2741
|
-
.maxval{
|
|
2769
|
+
.maxval {
|
|
2742
2770
|
position: absolute;
|
|
2743
2771
|
top: -10px;
|
|
2744
2772
|
right: 10px;
|
|
@@ -2759,7 +2787,7 @@ body.evaluations {
|
|
|
2759
2787
|
}
|
|
2760
2788
|
}
|
|
2761
2789
|
|
|
2762
|
-
.legend-line{
|
|
2790
|
+
.legend-line {
|
|
2763
2791
|
position: relative;
|
|
2764
2792
|
|
|
2765
2793
|
.tick {
|
|
@@ -2771,35 +2799,35 @@ body.evaluations {
|
|
|
2771
2799
|
z-index: 10;
|
|
2772
2800
|
background-color: $black;
|
|
2773
2801
|
|
|
2774
|
-
&.first-tick{
|
|
2802
|
+
&.first-tick {
|
|
2775
2803
|
top: 0;
|
|
2776
2804
|
}
|
|
2777
2805
|
}
|
|
2778
2806
|
|
|
2779
|
-
&::before{
|
|
2780
|
-
content:
|
|
2807
|
+
&::before {
|
|
2808
|
+
content: " ";
|
|
2781
2809
|
width: 3px;
|
|
2782
2810
|
height: 100%;
|
|
2783
2811
|
display: block;
|
|
2784
2812
|
}
|
|
2785
2813
|
|
|
2786
|
-
&.green{
|
|
2787
|
-
&:before{
|
|
2814
|
+
&.green {
|
|
2815
|
+
&:before {
|
|
2788
2816
|
background-color: $green;
|
|
2789
2817
|
}
|
|
2790
2818
|
}
|
|
2791
|
-
&.orange{
|
|
2792
|
-
&:before{
|
|
2819
|
+
&.orange {
|
|
2820
|
+
&:before {
|
|
2793
2821
|
background-color: $orange;
|
|
2794
2822
|
}
|
|
2795
2823
|
}
|
|
2796
|
-
&.yellow{
|
|
2797
|
-
&:before{
|
|
2824
|
+
&.yellow {
|
|
2825
|
+
&:before {
|
|
2798
2826
|
background-color: $yellow;
|
|
2799
2827
|
}
|
|
2800
2828
|
}
|
|
2801
|
-
&.red{
|
|
2802
|
-
&:before{
|
|
2829
|
+
&.red {
|
|
2830
|
+
&:before {
|
|
2803
2831
|
background-color: $red;
|
|
2804
2832
|
}
|
|
2805
2833
|
}
|
|
@@ -2808,7 +2836,7 @@ body.evaluations {
|
|
|
2808
2836
|
|
|
2809
2837
|
//Enseignement de complément et bfc barème brevet
|
|
2810
2838
|
|
|
2811
|
-
.bareme-brevet{
|
|
2839
|
+
.bareme-brevet {
|
|
2812
2840
|
font-size: 1.2em;
|
|
2813
2841
|
font-weight: bold;
|
|
2814
2842
|
line-height: 2.3em;
|
|
@@ -2822,10 +2850,10 @@ body.evaluations {
|
|
|
2822
2850
|
}
|
|
2823
2851
|
|
|
2824
2852
|
label.select-evaluation {
|
|
2825
|
-
margin: 0!important;
|
|
2853
|
+
margin: 0 !important;
|
|
2826
2854
|
}
|
|
2827
2855
|
|
|
2828
|
-
i.cross-annotation{
|
|
2856
|
+
i.cross-annotation {
|
|
2829
2857
|
padding-left: 5px;
|
|
2830
2858
|
line-height: 34px;
|
|
2831
2859
|
}
|
|
@@ -2836,7 +2864,8 @@ body.evaluations {
|
|
|
2836
2864
|
.filter-domaine {
|
|
2837
2865
|
margin: 0 0 0 5% !important;
|
|
2838
2866
|
width: 95% !important;
|
|
2839
|
-
.drop-down-block
|
|
2867
|
+
.drop-down-block,
|
|
2868
|
+
.drop-down-block .drop-down-label {
|
|
2840
2869
|
margin-bottom: 0px;
|
|
2841
2870
|
}
|
|
2842
2871
|
.checkbox-domaine {
|
|
@@ -2853,7 +2882,6 @@ body.evaluations {
|
|
|
2853
2882
|
|
|
2854
2883
|
//EXPORT LSU
|
|
2855
2884
|
.lsu {
|
|
2856
|
-
|
|
2857
2885
|
.filtre {
|
|
2858
2886
|
position: relative;
|
|
2859
2887
|
height: 25px;
|
|
@@ -2885,7 +2913,6 @@ body.evaluations {
|
|
|
2885
2913
|
margin-bottom: 4px;
|
|
2886
2914
|
margin-top: 4px;
|
|
2887
2915
|
line-height: 20px;
|
|
2888
|
-
|
|
2889
2916
|
}
|
|
2890
2917
|
|
|
2891
2918
|
.selectable-list li {
|
|
@@ -2936,29 +2963,29 @@ body.evaluations {
|
|
|
2936
2963
|
text-align: center !important;
|
|
2937
2964
|
opacity: 0.8 !important;
|
|
2938
2965
|
|
|
2939
|
-
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
|
|
2966
|
+
img {
|
|
2967
|
+
height: 100px;
|
|
2968
|
+
width: 100px;
|
|
2969
|
+
object-fit: cover;
|
|
2970
|
+
border-radius: 50% !important;
|
|
2971
|
+
border: 1px solid $medium-grey !important;
|
|
2972
|
+
}
|
|
2946
2973
|
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
|
|
2974
|
+
span {
|
|
2975
|
+
color: $grey !important;
|
|
2976
|
+
font-weight: bold !important;
|
|
2977
|
+
text-align: center !important;
|
|
2978
|
+
}
|
|
2952
2979
|
}
|
|
2953
2980
|
|
|
2954
2981
|
.big-round-avatar {
|
|
2955
2982
|
height: 240px !important;
|
|
2956
2983
|
width: 200px !important;
|
|
2957
2984
|
|
|
2958
|
-
|
|
2959
|
-
|
|
2960
|
-
|
|
2961
|
-
|
|
2985
|
+
img {
|
|
2986
|
+
height: 200px !important;
|
|
2987
|
+
width: 200px !important;
|
|
2988
|
+
}
|
|
2962
2989
|
}
|
|
2963
2990
|
|
|
2964
2991
|
.alignTablewithOtherWidget {
|
|
@@ -2985,7 +3012,7 @@ body.evaluations {
|
|
|
2985
3012
|
.rounded {
|
|
2986
3013
|
vertical-align: text-bottom !important;
|
|
2987
3014
|
}
|
|
2988
|
-
.content-box-accueil--table--content
|
|
3015
|
+
.content-box-accueil--table--content > .row {
|
|
2989
3016
|
padding: 12px 0 !important;
|
|
2990
3017
|
}
|
|
2991
3018
|
@media screen and (max-device-width: $tablette) {
|
|
@@ -2997,10 +3024,10 @@ body.evaluations {
|
|
|
2997
3024
|
}
|
|
2998
3025
|
}
|
|
2999
3026
|
.shadowOne {
|
|
3000
|
-
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.35)!important;
|
|
3027
|
+
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35) !important;
|
|
3001
3028
|
}
|
|
3002
3029
|
.shadowTwo {
|
|
3003
|
-
box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.35)!important;
|
|
3030
|
+
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.35) !important;
|
|
3004
3031
|
}
|
|
3005
3032
|
.content-box-accueil--table--content {
|
|
3006
3033
|
overflow-y: hidden !important;
|
|
@@ -3017,10 +3044,10 @@ body.evaluations {
|
|
|
3017
3044
|
float: right !important;
|
|
3018
3045
|
}
|
|
3019
3046
|
.DevoirField {
|
|
3020
|
-
border: solid 1px #5f5f5f
|
|
3047
|
+
border: solid 1px #5f5f5f;
|
|
3021
3048
|
padding-left: 5px;
|
|
3022
3049
|
}
|
|
3023
|
-
.content-box-accueil--table--content
|
|
3050
|
+
.content-box-accueil--table--content > .row {
|
|
3024
3051
|
height: 40px;
|
|
3025
3052
|
}
|
|
3026
3053
|
.floatRight {
|
|
@@ -3032,46 +3059,46 @@ body.evaluations {
|
|
|
3032
3059
|
.responsive-table {
|
|
3033
3060
|
table {
|
|
3034
3061
|
tbody {
|
|
3035
|
-
tr:nth-child(even){
|
|
3036
|
-
background: rgba(0,0,0,0.05);
|
|
3062
|
+
tr:nth-child(even) {
|
|
3063
|
+
background: rgba(0, 0, 0, 0.05);
|
|
3037
3064
|
}
|
|
3038
|
-
tr:nth-child(odd){
|
|
3065
|
+
tr:nth-child(odd) {
|
|
3039
3066
|
background: $white;
|
|
3040
3067
|
}
|
|
3041
3068
|
}
|
|
3042
3069
|
}
|
|
3043
3070
|
}
|
|
3044
3071
|
|
|
3045
|
-
.background-grey{
|
|
3046
|
-
background: rgba(0,0,0,0.05) !important;
|
|
3072
|
+
.background-grey {
|
|
3073
|
+
background: rgba(0, 0, 0, 0.05) !important;
|
|
3047
3074
|
}
|
|
3048
|
-
.background-white{
|
|
3075
|
+
.background-white {
|
|
3049
3076
|
background: $white !important;
|
|
3050
3077
|
}
|
|
3051
|
-
.height80{
|
|
3078
|
+
.height80 {
|
|
3052
3079
|
line-height: 80px;
|
|
3053
3080
|
}
|
|
3054
3081
|
.list-devoirs {
|
|
3055
3082
|
.testAlignLeft {
|
|
3056
|
-
@media screen and (min-device-width
|
|
3083
|
+
@media screen and (min-device-width: $fat-mobile) {
|
|
3057
3084
|
text-align: left !important;
|
|
3058
3085
|
}
|
|
3059
3086
|
}
|
|
3060
3087
|
transition: all 100ms ease-out;
|
|
3061
|
-
.shadow-first{
|
|
3062
|
-
box-shadow:(0px 0px 0px 0px rgba(0,0,0,0.35));
|
|
3088
|
+
.shadow-first {
|
|
3089
|
+
box-shadow: (0px 0px 0px 0px rgba(0, 0, 0, 0.35));
|
|
3063
3090
|
}
|
|
3064
3091
|
table {
|
|
3065
|
-
border-collapse
|
|
3092
|
+
border-collapse: collapse;
|
|
3066
3093
|
tbody tr:hover {
|
|
3067
3094
|
color: $orange;
|
|
3068
3095
|
}
|
|
3069
|
-
tbody tr:nth-child(even){
|
|
3096
|
+
tbody tr:nth-child(even) {
|
|
3070
3097
|
background: $white !important;
|
|
3071
3098
|
border-bottom: 1px solid #ccc !important;
|
|
3072
3099
|
border-top: 0px !important;
|
|
3073
3100
|
}
|
|
3074
|
-
tr:nth-child(odd){
|
|
3101
|
+
tr:nth-child(odd) {
|
|
3075
3102
|
border: 0 !important;
|
|
3076
3103
|
td {
|
|
3077
3104
|
border: 0 !important;
|
|
@@ -3083,13 +3110,13 @@ body.evaluations {
|
|
|
3083
3110
|
border-right: 0px solid #fff;
|
|
3084
3111
|
@media screen and (min-width: $tablette) {
|
|
3085
3112
|
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
|
|
3086
|
-
}
|
|
3113
|
+
}
|
|
3087
3114
|
padding: 5px;
|
|
3088
3115
|
}
|
|
3089
3116
|
.firstElem {
|
|
3090
3117
|
margin-left: 5px !important;
|
|
3091
3118
|
}
|
|
3092
|
-
.lastElem{
|
|
3119
|
+
.lastElem {
|
|
3093
3120
|
margin-right: 5px !important;
|
|
3094
3121
|
margin-bottom: 1px !important;
|
|
3095
3122
|
}
|
|
@@ -3103,7 +3130,6 @@ body.evaluations {
|
|
|
3103
3130
|
border-bottom: 0px !important;
|
|
3104
3131
|
}
|
|
3105
3132
|
}
|
|
3106
|
-
|
|
3107
3133
|
}
|
|
3108
3134
|
.opened.lastElem.shadow {
|
|
3109
3135
|
margin-top: 5px !important;
|
|
@@ -3116,7 +3142,7 @@ body.evaluations {
|
|
|
3116
3142
|
}
|
|
3117
3143
|
@media screen and (min-width: $tablette) {
|
|
3118
3144
|
table {
|
|
3119
|
-
border-collapse
|
|
3145
|
+
border-collapse: separate;
|
|
3120
3146
|
}
|
|
3121
3147
|
}
|
|
3122
3148
|
.responsive-table table tbody tr td {
|
|
@@ -3150,7 +3176,6 @@ body.evaluations {
|
|
|
3150
3176
|
}
|
|
3151
3177
|
}
|
|
3152
3178
|
|
|
3153
|
-
|
|
3154
3179
|
@media screen and (max-width: 800px), screen and (max-height: 800px) {
|
|
3155
3180
|
height: 110px;
|
|
3156
3181
|
overflow: hidden;
|
|
@@ -3166,7 +3191,8 @@ body.evaluations {
|
|
|
3166
3191
|
}
|
|
3167
3192
|
}
|
|
3168
3193
|
}
|
|
3169
|
-
nav.vertical ul li a,
|
|
3194
|
+
nav.vertical ul li a,
|
|
3195
|
+
.app-menu ul li a {
|
|
3170
3196
|
padding-right: 0px !important;
|
|
3171
3197
|
}
|
|
3172
3198
|
|
|
@@ -3184,14 +3210,14 @@ body.evaluations {
|
|
|
3184
3210
|
margin-top: 0px !important;
|
|
3185
3211
|
}
|
|
3186
3212
|
|
|
3187
|
-
.bilan-suivi-eleve{
|
|
3213
|
+
.bilan-suivi-eleve {
|
|
3188
3214
|
margin-left: 20px !important;
|
|
3189
3215
|
margin-right: 20px !important;
|
|
3190
3216
|
padding-bottom: 20px !important;
|
|
3191
3217
|
border-radius: 5px !important;
|
|
3192
3218
|
}
|
|
3193
3219
|
|
|
3194
|
-
.titre-libelle{
|
|
3220
|
+
.titre-libelle {
|
|
3195
3221
|
color: #4bafd5;
|
|
3196
3222
|
font-size: 18px;
|
|
3197
3223
|
}
|
|
@@ -3217,10 +3243,9 @@ body.evaluations {
|
|
|
3217
3243
|
|
|
3218
3244
|
.selectable-list li.positionnementcalculee {
|
|
3219
3245
|
background: $cyan;
|
|
3220
|
-
color: #
|
|
3246
|
+
color: #ffffff;
|
|
3221
3247
|
}
|
|
3222
3248
|
|
|
3223
|
-
|
|
3224
3249
|
.width-td-0 {
|
|
3225
3250
|
width: 0% !important;
|
|
3226
3251
|
text-align: center !important;
|
|
@@ -3252,19 +3277,19 @@ body.evaluations {
|
|
|
3252
3277
|
text-align: left !important;
|
|
3253
3278
|
}
|
|
3254
3279
|
|
|
3255
|
-
@media screen and (max-device-width
|
|
3280
|
+
@media screen and (max-device-width: $small-mobile) {
|
|
3256
3281
|
.responsive-table table td {
|
|
3257
3282
|
width: auto !important;
|
|
3258
3283
|
}
|
|
3259
3284
|
}
|
|
3260
|
-
@media screen and (max-device-width
|
|
3285
|
+
@media screen and (max-device-width: $fat-mobile) {
|
|
3261
3286
|
.responsive-table table td {
|
|
3262
3287
|
width: auto !important;
|
|
3263
3288
|
}
|
|
3264
3289
|
}
|
|
3265
3290
|
|
|
3266
3291
|
.deletedStudent {
|
|
3267
|
-
color: #
|
|
3292
|
+
color: #e61758 !important;
|
|
3268
3293
|
}
|
|
3269
3294
|
|
|
3270
3295
|
// POP-UP Relevé Periodique - Acquis Scolaire
|
|
@@ -3278,7 +3303,6 @@ body.evaluations {
|
|
|
3278
3303
|
padding: 0px !important;
|
|
3279
3304
|
}
|
|
3280
3305
|
|
|
3281
|
-
|
|
3282
3306
|
// Bilan périodique
|
|
3283
3307
|
|
|
3284
3308
|
// Left side
|
|
@@ -3307,24 +3331,24 @@ body.evaluations {
|
|
|
3307
3331
|
|
|
3308
3332
|
//suivi des acquis
|
|
3309
3333
|
|
|
3310
|
-
.suiviDesAcquis{
|
|
3311
|
-
th{
|
|
3334
|
+
.suiviDesAcquis {
|
|
3335
|
+
th {
|
|
3312
3336
|
padding: 5px 11px !important;
|
|
3313
3337
|
}
|
|
3314
|
-
.matiere{
|
|
3338
|
+
.matiere {
|
|
3315
3339
|
font-weight: bold;
|
|
3316
3340
|
}
|
|
3317
|
-
span~ul{
|
|
3341
|
+
span ~ ul {
|
|
3318
3342
|
font-size: 12px;
|
|
3319
3343
|
margin-top: 0px;
|
|
3320
3344
|
margin-bottom: 0px;
|
|
3321
3345
|
list-style-type: none;
|
|
3322
3346
|
padding-left: 0px;
|
|
3323
|
-
li{
|
|
3347
|
+
li {
|
|
3324
3348
|
padding-bottom: 0px;
|
|
3325
3349
|
}
|
|
3326
3350
|
}
|
|
3327
|
-
textarea{
|
|
3351
|
+
textarea {
|
|
3328
3352
|
height: 75px;
|
|
3329
3353
|
resize: none;
|
|
3330
3354
|
margin-top: 0px;
|
|
@@ -3333,16 +3357,16 @@ body.evaluations {
|
|
|
3333
3357
|
text-align: justify;
|
|
3334
3358
|
padding: 7px;
|
|
3335
3359
|
}
|
|
3336
|
-
.element{
|
|
3360
|
+
.element {
|
|
3337
3361
|
text-align: justify;
|
|
3338
3362
|
height: 75px;
|
|
3339
3363
|
padding-right: 5px;
|
|
3340
3364
|
overflow-y: auto;
|
|
3341
3365
|
}
|
|
3342
|
-
tfoot td{
|
|
3366
|
+
tfoot td {
|
|
3343
3367
|
padding: 10px 0px;
|
|
3344
3368
|
}
|
|
3345
|
-
.selectable-list{
|
|
3369
|
+
.selectable-list {
|
|
3346
3370
|
margin: 0px;
|
|
3347
3371
|
}
|
|
3348
3372
|
}
|
|
@@ -3351,7 +3375,6 @@ body.evaluations {
|
|
|
3351
3375
|
margin: 0;
|
|
3352
3376
|
}
|
|
3353
3377
|
|
|
3354
|
-
|
|
3355
3378
|
.loaderGraph {
|
|
3356
3379
|
border: 6px solid #f3f3f3; /* Light grey */
|
|
3357
3380
|
border-top: 6px solid #3498db; /* Blue */
|
|
@@ -3374,90 +3397,91 @@ body.evaluations {
|
|
|
3374
3397
|
margin: 0 45%;
|
|
3375
3398
|
}
|
|
3376
3399
|
|
|
3377
|
-
.grey-color{
|
|
3400
|
+
.grey-color {
|
|
3378
3401
|
color: grey;
|
|
3379
3402
|
}
|
|
3380
3403
|
|
|
3381
3404
|
.margin-top-releve-parentEleve {
|
|
3382
|
-
margin-top:8px;
|
|
3405
|
+
margin-top: 8px;
|
|
3383
3406
|
}
|
|
3384
3407
|
|
|
3385
|
-
.padding-right-downloadButton-SuiviEleve{
|
|
3408
|
+
.padding-right-downloadButton-SuiviEleve {
|
|
3386
3409
|
padding-right: 7px !important;
|
|
3387
3410
|
}
|
|
3388
3411
|
|
|
3389
|
-
.choice-export-suivi-eleve{
|
|
3390
|
-
top:38px !important;
|
|
3412
|
+
.choice-export-suivi-eleve {
|
|
3413
|
+
top: 38px !important;
|
|
3414
|
+
bottom: auto !important;
|
|
3391
3415
|
}
|
|
3392
3416
|
|
|
3393
|
-
.loaderPage{
|
|
3417
|
+
.loaderPage {
|
|
3394
3418
|
margin: 20% 50%;
|
|
3395
3419
|
}
|
|
3396
|
-
.tabs{
|
|
3420
|
+
.tabs {
|
|
3397
3421
|
header {
|
|
3398
3422
|
cursor: pointer;
|
|
3399
3423
|
}
|
|
3400
3424
|
.tabs-selected::after {
|
|
3401
3425
|
transform: scaleX(1);
|
|
3402
3426
|
}
|
|
3403
|
-
.tabs-selected{
|
|
3427
|
+
.tabs-selected {
|
|
3404
3428
|
color: #4bafd5;
|
|
3405
3429
|
}
|
|
3406
3430
|
}
|
|
3407
|
-
.buttons-suiviEleve{
|
|
3431
|
+
.buttons-suiviEleve {
|
|
3408
3432
|
position: absolute;
|
|
3409
3433
|
right: 0;
|
|
3410
3434
|
}
|
|
3411
|
-
.buttons-suiviEleve-detail{
|
|
3435
|
+
.buttons-suiviEleve-detail {
|
|
3412
3436
|
position: absolute;
|
|
3413
3437
|
width: 97%;
|
|
3414
3438
|
}
|
|
3415
|
-
.releveNotes-suiviEleve{
|
|
3439
|
+
.releveNotes-suiviEleve {
|
|
3416
3440
|
overflow: overlay;
|
|
3417
3441
|
}
|
|
3418
|
-
.releveNotes-noBorder{
|
|
3442
|
+
.releveNotes-noBorder {
|
|
3419
3443
|
border: none !important;
|
|
3420
3444
|
}
|
|
3421
|
-
.encartBlanc-suiviEleve{
|
|
3445
|
+
.encartBlanc-suiviEleve {
|
|
3422
3446
|
margin-left: 20px;
|
|
3423
3447
|
}
|
|
3424
|
-
.margin-text-underTabs{
|
|
3448
|
+
.margin-text-underTabs {
|
|
3425
3449
|
margin-bottom: 20px;
|
|
3426
3450
|
}
|
|
3427
|
-
.iframeReportClass{
|
|
3451
|
+
.iframeReportClass {
|
|
3428
3452
|
display: inline;
|
|
3429
3453
|
}
|
|
3430
|
-
.half-width{
|
|
3454
|
+
.half-width {
|
|
3431
3455
|
width: 50%;
|
|
3432
3456
|
}
|
|
3433
|
-
.followingClass{
|
|
3457
|
+
.followingClass {
|
|
3434
3458
|
margin-left: 15px;
|
|
3435
3459
|
margin-right: 15px;
|
|
3436
3460
|
}
|
|
3437
|
-
.marginUnderTabs{
|
|
3461
|
+
.marginUnderTabs {
|
|
3438
3462
|
margin-bottom: 20px;
|
|
3439
3463
|
padding-top: 15px;
|
|
3440
3464
|
}
|
|
3441
|
-
.choseDownloadFormat{
|
|
3465
|
+
.choseDownloadFormat {
|
|
3442
3466
|
display: flex;
|
|
3443
3467
|
justify-content: space-around;
|
|
3444
3468
|
}
|
|
3445
|
-
.light-font-header{
|
|
3446
|
-
font-weight: 100!important;
|
|
3469
|
+
.light-font-header {
|
|
3470
|
+
font-weight: 100 !important;
|
|
3447
3471
|
font-size: 0.9em;
|
|
3448
3472
|
}
|
|
3449
|
-
.margin-loader{
|
|
3473
|
+
.margin-loader {
|
|
3450
3474
|
margin-bottom: 10px;
|
|
3451
3475
|
}
|
|
3452
|
-
.duplication-title{
|
|
3476
|
+
.duplication-title {
|
|
3453
3477
|
color: $red;
|
|
3454
3478
|
}
|
|
3455
|
-
.button-margin{
|
|
3479
|
+
.button-margin {
|
|
3456
3480
|
margin: 16px;
|
|
3457
3481
|
}
|
|
3458
3482
|
|
|
3459
|
-
@media screen and (min-device-width:1300px) {
|
|
3460
|
-
.backgroundExportImage{
|
|
3483
|
+
@media screen and (min-device-width: 1300px) {
|
|
3484
|
+
.backgroundExportImage {
|
|
3461
3485
|
background-image: url(/competences/public/img/export_image.svg);
|
|
3462
3486
|
background-repeat: no-repeat;
|
|
3463
3487
|
background-origin: content-box;
|
|
@@ -3466,36 +3490,36 @@ body.evaluations {
|
|
|
3466
3490
|
}
|
|
3467
3491
|
}
|
|
3468
3492
|
|
|
3469
|
-
.archives-margin{
|
|
3470
|
-
margin:2.5%;
|
|
3493
|
+
.archives-margin {
|
|
3494
|
+
margin: 2.5%;
|
|
3471
3495
|
}
|
|
3472
3496
|
|
|
3473
|
-
.archives-frame{
|
|
3474
|
-
background-color
|
|
3497
|
+
.archives-frame {
|
|
3498
|
+
background-color: $eval-lighter-grey;
|
|
3475
3499
|
border: dotted grey;
|
|
3476
3500
|
margin-top: 2%;
|
|
3477
3501
|
margin-bottom: 1%;
|
|
3478
3502
|
}
|
|
3479
3503
|
|
|
3480
|
-
.archives-list-margin{
|
|
3481
|
-
margin-bottom:1%;
|
|
3504
|
+
.archives-list-margin {
|
|
3505
|
+
margin-bottom: 1%;
|
|
3482
3506
|
}
|
|
3483
3507
|
|
|
3484
3508
|
.lightbox-creation-competences {
|
|
3485
|
-
.element{
|
|
3509
|
+
.element {
|
|
3486
3510
|
font-weight: bold;
|
|
3487
3511
|
margin: 4% 0 0 0;
|
|
3488
3512
|
}
|
|
3489
3513
|
|
|
3490
|
-
.element-no-bold{
|
|
3514
|
+
.element-no-bold {
|
|
3491
3515
|
margin: 4% 0 0 0;
|
|
3492
3516
|
}
|
|
3493
3517
|
|
|
3494
|
-
.input-no-bold{
|
|
3518
|
+
.input-no-bold {
|
|
3495
3519
|
margin: 3.1% 0 0 0;
|
|
3496
3520
|
}
|
|
3497
3521
|
|
|
3498
|
-
.margin-bottom-5p{
|
|
3522
|
+
.margin-bottom-5p {
|
|
3499
3523
|
margin: 0 0 5% 0;
|
|
3500
3524
|
}
|
|
3501
3525
|
|
|
@@ -3514,17 +3538,13 @@ body.evaluations {
|
|
|
3514
3538
|
display: inline-block;
|
|
3515
3539
|
}
|
|
3516
3540
|
}
|
|
3517
|
-
|
|
3518
3541
|
}
|
|
3519
3542
|
|
|
3520
|
-
|
|
3521
3543
|
// Sniplet module vie-scolaire
|
|
3522
3544
|
|
|
3523
3545
|
.evaluations-sniplet {
|
|
3524
|
-
|
|
3525
3546
|
// Bilan périodique - POP UP création EPI / AP / Parcours
|
|
3526
3547
|
|
|
3527
|
-
|
|
3528
3548
|
.marginLeft {
|
|
3529
3549
|
margin-left: 15px;
|
|
3530
3550
|
}
|
|
@@ -3569,7 +3589,7 @@ body.evaluations {
|
|
|
3569
3589
|
height: auto;
|
|
3570
3590
|
overflow: visible;
|
|
3571
3591
|
@include transition(all 200ms ease);
|
|
3572
|
-
> .skills-text-overflow{
|
|
3592
|
+
> .skills-text-overflow {
|
|
3573
3593
|
i.skills-open-icon::before {
|
|
3574
3594
|
content: "\e841";
|
|
3575
3595
|
}
|
|
@@ -3587,10 +3607,10 @@ body.evaluations {
|
|
|
3587
3607
|
}
|
|
3588
3608
|
}
|
|
3589
3609
|
}
|
|
3590
|
-
> .skills-text-overflow{
|
|
3610
|
+
> .skills-text-overflow {
|
|
3591
3611
|
i.skills-open-icon {
|
|
3592
3612
|
@include fonticon;
|
|
3593
|
-
&::before{
|
|
3613
|
+
&::before {
|
|
3594
3614
|
content: "\e823";
|
|
3595
3615
|
left: 0;
|
|
3596
3616
|
position: absolute;
|
|
@@ -3605,7 +3625,7 @@ body.evaluations {
|
|
|
3605
3625
|
padding-left: 10px;
|
|
3606
3626
|
margin: 0;
|
|
3607
3627
|
list-style-type: none;
|
|
3608
|
-
ul{
|
|
3628
|
+
ul {
|
|
3609
3629
|
list-style-type: none;
|
|
3610
3630
|
}
|
|
3611
3631
|
}
|
|
@@ -3621,7 +3641,7 @@ body.evaluations {
|
|
|
3621
3641
|
}
|
|
3622
3642
|
|
|
3623
3643
|
.skills-list-proposition:hover {
|
|
3624
|
-
color: #
|
|
3644
|
+
color: #ff8500;
|
|
3625
3645
|
}
|
|
3626
3646
|
|
|
3627
3647
|
.all.selected {
|
|
@@ -3649,8 +3669,8 @@ body.evaluations {
|
|
|
3649
3669
|
}
|
|
3650
3670
|
}
|
|
3651
3671
|
|
|
3652
|
-
.skills-header
|
|
3653
|
-
margin: 10px 0 0 5px!important;
|
|
3672
|
+
.skills-header > .skills-text-overflow i.skills-open-icon::before {
|
|
3673
|
+
margin: 10px 0 0 5px !important;
|
|
3654
3674
|
}
|
|
3655
3675
|
|
|
3656
3676
|
.champsRequis {
|
|
@@ -3676,7 +3696,6 @@ body.evaluations {
|
|
|
3676
3696
|
}
|
|
3677
3697
|
|
|
3678
3698
|
&.paramServices {
|
|
3679
|
-
|
|
3680
3699
|
.selectable-list {
|
|
3681
3700
|
width: 80%;
|
|
3682
3701
|
height: 100%;
|
|
@@ -3692,11 +3711,12 @@ body.evaluations {
|
|
|
3692
3711
|
border: none;
|
|
3693
3712
|
background-color: inherit;
|
|
3694
3713
|
&::after {
|
|
3695
|
-
content:
|
|
3714
|
+
content: "\e866";
|
|
3696
3715
|
}
|
|
3697
3716
|
}
|
|
3698
3717
|
|
|
3699
|
-
.lightboxCreate,
|
|
3718
|
+
.lightboxCreate,
|
|
3719
|
+
.lightboxUpdate {
|
|
3700
3720
|
margin: 20px;
|
|
3701
3721
|
}
|
|
3702
3722
|
|
|
@@ -3710,9 +3730,8 @@ body.evaluations {
|
|
|
3710
3730
|
}
|
|
3711
3731
|
|
|
3712
3732
|
.filterButton {
|
|
3713
|
-
|
|
3714
3733
|
& > * {
|
|
3715
|
-
margin
|
|
3734
|
+
margin: 0 10px 15px;
|
|
3716
3735
|
}
|
|
3717
3736
|
|
|
3718
3737
|
& > input {
|
|
@@ -3723,21 +3742,21 @@ body.evaluations {
|
|
|
3723
3742
|
}
|
|
3724
3743
|
|
|
3725
3744
|
.cursor-auto {
|
|
3726
|
-
cursor:auto;
|
|
3745
|
+
cursor: auto;
|
|
3727
3746
|
}
|
|
3728
3747
|
|
|
3729
3748
|
.domain-header {
|
|
3730
|
-
position:relative;
|
|
3731
|
-
left:10px;
|
|
3732
|
-
top:10px;
|
|
3749
|
+
position: relative;
|
|
3750
|
+
left: 10px;
|
|
3751
|
+
top: 10px;
|
|
3733
3752
|
}
|
|
3734
3753
|
|
|
3735
3754
|
.margin-top-10 {
|
|
3736
|
-
margin-top:10px;
|
|
3755
|
+
margin-top: 10px;
|
|
3737
3756
|
}
|
|
3738
3757
|
|
|
3739
3758
|
.margin-left-10 {
|
|
3740
|
-
margin-left:10px;
|
|
3759
|
+
margin-left: 10px;
|
|
3741
3760
|
}
|
|
3742
3761
|
|
|
3743
3762
|
.margin-15 {
|
|
@@ -3766,7 +3785,3 @@ lightbox#delete-periodic div.content {
|
|
|
3766
3785
|
margin-right: 5%;
|
|
3767
3786
|
}
|
|
3768
3787
|
}
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
|
|
3772
|
-
|