ode-csslib 4.0.9 → 4.0.10-dev.202304211435
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/assets/fonts/generic-icons/generic-icons.svg +2 -0
- package/assets/fonts/generic-icons/generic-icons.ttf +0 -0
- package/assets/fonts/generic-icons/generic-icons.woff +0 -0
- package/dist/fonts/generic-icons/generic-icons.svg +2 -0
- package/dist/fonts/generic-icons/generic-icons.ttf +0 -0
- package/dist/fonts/generic-icons/generic-icons.woff +0 -0
- package/dist/index.css +4 -4
- package/dist/index.css.map +1 -1
- package/dist/version.txt +1 -1
- package/package.json +1 -1
- package/scss/specifics/calendar/components/calendar.scss +6 -6
- package/scss/specifics/crre/_crre.scss +11 -0
- package/scss/specifics/formulaire/components/_edit-form.scss +10 -2
- package/scss/specifics/formulaire/components/_icon.scss +14 -1
- package/scss/specifics/formulaire/components/_main.scss +3 -0
- package/scss/specifics/formulaire/components/_result-form.scss +12 -0
- package/scss/specifics/formulaire/components/containers/cursor/_question-type-cursor.scss +15 -8
- package/scss/specifics/lystore/components/_index.scss +3 -1
- package/scss/specifics/lystore/components/directives/_campaign-titles-card.scss +21 -0
- package/scss/specifics/lystore/components/title/_title-delete-lightbox.scss +6 -0
- package/scss/specifics/support/_mixins.scss +48 -0
- package/scss/specifics/support/_support.scss +1 -0
- package/scss/specifics/support/generic/_edit-event.scss +73 -0
- package/scss/specifics/support/generic/_icons.scss +21 -0
- package/scss/specifics/support/generic/_index.scss +2 -0
package/dist/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
entcore-css-lib=4.0.
|
|
1
|
+
entcore-css-lib=4.0.10 21/04/2023 14:35:49
|
package/package.json
CHANGED
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
background-color: #ec6045 !important;
|
|
27
27
|
}
|
|
28
28
|
.color-selector .cyan, .row .cyan , nav.vertical ul li a.cyan, .calendarTooltip>.cyan {
|
|
29
|
-
background-color: $calendar-blue
|
|
29
|
+
background-color: $calendar-blue;
|
|
30
30
|
}
|
|
31
31
|
.color-selector .grey, .row .grey, nav.vertical ul li a.grey, .calendarTooltip>.grey {
|
|
32
32
|
background-color: #b7b8ba !important;
|
|
@@ -156,10 +156,14 @@ calendar {
|
|
|
156
156
|
}
|
|
157
157
|
}
|
|
158
158
|
|
|
159
|
-
legend, .legend>.month-day
|
|
159
|
+
legend, .legend>.month-day {
|
|
160
160
|
background: $calendar-blue !important;
|
|
161
161
|
}
|
|
162
162
|
|
|
163
|
+
button.cyan {
|
|
164
|
+
background: $calendar-blue;
|
|
165
|
+
}
|
|
166
|
+
|
|
163
167
|
button.previous-timeslots, button.next-timeslots {
|
|
164
168
|
margin-right: 0px;
|
|
165
169
|
margin-left: 0px;
|
|
@@ -187,10 +191,6 @@ calendar {
|
|
|
187
191
|
}
|
|
188
192
|
}
|
|
189
193
|
|
|
190
|
-
h1 a {
|
|
191
|
-
color: $calendar-blue !important;
|
|
192
|
-
}
|
|
193
|
-
|
|
194
194
|
.top-spacing-four {
|
|
195
195
|
margin-top: 0px !important;
|
|
196
196
|
}
|
|
@@ -1759,6 +1759,17 @@ body.crre {
|
|
|
1759
1759
|
}
|
|
1760
1760
|
|
|
1761
1761
|
.crre {
|
|
1762
|
+
&-display-duplicate-basket {
|
|
1763
|
+
display: flex;
|
|
1764
|
+
flex-wrap: nowrap;
|
|
1765
|
+
gap: 4px;
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
&-display-duplicate-basket::before {
|
|
1769
|
+
content: "\2022"; /* code unicode pour le point */
|
|
1770
|
+
margin-right: 10px;
|
|
1771
|
+
}
|
|
1772
|
+
|
|
1762
1773
|
&-order-waiting {
|
|
1763
1774
|
&-header {
|
|
1764
1775
|
display: flex;
|
|
@@ -105,9 +105,11 @@
|
|
|
105
105
|
}
|
|
106
106
|
|
|
107
107
|
.question-type {
|
|
108
|
-
|
|
108
|
+
question-type-date, question-type-time, question-type-file {
|
|
109
|
+
font-size: 12px;
|
|
110
|
+
}
|
|
109
111
|
|
|
110
|
-
h4 {
|
|
112
|
+
h4, .add-choice {
|
|
111
113
|
font-size: 16px;
|
|
112
114
|
}
|
|
113
115
|
|
|
@@ -140,6 +142,12 @@
|
|
|
140
142
|
resize: none;
|
|
141
143
|
background: none;
|
|
142
144
|
}
|
|
145
|
+
|
|
146
|
+
.add-choice {
|
|
147
|
+
display: flex;
|
|
148
|
+
flex-direction: column;
|
|
149
|
+
align-items: center;
|
|
150
|
+
}
|
|
143
151
|
}
|
|
144
152
|
|
|
145
153
|
.question-bottom, .section-bottom {
|
|
@@ -82,9 +82,17 @@ i {
|
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
|
|
85
|
+
&.cursor {
|
|
86
|
+
&-pointer {
|
|
87
|
+
&:hover {
|
|
88
|
+
cursor: pointer;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
85
93
|
// Icons content
|
|
86
94
|
|
|
87
|
-
&.dropbtn::before{
|
|
95
|
+
&.dropbtn::before {
|
|
88
96
|
content: '\e912';
|
|
89
97
|
}
|
|
90
98
|
|
|
@@ -218,4 +226,9 @@ i {
|
|
|
218
226
|
font-family: 'formulaire-mdi';
|
|
219
227
|
content: "\F453";
|
|
220
228
|
}
|
|
229
|
+
|
|
230
|
+
&.i-restore::before {
|
|
231
|
+
font-family: 'formulaire-mdi';
|
|
232
|
+
content: "\F99A";
|
|
233
|
+
}
|
|
221
234
|
}
|
|
@@ -98,6 +98,10 @@
|
|
|
98
98
|
&-camembert, &-histogram {
|
|
99
99
|
display: flex;
|
|
100
100
|
justify-content: center;
|
|
101
|
+
|
|
102
|
+
&-cursor {
|
|
103
|
+
flex-direction: column;
|
|
104
|
+
}
|
|
101
105
|
}
|
|
102
106
|
|
|
103
107
|
.apexcharts-toolbar {
|
|
@@ -105,6 +109,14 @@
|
|
|
105
109
|
}
|
|
106
110
|
}
|
|
107
111
|
|
|
112
|
+
.custom-answers {
|
|
113
|
+
margin-top: 2%;
|
|
114
|
+
|
|
115
|
+
&-title {
|
|
116
|
+
font-style: italic;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
108
120
|
.buttons {
|
|
109
121
|
display: flex;
|
|
110
122
|
justify-content: space-between;
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
display: flex;
|
|
17
17
|
|
|
18
18
|
@media screen and (min-width: $formulaire-screen-tablet) {
|
|
19
|
-
width:
|
|
19
|
+
width: 30%;
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
}
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
&-wrapper {
|
|
45
45
|
display: flex;
|
|
46
46
|
justify-content: space-between;
|
|
47
|
-
margin
|
|
47
|
+
margin: 2% 0;
|
|
48
48
|
}
|
|
49
49
|
|
|
50
50
|
&-label {
|
|
@@ -108,6 +108,8 @@
|
|
|
108
108
|
height: 16px;
|
|
109
109
|
width: 16px;
|
|
110
110
|
cursor: grabbing;
|
|
111
|
+
position: relative;
|
|
112
|
+
bottom: -3px;
|
|
111
113
|
z-index: 2;
|
|
112
114
|
}
|
|
113
115
|
|
|
@@ -118,6 +120,8 @@
|
|
|
118
120
|
height: 16px;
|
|
119
121
|
width: 16px;
|
|
120
122
|
cursor: grabbing;
|
|
123
|
+
position: relative;
|
|
124
|
+
bottom: -3px;
|
|
121
125
|
z-index: 2;
|
|
122
126
|
}
|
|
123
127
|
|
|
@@ -140,9 +144,11 @@
|
|
|
140
144
|
/***** Pin cursor styles *****/
|
|
141
145
|
.pin {
|
|
142
146
|
position: absolute;
|
|
143
|
-
left: calc(((
|
|
147
|
+
left: calc(((var(--value) - var(--min)) / (var(--max) - var(--min))) * 100%
|
|
148
|
+
- calc(((var(--value) - var(--min)) / (var(--max) - var(--min))) * 15px)
|
|
149
|
+
- 2px);
|
|
144
150
|
bottom: 35px;
|
|
145
|
-
width:
|
|
151
|
+
width: 22px;
|
|
146
152
|
height: 20px;
|
|
147
153
|
background-color: $formulaire-blue;
|
|
148
154
|
|
|
@@ -170,9 +176,10 @@
|
|
|
170
176
|
&::before {
|
|
171
177
|
position: absolute;
|
|
172
178
|
height: 10px;
|
|
173
|
-
width: calc((
|
|
179
|
+
width: calc((var(--value) - var(--min))/(var(--max) - var(--min)) * 100%
|
|
180
|
+
- calc((var(--value) - var(--min))/(var(--max) - var(--min)) * 15px));
|
|
174
181
|
bottom: 8px;
|
|
175
|
-
left:
|
|
182
|
+
left: 9px;
|
|
176
183
|
background-color: $formulaire-blue;
|
|
177
184
|
border-radius: 5px;
|
|
178
185
|
content: '';
|
|
@@ -182,9 +189,9 @@
|
|
|
182
189
|
&::after {
|
|
183
190
|
position: absolute;
|
|
184
191
|
height: 10px;
|
|
185
|
-
width: calc(100% -
|
|
192
|
+
width: calc(100% - 16px);
|
|
186
193
|
bottom: 8px;
|
|
187
|
-
left:
|
|
194
|
+
left: 9px;
|
|
188
195
|
background-color: #efefef;
|
|
189
196
|
border-radius: 5px;
|
|
190
197
|
content: '';
|
|
@@ -11,4 +11,6 @@
|
|
|
11
11
|
@import "./icons";
|
|
12
12
|
@import "./directives/order-preview";
|
|
13
13
|
@import "./directives/equipment-card";
|
|
14
|
-
@import "./directives/equipment-detail";
|
|
14
|
+
@import "./directives/equipment-detail";
|
|
15
|
+
@import "./directives/campaign-titles-card";
|
|
16
|
+
@import "./title/title-delete-lightbox";
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
.campaign-titles-card{
|
|
2
|
+
&-elem{
|
|
3
|
+
margin-right: 2px;
|
|
4
|
+
padding: 5px 30px 5px 10px;
|
|
5
|
+
border-radius: 10px;
|
|
6
|
+
margin-bottom: 5px;
|
|
7
|
+
background-color: #e9ebef;
|
|
8
|
+
color: #8c939e;
|
|
9
|
+
transition: all .25s ease-in-out;
|
|
10
|
+
position: relative;
|
|
11
|
+
font-size: 12px;
|
|
12
|
+
font-weight: bold;
|
|
13
|
+
&:hover{
|
|
14
|
+
border: orange solid 1px;
|
|
15
|
+
}
|
|
16
|
+
&-selected {
|
|
17
|
+
background-color: #8c939e;
|
|
18
|
+
color: $white;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/*Calendar module colors*/
|
|
2
|
+
$calendar-blue: #39a5ce;
|
|
3
|
+
$calendar-white: #ffffff;
|
|
4
|
+
$calendar-orange: #ff8500;
|
|
5
|
+
$calendar-black: #000000;
|
|
6
|
+
$calendar-grey: #8c939e;
|
|
7
|
+
$calendar-ode-grey: #3F454F;
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
/*Tooltip mixins*/
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
@mixin tooltipTemplate($width) {
|
|
14
|
+
font-family: Roboto;
|
|
15
|
+
visibility: hidden;
|
|
16
|
+
width: $width;
|
|
17
|
+
font-size: 12px;
|
|
18
|
+
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.26);
|
|
19
|
+
position: absolute;
|
|
20
|
+
background-color: $calendar-white;
|
|
21
|
+
color: $calendar-black;
|
|
22
|
+
padding: 10px;
|
|
23
|
+
border-radius: 5px;
|
|
24
|
+
z-index: 1;
|
|
25
|
+
opacity: 0;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
@mixin tooltipVisible() {
|
|
29
|
+
visibility: visible;
|
|
30
|
+
opacity: 1;
|
|
31
|
+
transition: opacity .6s;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
@mixin tooltipBottomArrow() {
|
|
35
|
+
content: ' ';
|
|
36
|
+
position: absolute;
|
|
37
|
+
border-left: 5px solid transparent;
|
|
38
|
+
border-right: 5px solid transparent;
|
|
39
|
+
border-top: 10px solid $calendar-white;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
@mixin tooltipTopArrow() {
|
|
43
|
+
content: ' ';
|
|
44
|
+
position: absolute;
|
|
45
|
+
border-left: 5px solid transparent;
|
|
46
|
+
border-right: 5px solid transparent;
|
|
47
|
+
border-bottom: 10px solid $calendar-white;
|
|
48
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
.editEvent {
|
|
2
|
+
&-time {
|
|
3
|
+
margin-bottom: 15px !important;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
&-itemColumn {
|
|
7
|
+
width: max-content;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
&-attachments {
|
|
11
|
+
display: flex;
|
|
12
|
+
flex-direction: column;
|
|
13
|
+
|
|
14
|
+
&-buttonSection {
|
|
15
|
+
display: flex;
|
|
16
|
+
justify-content: left;
|
|
17
|
+
|
|
18
|
+
i {
|
|
19
|
+
transform: rotate(-45deg);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
}
|
|
23
|
+
&-fileSection {
|
|
24
|
+
display: flex;
|
|
25
|
+
flex-wrap: wrap;
|
|
26
|
+
flex-direction: column;
|
|
27
|
+
|
|
28
|
+
&-list {
|
|
29
|
+
max-width: 150px;
|
|
30
|
+
|
|
31
|
+
&-item {
|
|
32
|
+
display: flex;
|
|
33
|
+
|
|
34
|
+
&-title {
|
|
35
|
+
color: $calendar-blue;
|
|
36
|
+
overflow: hidden;
|
|
37
|
+
text-overflow: ellipsis;
|
|
38
|
+
white-space: nowrap;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
&-cross {
|
|
42
|
+
font-size: 10px;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
&:hover .tooltip-title {
|
|
47
|
+
@include tooltipVisible();
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.tooltip-title {
|
|
51
|
+
@include tooltipTemplate(150px);
|
|
52
|
+
bottom: 33px;
|
|
53
|
+
margin-left: -47px;
|
|
54
|
+
|
|
55
|
+
&:after {
|
|
56
|
+
@include tooltipBottomArrow();
|
|
57
|
+
top: 100%;
|
|
58
|
+
left: 15%;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.content .flex-row {
|
|
67
|
+
height: 150px;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.content::after {
|
|
71
|
+
content: unset;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
i {
|
|
2
|
+
&.attachment::before {
|
|
3
|
+
content: "\e805";
|
|
4
|
+
font-family: 'generic-icons';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
&.cross::before {
|
|
8
|
+
content: "\e866";
|
|
9
|
+
font-family: 'generic-icons';
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
&.sync::before {
|
|
13
|
+
content: "\F04E6";
|
|
14
|
+
font-family: 'calendar-material-icons';
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
&.loading::before {
|
|
18
|
+
content: '\e85a';
|
|
19
|
+
font-family: 'generic-icons';
|
|
20
|
+
}
|
|
21
|
+
}
|