ode-csslib 4.0.3 → 4.0.5-dev.202301181145
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 +5 -5
- package/dist/index.css.map +1 -1
- package/dist/version.txt +1 -1
- package/package.json +2 -2
- package/scss/_app.scss +17 -0
- package/scss/icons/_pictos.scss +37 -1
- package/scss/modules/_lists.scss +4 -0
- package/scss/modules/_modules.scss +1 -0
- package/scss/modules/_profil.scss +85 -0
- package/scss/specifics/calendar/_calendar.scss +14 -5
- package/scss/specifics/calendar/components/_icons.scss +12 -0
- package/scss/specifics/calendar/components/sidebar.scss +19 -0
- package/scss/specifics/class-admin/components/_choose-class.scss +0 -5
- package/scss/specifics/competences/components/_slider.scss +2 -4
- package/scss/specifics/exercizer/_exercizer.scss +0 -3
- package/scss/specifics/formulaire/_formulaire.scss +3 -3
- package/scss/specifics/formulaire/components/_dominos.scss +2 -2
- package/scss/specifics/formulaire/components/_edit-form.scss +5 -1
- package/scss/specifics/formulaire/components/_index.scss +2 -1
- package/scss/specifics/formulaire/components/containers/_index.scss +1 -0
- package/scss/specifics/formulaire/components/containers/cursor/_index.scss +1 -0
- package/scss/specifics/formulaire/components/containers/cursor/_question-type-cursor.scss +202 -0
- package/scss/specifics/incidents/components/incidents/_sniplets.scss +2 -2
- package/scss/specifics/magneto/components/_index.scss +1 -0
- package/scss/specifics/magneto/components/_toasts.scss +103 -0
- package/scss/specifics/presences/components/containers/_register.scss +5 -4
- package/scss/specifics/presences/components/material/_radio.scss +3 -3
- package/scss/specifics/rbs/_rbs.scss +3 -2
- package/scss/specifics/rbs/components/_index.scss +2 -1
- package/scss/specifics/rbs/components/_sniplets.scss +17 -0
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
.toasts {
|
|
2
|
+
position: fixed;
|
|
3
|
+
top: 74px;
|
|
4
|
+
right: 25px;
|
|
5
|
+
width: 350px;
|
|
6
|
+
z-index: 999999;
|
|
7
|
+
box-sizing: border-box;
|
|
8
|
+
|
|
9
|
+
.toast-content {
|
|
10
|
+
//@include material-card();
|
|
11
|
+
margin-bottom: 10px;
|
|
12
|
+
position: relative;
|
|
13
|
+
opacity: 0;
|
|
14
|
+
margin-top: 40px;
|
|
15
|
+
box-sizing: border-box;
|
|
16
|
+
font-size: 16px !important;
|
|
17
|
+
border-left: none !important;
|
|
18
|
+
height: 0 !important;
|
|
19
|
+
overflow: hidden;
|
|
20
|
+
transition: all 0.25s ease;
|
|
21
|
+
|
|
22
|
+
.content {
|
|
23
|
+
padding: 15px 10px;
|
|
24
|
+
line-height: 28px;
|
|
25
|
+
|
|
26
|
+
&:before {
|
|
27
|
+
@include fonticon();
|
|
28
|
+
margin-right: 10px;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
&.show {
|
|
33
|
+
margin-top: 10px !important;
|
|
34
|
+
opacity: 1;
|
|
35
|
+
height: auto !important;
|
|
36
|
+
overflow: auto !important;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
&.confirm {
|
|
40
|
+
color: darken($green, 35%);
|
|
41
|
+
background-color: lighten($green, 30%);
|
|
42
|
+
|
|
43
|
+
.content:before {
|
|
44
|
+
content: "\e871";
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.timer {
|
|
48
|
+
background-color: darken($green, 15%);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
&.info {
|
|
53
|
+
color: darken($cyan, 35%);
|
|
54
|
+
background-color: lighten($cyan, 30%);
|
|
55
|
+
|
|
56
|
+
.content:before {
|
|
57
|
+
content: "\e84b";
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.timer {
|
|
61
|
+
background-color: darken($cyan, 15%);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
&.warning {
|
|
66
|
+
color: darken($warning-color, 35%);
|
|
67
|
+
background-color: lighten($warning-color, 30%);
|
|
68
|
+
|
|
69
|
+
.content:before {
|
|
70
|
+
content: "\e903";
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.timer {
|
|
74
|
+
background-color: darken($warning-color, 15%);
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
&.info,
|
|
79
|
+
&.warning {
|
|
80
|
+
.content:before {
|
|
81
|
+
font-size: 20px !important;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.timer {
|
|
86
|
+
width: 100%;
|
|
87
|
+
position: absolute;
|
|
88
|
+
bottom: 0;
|
|
89
|
+
left: 0;
|
|
90
|
+
height: 4px;
|
|
91
|
+
border-bottom-left-radius: 2px;
|
|
92
|
+
border-bottom-right-radius: 2px;
|
|
93
|
+
transition-timing-function: linear;
|
|
94
|
+
transition-property: all;
|
|
95
|
+
transition-duration: 3s;
|
|
96
|
+
|
|
97
|
+
&.animation {
|
|
98
|
+
width: 0;
|
|
99
|
+
border-bottom-right-radius: 0;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
@@ -200,7 +200,7 @@ $absence-button-width: 20px;
|
|
|
200
200
|
position: absolute;
|
|
201
201
|
top: 50%;
|
|
202
202
|
margin-top: calc(($absence-button-width + 1px) / -2);
|
|
203
|
-
border-radius: calc($absence-button-width/2) + 1px;
|
|
203
|
+
border-radius: calc(($absence-button-width / 2) + 1px);
|
|
204
204
|
border: solid 1px #929292;
|
|
205
205
|
transition: all 0.3s ease;
|
|
206
206
|
background-color: $white;
|
|
@@ -248,9 +248,10 @@ $absence-button-width: 20px;
|
|
|
248
248
|
|
|
249
249
|
> div {
|
|
250
250
|
width: 44px;
|
|
251
|
-
height: calc($student-height/3);
|
|
251
|
+
height: calc($student-height / 3);
|
|
252
252
|
background-color: pink;
|
|
253
|
-
border-radius: calc($student-height/5);
|
|
253
|
+
border-radius: calc($student-height / 5);
|
|
254
|
+
|
|
254
255
|
|
|
255
256
|
&.absence {
|
|
256
257
|
background-color: $presences-red;
|
|
@@ -300,7 +301,7 @@ $absence-button-width: 20px;
|
|
|
300
301
|
position: absolute;
|
|
301
302
|
top: 50%;
|
|
302
303
|
margin-top: calc(($absence-button-width + 1px) / -2);
|
|
303
|
-
border-radius: calc($absence-button-width/2) + 1px;
|
|
304
|
+
border-radius: calc(($absence-button-width / 2) + 1px);
|
|
304
305
|
border: solid 1px #929292;
|
|
305
306
|
transition: all 0.3s ease;
|
|
306
307
|
background-color: $white;
|
|
@@ -23,7 +23,7 @@ $md-radio-ripple-size: 15px;
|
|
|
23
23
|
display: inline-block;
|
|
24
24
|
height: $md-radio-size;
|
|
25
25
|
position: relative;
|
|
26
|
-
padding: 0 ($md-radio-size + 10px);
|
|
26
|
+
padding: 0 calc($md-radio-size + 10px);
|
|
27
27
|
margin-bottom: 0;
|
|
28
28
|
cursor: pointer;
|
|
29
29
|
vertical-align: bottom;
|
|
@@ -44,8 +44,8 @@ $md-radio-ripple-size: 15px;
|
|
|
44
44
|
&:after {
|
|
45
45
|
top: calc($md-radio-size / 2 - $md-radio-checked-size / 2 - 0.2px);
|
|
46
46
|
left: calc($md-radio-size / 2 - $md-radio-checked-size / 2 - 0.2px);
|
|
47
|
-
width
|
|
48
|
-
height
|
|
47
|
+
width:$md-radio-checked-size;
|
|
48
|
+
height:$md-radio-checked-size;
|
|
49
49
|
transform: scale(0);
|
|
50
50
|
background: $md-radio-checked-color;
|
|
51
51
|
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
.sniplet.calendarBooking {
|
|
2
|
+
|
|
3
|
+
&-bookingFormBody {
|
|
4
|
+
float: unset !important;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
&-bookingInfoBox {
|
|
8
|
+
border: 1px solid;
|
|
9
|
+
border-color: rgba($darkest-grey, 0.2);
|
|
10
|
+
border-radius: 2px;
|
|
11
|
+
|
|
12
|
+
&-bookingInfo {
|
|
13
|
+
color: unset;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
}
|