ode-csslib 4.0.7-dev.202301270853 → 4.0.7-feat-explorer.202302201123

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.
Files changed (38) hide show
  1. package/dist/index.css +4 -4
  2. package/dist/index.css.map +1 -1
  3. package/dist/version.txt +1 -1
  4. package/package.json +1 -1
  5. package/scss/_crisscross-mobile.scss +2 -2
  6. package/scss/icons/_pictos.scss +8 -2
  7. package/scss/index.css +56096 -0
  8. package/scss/index.css.map +1 -0
  9. package/scss/mobile/_tablette.scss +4 -3
  10. package/scss/modules/_navigations.scss +2 -2
  11. package/scss/modules/_profil.scss +39 -0
  12. package/scss/specifics/cahier-de-textes/components/fixCalendarHRFirefox.css +3 -0
  13. package/scss/specifics/cahier-de-textes/components/fixCalendarHRFirefox.css.map +1 -0
  14. package/scss/specifics/calendar/components/additional.css +156 -0
  15. package/scss/specifics/calendar/components/additional.css.map +1 -0
  16. package/scss/specifics/calendar/components/fixCalendar.css +16 -0
  17. package/scss/specifics/calendar/components/fixCalendar.css.map +1 -0
  18. package/scss/specifics/calendar/components/jquery.timepicker.css +73 -0
  19. package/scss/specifics/calendar/components/jquery.timepicker.css.map +1 -0
  20. package/scss/specifics/calendar/components/timepicker.css +157 -0
  21. package/scss/specifics/calendar/components/timepicker.css.map +1 -0
  22. package/scss/specifics/calendar/components/toasts.scss +6 -5
  23. package/scss/specifics/edt/components/fixCalendarHRFirefox.css +5 -0
  24. package/scss/specifics/edt/components/fixCalendarHRFirefox.css.map +1 -0
  25. package/scss/specifics/magneto/_mixins.scss +31 -1
  26. package/scss/specifics/magneto/components/_icons.scss +35 -0
  27. package/scss/specifics/magneto/components/_index.scss +1 -0
  28. package/scss/specifics/magneto/components/_scrollbar.scss +17 -0
  29. package/scss/specifics/magneto/components/containers/_board-read.scss +46 -0
  30. package/scss/specifics/magneto/components/containers/_board.scss +8 -4
  31. package/scss/specifics/magneto/components/directives/_board-manage-lightbox.scss +14 -0
  32. package/scss/specifics/magneto/components/directives/_card-list-item.scss +15 -3
  33. package/scss/specifics/magneto/components/directives/_card-list.scss +22 -2
  34. package/scss/specifics/magneto/components/directives/_index.scss +1 -0
  35. package/scss/specifics/magneto/components/directives/_section-list.scss +97 -0
  36. package/scss/specifics/presences-common/common.css +124 -0
  37. package/scss/specifics/presences-common/common.css.map +1 -0
  38. package/scss/specifics/statistics-presences/indicators/_global.scss +15 -2
@@ -1,4 +1,6 @@
1
1
  .board-read-container {
2
+
3
+
2
4
  display: flex;
3
5
  background: $magneto-white;
4
6
  min-height: calc(100vh - 124px);
@@ -40,4 +42,48 @@
40
42
  font-size: 24px;
41
43
  }
42
44
 
45
+ .nav-container {
46
+ background-color: #f1f5f8;
47
+ width: 60%;
48
+ border-bottom-right-radius: 24px;
49
+ border-top-right-radius: 24px;
50
+ box-shadow: 0 3px 12px rgb(0 0 0 / 25%);
51
+ line-height: 5vh;
52
+ padding: 16px;
53
+ }
54
+
55
+ .section-container {
56
+ width: 100%;
57
+ display: flex;
58
+ flex-direction: column;
59
+ }
60
+
61
+ .li-container {
62
+ position: relative;
63
+ font-size: 24px;
64
+ font-weight: bold;
65
+ }
66
+
67
+ .truncate {
68
+ width: 90%;
69
+ @include noTextOverflow(1);
70
+ font-size: 14px;
71
+ &:hover {
72
+ color: #ecbe30 !important;
73
+ }
74
+ }
75
+
76
+ .show-section {
77
+ position: absolute;
78
+ top: 0;
79
+ right: 0;
80
+ }
81
+
82
+ nav ul {
83
+ list-style-type: none;
84
+ margin: 0;
85
+ padding: 0;
86
+ overflow: hidden;
87
+ }
88
+
43
89
  }
@@ -24,7 +24,7 @@
24
24
 
25
25
  &-description {
26
26
  height: 64px;
27
- overflow-y: scroll;
27
+ overflow-y: auto;
28
28
  }
29
29
  }
30
30
 
@@ -54,7 +54,7 @@
54
54
 
55
55
  &-description {
56
56
  height: 64px;
57
- overflow-y: scroll;
57
+ overflow-y: auto;
58
58
  }
59
59
 
60
60
  .create-button {
@@ -66,7 +66,10 @@
66
66
  display: flex;
67
67
  border-top: solid 1px $magneto-white-blue;
68
68
  border-bottom: solid 1px $magneto-white-blue;
69
- background: $magneto-lighter-grey;
69
+ background-size: cover;
70
+ &.no-background-image {
71
+ background: $magneto-lighter-light-grey;
72
+ }
70
73
  position: absolute;
71
74
 
72
75
  @include mobile {
@@ -78,8 +81,9 @@
78
81
  }
79
82
 
80
83
  &-list {
81
- min-height: 650px;
84
+ min-height: 80vh;
82
85
  width: 100%;
86
+ overflow-x: auto;
83
87
 
84
88
  .empty-state {
85
89
  display: flex;
@@ -8,6 +8,9 @@
8
8
  &-body {
9
9
  display: flex;
10
10
  &-image-select {
11
+ &.small {
12
+ width: 120px !important;
13
+ }
11
14
  width: 240px;
12
15
  image-select {
13
16
  img {
@@ -29,5 +32,16 @@
29
32
  resize: none;
30
33
  }
31
34
  }
35
+
36
+ &-layout-container {
37
+ display: flex;
38
+ gap:30px;
39
+ }
32
40
  }
41
+
42
+ .display-icons {
43
+ font-size: 56px !important;
44
+ vertical-align: middle;
45
+ }
46
+
33
47
  }
@@ -35,16 +35,20 @@
35
35
  gap: 5px;
36
36
  align-items: center;
37
37
  display: flex;
38
+
38
39
  &.reduced-format {
39
40
  height: 20% !important;
40
41
  }
42
+
41
43
  &-creation {
42
44
  margin-right: 20px;
43
45
  display: flex;
44
46
  flex-direction: column;
47
+
45
48
  &-user {
46
49
  @include noTextOverflow(1);
47
50
  }
51
+
48
52
  &-date {
49
53
  color: $magneto-light-grey;
50
54
  font-size: 12px;
@@ -105,14 +109,13 @@
105
109
  background-color: $magneto-white;
106
110
  border: 5px solid $magneto-white;
107
111
  border-top-right-radius: 10px;
108
- border-bottom-left-radius: 5px;
109
112
  position: absolute;
110
113
  bottom: 0;
111
114
  left: 0;
112
115
  z-index: 1;
113
116
 
114
117
  i {
115
- font-size : $spacing-M;
118
+ font-size: $spacing-M;
116
119
  }
117
120
  }
118
121
 
@@ -127,26 +130,35 @@
127
130
  }
128
131
 
129
132
  &-infos {
130
- flex-direction: column;
131
133
  height: 20%;
132
134
 
133
135
  &-title {
134
136
  font-size: 16px;
135
137
  height: 10% !important;
136
138
  font-weight: bold;
139
+
137
140
  &-ellipsis {
138
141
  @include noTextOverflow(1);
139
142
  }
143
+
140
144
  &.reduced-format {
141
145
  height: 20% !important;
142
146
  }
143
147
  }
148
+
149
+ &-locked {
150
+ position: absolute;
151
+ bottom: 5px;
152
+ right: 5px;
153
+ font-size: 20px;
154
+ }
144
155
  }
145
156
 
146
157
  &-caption {
147
158
  color: $magneto-black;
148
159
  font-style: italic;
149
160
  font-size: 0.9em;
161
+ width: 90%;
150
162
  @include noTextOverflow(2);
151
163
  }
152
164
 
@@ -1,7 +1,27 @@
1
1
  .card-list {
2
- background: $magneto-lighter-grey;
2
+ &.no-background-image {
3
+ background: $magneto-lighter-light-grey;
4
+ }
3
5
  gap: 16px;
4
- justify-content: center;
6
+ flex-wrap: wrap;
7
+
8
+ &-free {
9
+ justify-content: center;
10
+ }
11
+
12
+ &-vertical {
13
+ justify-content: center;
14
+ overflow-y: auto;
15
+ overflow-x: hidden;
16
+ height: 85vh;
17
+ }
18
+
19
+ &-horizontal {
20
+ min-height: 75px;
21
+ overflow-x: auto;
22
+ flex-wrap: nowrap;
23
+ padding-bottom: 20px;
24
+ }
5
25
  padding-top: 15px;
6
26
 
7
27
  @include mobile {
@@ -8,6 +8,7 @@
8
8
  @import 'card-navbar';
9
9
  @import 'card-move-lightbox';
10
10
  @import 'card-duplicate-move-lightbox';
11
+ @import 'section-list';
11
12
  @import 'board-list-folder';
12
13
  @import 'board-manage-lightbox';
13
14
  @import 'search-bar';
@@ -0,0 +1,97 @@
1
+ .sections-list {
2
+ i.magneto-card-settings {
3
+ font-size: 25px;
4
+ position: absolute;
5
+ right: 5px;
6
+ }
7
+
8
+ display: flex;
9
+ justify-content: space-between;
10
+ overflow-y: hidden;
11
+
12
+ &-horizontal {
13
+ flex-direction: column;
14
+ }
15
+
16
+ &-content {
17
+ flex: 1;
18
+
19
+ &-horizontal {
20
+ overflow-y: unset;
21
+ height: 100% !important;
22
+ }
23
+
24
+ display: flex;
25
+
26
+ @include mobile {
27
+ min-width: 100%;
28
+ }
29
+
30
+ @include tablet {
31
+ min-width: 50%;
32
+ }
33
+
34
+ @include small-desktop {
35
+ min-width: 33%;
36
+ }
37
+
38
+ @include medium-desktop {
39
+ min-width: 25%;
40
+ }
41
+
42
+ @include large-desktop {
43
+ min-width: 20%;
44
+ }
45
+
46
+ flex-direction: column;
47
+
48
+ &-container {
49
+ padding: 10px;
50
+ margin-top: 10px;
51
+ background-color: #fff;
52
+ border-radius: 50px;
53
+ display: flex;
54
+ width: 85%;
55
+ height: auto;
56
+ position: relative;
57
+ align-items: center;
58
+ margin-left: auto;
59
+ margin-right: auto;
60
+ }
61
+
62
+ &-container:focus-within {
63
+ border-bottom: 1px solid #ff8500;
64
+ }
65
+
66
+ &-title {
67
+ width: 85%;
68
+ align-self: center;
69
+ text-align: center;
70
+ margin-left: auto;
71
+ margin-right: auto;
72
+ font-size: 20px;
73
+ &.input {
74
+ outline: none;
75
+ box-shadow: none;
76
+ border-bottom: none !important;
77
+ margin-bottom: 1px !important;
78
+ margin-top: 0 !important;
79
+ }
80
+
81
+ &-margin {
82
+ margin: auto !important;
83
+ margin-top: 10px !important;
84
+ }
85
+
86
+ &-truncate {
87
+ margin: auto;
88
+ width: 75%;
89
+ @include noTextOverflow(1);
90
+ }
91
+ }
92
+ }
93
+
94
+ &-content-vertical:not(:first-child) {
95
+ border-left: solid 2px rgba(211, 211, 211, .5);
96
+ }
97
+ }
@@ -0,0 +1,124 @@
1
+ .pagination {
2
+ font-size: 0;
3
+ text-align: center;
4
+ }
5
+ .pagination-item {
6
+ display: inline-block;
7
+ vertical-align: top;
8
+ font-size: 16px;
9
+ font-weight: bold;
10
+ margin: 0 2px;
11
+ }
12
+ .pagination-item.arrow > .pagination-item-link {
13
+ font-size: 24px;
14
+ color: #000000;
15
+ }
16
+ .pagination-item.arrow > .pagination-item-link:hover {
17
+ background-color: #ffb600;
18
+ border-color: #ffb600;
19
+ color: #fff;
20
+ }
21
+ .pagination-item-link {
22
+ position: relative;
23
+ display: block;
24
+ text-align: center;
25
+ min-width: 24px;
26
+ line-height: 42px;
27
+ color: #7a7a7a;
28
+ transition: 0.3s;
29
+ }
30
+ .pagination-item-link:hover {
31
+ background-color: #ffb600;
32
+ border-color: #ffb600;
33
+ color: #fff;
34
+ }
35
+ .pagination-item.active > .pagination-item-link {
36
+ background-color: #ffb600;
37
+ border-color: #ffb600;
38
+ color: #fff;
39
+ }
40
+ .pagination-item:nth-child(3), .pagination-item:nth-child(5) {
41
+ pointer-events: none;
42
+ }
43
+
44
+ .pagination-item:empty::before {
45
+ display: none;
46
+ }
47
+
48
+ option:disabled {
49
+ display: none;
50
+ }
51
+
52
+ .selected-child {
53
+ display: flex;
54
+ }
55
+ .selected-child-select {
56
+ margin: 0 15px 0 0;
57
+ }
58
+
59
+ @media (max-width: 768px) {
60
+ .presences-nav-bar {
61
+ margin-left: 30px;
62
+ }
63
+ }
64
+ .presences-nav-bar nav {
65
+ height: 80px !important;
66
+ }
67
+ .presences-nav-bar nav[side-nav] {
68
+ position: fixed;
69
+ left: 0;
70
+ top: 50px;
71
+ z-index: 10001;
72
+ transition: all 250ms ease;
73
+ box-sizing: border-box;
74
+ width: 0;
75
+ overflow: hidden;
76
+ padding: 0;
77
+ background-color: #F0F0F0;
78
+ border-radius: 2px;
79
+ border-left: none;
80
+ box-shadow: 0 6px 18px rgba(0, 0, 0, 0.26);
81
+ }
82
+ .presences-nav-bar nav[side-nav].slide {
83
+ width: 155px;
84
+ padding: 0 10px;
85
+ overflow: unset;
86
+ }
87
+
88
+ .menu .menu-item > a {
89
+ color: #000000;
90
+ font-size: 18px;
91
+ padding: 0 10px;
92
+ text-align: center;
93
+ margin: 0 5px;
94
+ height: 50px;
95
+ display: inline-block;
96
+ box-sizing: border-box;
97
+ line-height: 50px;
98
+ }
99
+ .menu .menu-item > a::after {
100
+ content: " ";
101
+ display: block;
102
+ height: 3px;
103
+ background: #ffb600;
104
+ border-radius: 2px;
105
+ margin-top: -10px;
106
+ width: 0;
107
+ transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
108
+ }
109
+ .menu .menu-item > a.current-state {
110
+ color: #ffb600;
111
+ background-color: rgba(255, 255, 255, 0.6);
112
+ border-top-right-radius: 7px;
113
+ border-top-left-radius: 7px;
114
+ font-weight: bold;
115
+ }
116
+ .menu .menu-item > a.current-state::after {
117
+ width: 100%;
118
+ }
119
+
120
+ export-form {
121
+ display: flex;
122
+ flex-direction: row;
123
+ justify-content: flex-end;
124
+ }/*# sourceMappingURL=common.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["components/_pagination.scss","common.css","components/_select.scss","components/_select-children.scss","common.scss","components/_presences-nav-bar.scss","components/_menu.scss","components/_export-form.scss"],"names":[],"mappings":"AAaA;EACE,YAAA;EACA,kBAAA;ACZF;ADcE;EACE,qBAAA;EACA,mBAAA;EACA,eAba;EAcb,iBAAA;EACA,aAAA;ACZJ;ADcI;EACE,eAjBY;EAkBZ,cAzBE;ACaR;ADcM;EACE,yBA1BM;EA2BN,qBA3BM;EA4BN,WA/BA;ACmBR;ADgBI;EACE,kBAAA;EACA,cAAA;EACA,kBAAA;EACA,eAlCO;EAmCP,iBA9BY;EA+BZ,cAvCM;EAwCN,gBAAA;ACdN;ADgBM;EACE,yBA1CM;EA2CN,qBA3CM;EA4CN,WA/CA;ACiCR;ADkBI;EACE,yBAjDQ;EAkDR,qBAlDQ;EAmDR,WAtDE;ACsCR;ADmBI;EACE,oBAAA;ACjBN;;ADsBA;EACE,aAAA;ACnBF;;AC7CA;EACE,aAAA;ADgDF;;AEjDA;EACE,aAAA;AFoDF;AElDE;EACE,kBAAA;AFoDJ;;AGpDE;ECFF;IAEI,iBAAA;EJyDF;AACF;AIvDE;EACE,uBAAA;AJyDJ;AItDE;EACE,eAAA;EACA,OAAA;EACA,SAAA;EACA,cAAA;EACA,0BAAA;EACA,sBAAA;EACA,QAAA;EACA,gBAAA;EACA,UAAA;EACA,yBArBmB;EAsBnB,kBAAA;EACA,iBAAA;EACA,0CAAA;AJwDJ;AItDI;EACE,YAAA;EACA,eAAA;EACA,eAAA;AJwDN;;AKpFE;EACE,cNDI;EMEJ,eAAA;EACA,eAAA;EACA,kBAAA;EACA,aAAA;EACA,YAAA;EACA,qBAAA;EACA,sBAAA;EACA,iBAAA;ALuFJ;AKrFI;EACE,YAAA;EACA,cAAA;EACA,WAAA;EACA,mBNbQ;EMcR,kBAAA;EACA,iBAAA;EACA,QAAA;EACA,qDAAA;ALuFN;AKpFI;EACE,cNrBQ;EMsBR,0CFxBO;EEyBP,4BAAA;EACA,2BAAA;EACA,iBAAA;ALsFN;AKpFM;EACE,WAAA;ALsFR;;AMrHA;EACE,aAAA;EACA,mBAAA;EACA,yBAAA;ANwHF","file":"common.css"}
@@ -43,11 +43,14 @@
43
43
 
44
44
  .reload {
45
45
  cursor: pointer;
46
+
46
47
  &:hover {
47
48
  color: $statistics-presences-main;
48
49
  }
50
+
49
51
  &.disabled {
50
52
  color: $statistics-presences-middle-grey;
53
+
51
54
  &:hover {
52
55
  color: $statistics-presences-middle-grey;
53
56
  }
@@ -56,8 +59,18 @@
56
59
 
57
60
  .flex-row {
58
61
  min-height: 0 !important;
59
- padding-top: 0 !important;
60
- padding-bottom: 0 !important;
62
+ }
63
+
64
+ .cell-values.tr {
65
+ align-items: stretch;
66
+
67
+ .td {
68
+ display: flex;
69
+ justify-content: center;
70
+ align-items: center;
71
+ height: revert;
72
+ padding: 5px
73
+ }
61
74
  }
62
75
 
63
76
  }