ode-bootstrap 1.1.1 → 1.1.2

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/version.txt CHANGED
@@ -1 +1 @@
1
- ode-bootstrap=1.1.1 29/11/2022 19:50:06
1
+ ode-bootstrap=1.1.2 13/01/2023 16:27:29
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ode-bootstrap",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Open Digital Education CSS framework based on bootstrap",
5
5
  "scripts": {
6
6
  "copy-fonts": "cpr node_modules/entcore-generic-icons/fonts/ assets/fonts/generic-icons/ -o && cpr node_modules/@fortawesome/fontawesome-free/webfonts assets/fonts/fa/ -o",
@@ -1,75 +1,75 @@
1
1
  $avatar-size: 65px !default;
2
2
 
3
3
  .avatar {
4
- display: inline-block;
5
- vertical-align: middle;
6
- border-radius: 50%;
4
+ display: inline-block;
5
+ vertical-align: middle;
6
+ border-radius: 50%;
7
7
 
8
- &--20 {
9
- width: 20px;
10
- height: 20px;
11
- }
8
+ &--20 {
9
+ width: 20px;
10
+ height: 20px;
11
+ }
12
12
 
13
- &--25 {
14
- width: 25px;
15
- height: 25px;
16
- }
17
- &--50 {
18
- width: 50px;
19
- height: 50px;
20
- }
13
+ &--25 {
14
+ width: 25px;
15
+ height: 25px;
16
+ }
17
+ &--50 {
18
+ width: 50px;
19
+ height: 50px;
20
+ }
21
21
 
22
- &--100 {
23
- width: 100px;
24
- height: 100px;
25
- }
22
+ &--100 {
23
+ width: 100px;
24
+ height: 100px;
25
+ }
26
26
 
27
- &-social {
28
- position: relative;
27
+ &-social {
28
+ position: relative;
29
29
 
30
- @include circle($avatar-size);
30
+ @include circle($avatar-size);
31
31
 
32
- .photo {
33
- img {
34
- @include avatar-image($avatar-size);
35
- }
36
- }
32
+ .photo {
33
+ img {
34
+ @include avatar-image($avatar-size);
35
+ }
36
+ }
37
37
 
38
- .circle {
39
- @include have-child-in-middle();
40
- @include circle(calc(#{$avatar-size} / 1.8));
38
+ .circle {
39
+ @include have-child-in-middle();
40
+ @include circle(calc(#{$avatar-size} / 1.8));
41
41
 
42
- position: absolute;
43
- right: 0;
44
- bottom: 0;
45
- font-size: calc(#{$avatar-size} / 3.5);
46
- color: $white;
47
- transform: translate(20%, 20%);
48
- }
42
+ position: absolute;
43
+ right: 0;
44
+ bottom: 0;
45
+ font-size: calc(#{$avatar-size} / 3.5);
46
+ color: $white;
47
+ transform: translate(20%, 20%);
49
48
  }
49
+ }
50
50
 
51
- &-link {
52
- display: inline-block;
53
- cursor: pointer;
51
+ &-link {
52
+ display: inline-block;
53
+ cursor: pointer;
54
54
 
55
- img {
56
- @include avatar-image($avatar-size);
57
- background: #ffff;
58
- }
55
+ img {
56
+ @include avatar-image($avatar-size);
57
+ background: #ffff;
59
58
  }
59
+ }
60
60
 
61
- .navbar.no-1d & {
62
- margin-top: -0.3rem;
63
- width: 3rem;
64
- max-width: 3rem;
65
- height: 3rem;
66
- background-color: $white;
61
+ .navbar.no-1d & {
62
+ margin-top: -0.3rem;
63
+ width: 3rem;
64
+ max-width: 3rem;
65
+ height: 3rem;
66
+ background-color: $white;
67
67
 
68
- @include media-breakpoint-down(md) {
69
- display: inline-block;
70
- width: 2rem;
71
- max-width: 2rem;
72
- height: 2rem;
73
- }
68
+ @include media-breakpoint-down(md) {
69
+ display: inline-block;
70
+ width: 2rem;
71
+ max-width: 2rem;
72
+ height: 2rem;
74
73
  }
74
+ }
75
75
  }
@@ -4,179 +4,177 @@ $overlay-width: calc(#{$domino-width} / 1.5);
4
4
 
5
5
  /* COMPONENT */
6
6
  .dominos {
7
- display: flex;
8
- flex-wrap: wrap;
9
- align-content: flex-start;
10
- justify-content: center;
7
+ display: flex;
8
+ flex-wrap: wrap;
9
+ align-content: flex-start;
10
+ justify-content: center;
11
11
  }
12
12
 
13
13
  .domino {
14
- position: relative;
15
- margin: 10px;
16
- cursor: pointer;
17
- background-color: $white;
18
- border: 1px solid $gray-300;
19
- border-radius: $border-radius-lg;
20
-
21
- @extend .transition-hover;
22
-
23
- &-image {
24
- position: relative;
25
- display: flex;
26
- align-items: flex-start;
27
- justify-content: space-between;
28
- height: 120px;
29
- border-radius: $border-radius-lg $border-radius-lg 0 0;
30
-
31
- &::before {
32
- position: absolute;
33
- left: 0;
34
- top: 0;
35
- content: '';
36
- width: 100%;
37
- height: 100%;
38
- background: currentColor;
39
- opacity: 0.1;
40
- border-radius: $border-radius-lg $border-radius-lg 0 0;
41
- }
42
-
43
- img {
44
- width: 100%;
45
- height: 100%;
46
- border-radius: $border-radius-lg $border-radius-lg 0 0;
47
- object-fit: cover;
48
- }
49
- }
14
+ position: relative;
15
+ margin: 10px;
16
+ cursor: pointer;
17
+ background-color: $white;
18
+ border: 1px solid $gray-300;
19
+ border-radius: $border-radius-lg;
50
20
 
51
- &-overlay {
52
- position: absolute;
53
- top: 0;
54
- left: 0;
55
- display: flex;
56
- align-items: flex-start;
57
- justify-content: space-between;
58
- width: 100%;
59
- height: 100%;
60
- padding: 5px 10px;
61
- color: $white;
62
- border-radius: $border-radius-lg $border-radius-lg 0 0;
63
-
64
- span {
65
- font-size: 1.2rem;
66
- font-weight: bold;
67
- }
21
+ @extend .transition-hover;
68
22
 
69
- i {
70
- margin: 3px;
71
- font-weight: normal;
72
- }
23
+ &-image {
24
+ position: relative;
25
+ display: flex;
26
+ align-items: flex-start;
27
+ justify-content: space-between;
28
+ height: 120px;
29
+ border-radius: $border-radius-lg $border-radius-lg 0 0;
30
+
31
+ &::before {
32
+ position: absolute;
33
+ left: 0;
34
+ top: 0;
35
+ content: "";
36
+ width: 100%;
37
+ height: 100%;
38
+ background: currentColor;
39
+ opacity: 0.1;
40
+ border-radius: $border-radius-lg $border-radius-lg 0 0;
41
+ }
73
42
 
74
- & .left,
75
- & .right {
76
- opacity: 0;
77
- }
43
+ img {
44
+ width: 100%;
45
+ height: 100%;
46
+ border-radius: $border-radius-lg $border-radius-lg 0 0;
47
+ object-fit: cover;
78
48
  }
49
+ }
79
50
 
80
- &.folder .domino-image,
81
- &.file .domino-image {
82
- align-items: center;
83
- justify-content: center;
84
-
85
- > i {
86
- font-size: 5rem;
87
- }
51
+ &-overlay {
52
+ position: absolute;
53
+ top: 0;
54
+ left: 0;
55
+ display: flex;
56
+ align-items: flex-start;
57
+ justify-content: space-between;
58
+ width: 100%;
59
+ height: 100%;
60
+ padding: 5px 10px;
61
+ color: $white;
62
+ border-radius: $border-radius-lg $border-radius-lg 0 0;
63
+
64
+ span {
65
+ font-size: 1.2rem;
66
+ font-weight: bold;
88
67
  }
89
-
90
- &.folder .domino-image {
91
- color: $gray-600;
68
+
69
+ i {
70
+ margin: 3px;
71
+ font-weight: normal;
92
72
  }
93
73
 
94
- &-infos {
95
- display: flex;
96
- flex-direction: column;
97
- justify-content: center;
98
- height: calc(#{$domino-width} - #{$overlay-width});
99
- padding: 10px;
74
+ & .left,
75
+ & .right {
76
+ opacity: 0;
77
+ }
78
+ }
100
79
 
101
- .domino-title {
102
- margin-bottom: 5px;
103
- font-size: 1.4rem;
104
- font-weight: bold;
105
- color: $gray-700;
80
+ &.folder .domino-image,
81
+ &.file .domino-image {
82
+ align-items: center;
83
+ justify-content: center;
106
84
 
107
- @extend .text-truncate;
108
- }
85
+ > i {
86
+ font-size: 5rem;
87
+ }
88
+ }
109
89
 
110
- .domino-info {
111
- font-size: 1.2rem;
112
- color: $gray-600;
90
+ &.folder .domino-image {
91
+ color: $gray-600;
92
+ }
113
93
 
114
- @extend .text-truncate;
94
+ &-infos {
95
+ display: flex;
96
+ flex-direction: column;
97
+ justify-content: center;
98
+ height: calc(#{$domino-width} - #{$overlay-width});
99
+ padding: 10px;
115
100
 
116
- a {
117
- font-weight: bold;
118
- color: $secondary;
119
- cursor: pointer;
101
+ .domino-title {
102
+ margin-bottom: 5px;
103
+ font-size: 1.4rem;
104
+ font-weight: bold;
105
+ color: $gray-700;
120
106
 
121
- &:hover {
122
- color: $primary;
123
- }
124
- }
125
- }
107
+ @extend .text-truncate;
126
108
  }
127
109
 
128
- &:hover {
129
- border-color: $secondary;
110
+ .domino-info {
111
+ font-size: 1.2rem;
112
+ color: $gray-600;
130
113
 
131
- @extend .transition-hover-slow;
114
+ @extend .text-truncate;
132
115
 
133
- .domino-overlay {
134
- background-color: rgba($black, 0.4);
116
+ a {
117
+ font-weight: bold;
118
+ color: $secondary;
119
+ cursor: pointer;
135
120
 
136
- & .left,
137
- & .right {
138
- opacity: 1;
139
-
140
- @extend .transition-hover;
141
- }
121
+ &:hover {
122
+ color: $primary;
142
123
  }
124
+ }
143
125
  }
126
+ }
144
127
 
145
- &:active,
146
- &.active {
147
- background-color: rgba($secondary, 0.1);
148
- border-color: $secondary;
149
- }
128
+ &:hover {
129
+ border-color: $secondary;
150
130
 
151
- &.active {
152
- .domino-overlay {
153
- background-color: rgba($black, 0.5);
131
+ @extend .transition-hover-slow;
154
132
 
155
- & .left,
156
- & .right {
157
- opacity: 1;
158
- }
159
- }
133
+ .domino-overlay {
134
+ background-color: rgba($black, 0.4);
135
+
136
+ & .left,
137
+ & .right {
138
+ opacity: 1;
139
+
140
+ @extend .transition-hover;
141
+ }
142
+ }
143
+ }
144
+
145
+ &:active,
146
+ &.active {
147
+ background-color: rgba($secondary, 0.1);
148
+ border-color: $secondary;
149
+ }
150
+
151
+ &.active {
152
+ .domino-overlay {
153
+ background-color: rgba($black, 0.5);
154
+
155
+ & .left,
156
+ & .right {
157
+ opacity: 1;
158
+ }
160
159
  }
160
+ }
161
161
  }
162
162
 
163
163
  .dominos .domino {
164
- width: calc(16.667% - 20px);
165
- max-width: $domino-width;
166
- @media (max-width: 992px) {
167
- margin: 5px;
168
- &:hover,
169
- &.active {
170
- .domino-overlay {
171
- background-color: transparent;
172
-
173
- & .left,
174
- & .right {
175
- opacity: 0;
176
- }
177
- }
164
+ width: calc(16.667% - 20px);
165
+ max-width: $domino-width;
166
+ @media (max-width: 992px) {
167
+ margin: 5px;
168
+ &:hover,
169
+ &.active {
170
+ .domino-overlay {
171
+ background-color: transparent;
172
+
173
+ & .left,
174
+ & .right {
175
+ opacity: 0;
178
176
  }
177
+ }
179
178
  }
179
+ }
180
180
  }
181
-
182
-
@@ -38,6 +38,10 @@
38
38
  }
39
39
  }
40
40
 
41
+ &-widget-message {
42
+ margin: -3.2rem 0 0 0;
43
+ }
44
+
41
45
  &-controls {
42
46
  display: flex;
43
47
  justify-content: space-around;
@@ -37,165 +37,614 @@ $icons-interface: (
37
37
  ) !default;
38
38
 
39
39
  $icons-widgets: (
40
- "actualites": ("glyph": "\e85b"),
41
- "aide-devoirs": ("glyph": "\e818"),
42
- "agenda": ("glyph": "\e83c"),
43
- "apps": ("glyph": "\e86c"),
44
- "bookmark-empty": ("glyph": "\e888"),
45
- "briefme": ("glyph": "\e963"),
46
- "calendar": ("glyph": "\e834"),
47
- "carnet-de-bord": ("glyph": "\e902"),
48
- "microphone": ("glyph": "\e864"),
49
- "maxicours": ("glyph": "\e825"),
50
- "mood": ("glyph": "\e811"),
51
- "notes": ("glyph": "\e806"),
52
- "rss": ("glyph": "\e861"),
53
- "qwant": ("glyph": "\e93d"),
54
- "schoolbook": ("glyph": "\e95a"),
55
- "signets": ("glyph": "\e80c"),
56
- "universalis": ("glyph": "\e95e"),
40
+ "actualites": (
41
+ "glyph": "\e85b",
42
+ ),
43
+ "aide-devoirs": (
44
+ "glyph": "\e818",
45
+ ),
46
+ "agenda": (
47
+ "glyph": "\e83c",
48
+ ),
49
+ "apps": (
50
+ "glyph": "\e86c",
51
+ ),
52
+ "bookmark-empty": (
53
+ "glyph": "\e888",
54
+ ),
55
+ "calendar": (
56
+ "glyph": "\e834",
57
+ ),
58
+ "carnet-de-bord": (
59
+ "glyph": "\e902",
60
+ ),
61
+ "microphone": (
62
+ "glyph": "\e864",
63
+ ),
64
+ "maxicours": (
65
+ "glyph": "\e825",
66
+ ),
67
+ "mood": (
68
+ "glyph": "\e811",
69
+ ),
70
+ "notes": (
71
+ "glyph": "\e806",
72
+ ),
73
+ "rss": (
74
+ "glyph": "\e861",
75
+ ),
76
+ "qwant": (
77
+ "glyph": "\e93d",
78
+ ),
79
+ "schoolbook": (
80
+ "glyph": "\e95a",
81
+ ),
82
+ "signets": (
83
+ "glyph": "\e80c",
84
+ ),
57
85
  ) !default;
58
86
 
59
87
  $icons-applications: (
60
- "account": ( "color": $purple, "glyph": "\e905"),
61
- "actualites": ( "color": $cyan, "glyph": "\e85b"),
62
- "admin-portal": ( "color": $red, "glyph": "\e908"),
63
- "admin": ( "color": $yellow, "glyph": "\e81a"),
64
- "archive": ( "color": $yellow, "glyph": "\e81d"),
65
- "attendance": ( "color": $red, "glyph": "\e80b"),
66
- "blog": ( "color": $indigo, "glyph": "\e809"),
67
- "cahier-de-texte": ( "color": $teal, "glyph": "\e910"),
68
- "cahier-textes": ( "color": $teal, "glyph": "\e86f"),
69
- "calendar": ( "color": $yellow, "glyph": "\e834"),
70
- "canal-numerique": ( "color": $cyan, "glyph": "\e80a"),
71
- "cns": ( "color": $teal, "glyph": "\e88a"),
72
- "collaborative-wall": ( "color": $teal, "glyph": "\e800"),
73
- "collaborativeeditor": ( "color": $cyan, "glyph": "\e829"),
74
- "community": ( "color": $purple, "glyph": "\e814"),
75
- "competences": ( "color": $red, "glyph": "\e927"),
76
- "conversation": ( "color": $yellow, "glyph": "\e804"),
77
- "directory": ( "color": $teal, "glyph": "\e811"),
78
- "exercizer": ( "color": $purple, "glyph": "\e833"),
79
- "qwant": ( "color": $pink, "glyph": "\e93d"),
80
- "forum": ( "color": $cyan, "glyph": "\e81e"),
81
- "library": ( "color": $yellow, "glyph": "\e94c"),
82
- "mindmap": ( "color": $cyan, "glyph": "\e859"),
83
- "notebook": ( "color": $teal, "glyph": "\e8d4"),
84
- "notes": ( "color": $yellow, "glyph": "\e806"),
85
- "pad": ( "color": $cyan, "glyph": "\e829"),
86
- "pages": ( "color": $red, "glyph": "\e876"),
87
- "parametrage": ( "color": $red, "glyph": "\e92f"),
88
- "parcours": ( "color": $orange, "glyph": "\e94d"),
89
- "paths": ( "color": $orange, "glyph": "\e94d"),
90
- "poll": ( "color": $cyan, "glyph": "\e832"),
91
- "polls": ( "color": $cyan, "glyph": "\e832"),
92
- "rack": ( "color": $red, "glyph": "\e80d"),
93
- "rbs": ( "color": $pink, "glyph": "\e80e"),
94
- "schoolbook": ( "color": $teal, "glyph": "\e91e"),
95
- "scrap-book": ( "color": $teal, "glyph": "\e8d4"),
96
- "scrapbook": ( "color": $teal, "glyph": "\e8d4"),
97
- "searchengine": ( "color": $cyan, "glyph": "\e8d0"),
98
- "settings-class": ( "color": $yellow, "glyph": "\e942"),
99
- "sharebigfiles": ( "color": $purple, "glyph": "\e8cb"),
100
- "statistics": ( "color": $purple, "glyph": "\e810"),
101
- "stats": ( "color": $purple, "glyph": "\e909"),
102
- "support": ( "color": $teal, "glyph": "\e835"),
103
- "timeline": ( "color": $indigo, "glyph": "\e854"),
104
- "timelinegenerator": ( "color": $yellow, "glyph": "\e819"),
105
- "userbook": ( "color": $teal, "glyph": "\e811"),
106
- "userbook-mood": ( "color": $teal, "glyph": "\e811"),
107
- "userbook-moto": ( "color": $teal, "glyph": "\e811"),
108
- "video": ( "color": $cyan, "glyph": "\e872"),
109
- "visioconf": ( "color": $cyan, "glyph": "\e957"),
110
- "Web-conference": ( "color": $cyan, "glyph": "\e957"),
111
- "website": ( "color": $cyan, "glyph": "\e90a"),
112
- "wiki": ( "color": $purple, "glyph": "\e813"),
113
- "workspace": ( "color": $red, "glyph": "\e81b"),
88
+ "account": (
89
+ "color": $purple,
90
+ "glyph": "\e905",
91
+ ),
92
+ "actualites": (
93
+ "color": $cyan,
94
+ "glyph": "\e85b",
95
+ ),
96
+ "admin-portal": (
97
+ "color": $red,
98
+ "glyph": "\e908",
99
+ ),
100
+ "admin": (
101
+ "color": $yellow,
102
+ "glyph": "\e81a",
103
+ ),
104
+ "archive": (
105
+ "color": $yellow,
106
+ "glyph": "\e81d",
107
+ ),
108
+ "attendance": (
109
+ "color": $red,
110
+ "glyph": "\e80b",
111
+ ),
112
+ "blog": (
113
+ "color": $indigo,
114
+ "glyph": "\e809",
115
+ ),
116
+ "cahier-de-texte": (
117
+ "color": $teal,
118
+ "glyph": "\e910",
119
+ ),
120
+ "cahier-textes": (
121
+ "color": $teal,
122
+ "glyph": "\e86f",
123
+ ),
124
+ "calendar": (
125
+ "color": $yellow,
126
+ "glyph": "\e834",
127
+ ),
128
+ "canal-numerique": (
129
+ "color": $cyan,
130
+ "glyph": "\e80a",
131
+ ),
132
+ "cns": (
133
+ "color": $teal,
134
+ "glyph": "\e88a",
135
+ ),
136
+ "collaborative-wall": (
137
+ "color": $teal,
138
+ "glyph": "\e800",
139
+ ),
140
+ "collaborativeeditor": (
141
+ "color": $cyan,
142
+ "glyph": "\e829",
143
+ ),
144
+ "community": (
145
+ "color": $purple,
146
+ "glyph": "\e814",
147
+ ),
148
+ "competences": (
149
+ "color": $red,
150
+ "glyph": "\e927",
151
+ ),
152
+ "conversation": (
153
+ "color": $yellow,
154
+ "glyph": "\e804",
155
+ ),
156
+ "directory": (
157
+ "color": $teal,
158
+ "glyph": "\e811",
159
+ ),
160
+ "exercizer": (
161
+ "color": $purple,
162
+ "glyph": "\e833",
163
+ ),
164
+ "qwant": (
165
+ "color": $pink,
166
+ "glyph": "\e93d",
167
+ ),
168
+ "forms": (
169
+ "color": $purple,
170
+ "glyph": "\e95c",
171
+ ),
172
+ "formulaire": (
173
+ "color": $purple,
174
+ "glyph": "\e95c",
175
+ ),
176
+ "forum": (
177
+ "color": $cyan,
178
+ "glyph": "\e81e",
179
+ ),
180
+ "library": (
181
+ "color": $yellow,
182
+ "glyph": "\e94c",
183
+ ),
184
+ "mindmap": (
185
+ "color": $cyan,
186
+ "glyph": "\e859",
187
+ ),
188
+ "notebook": (
189
+ "color": $teal,
190
+ "glyph": "\e8d4",
191
+ ),
192
+ "notes": (
193
+ "color": $yellow,
194
+ "glyph": "\e806",
195
+ ),
196
+ "pad": (
197
+ "color": $cyan,
198
+ "glyph": "\e829",
199
+ ),
200
+ "pages": (
201
+ "color": $red,
202
+ "glyph": "\e876",
203
+ ),
204
+ "parametrage": (
205
+ "color": $red,
206
+ "glyph": "\e92f",
207
+ ),
208
+ "parcours": (
209
+ "color": $orange,
210
+ "glyph": "\e94d",
211
+ ),
212
+ "paths": (
213
+ "color": $orange,
214
+ "glyph": "\e94d",
215
+ ),
216
+ "poll": (
217
+ "color": $cyan,
218
+ "glyph": "\e832",
219
+ ),
220
+ "polls": (
221
+ "color": $cyan,
222
+ "glyph": "\e832",
223
+ ),
224
+ "presences": (
225
+ "color": $yellow,
226
+ "glyph": "\e95d",
227
+ ),
228
+ "absences": (
229
+ "color": $yellow,
230
+ "glyph": "\e95d",
231
+ ),
232
+ "rack": (
233
+ "color": $red,
234
+ "glyph": "\e80d",
235
+ ),
236
+ "rbs": (
237
+ "color": $pink,
238
+ "glyph": "\e80e",
239
+ ),
240
+ "schoolbook": (
241
+ "color": $teal,
242
+ "glyph": "\e91e",
243
+ ),
244
+ "scrap-book": (
245
+ "color": $teal,
246
+ "glyph": "\e8d4",
247
+ ),
248
+ "scrapbook": (
249
+ "color": $teal,
250
+ "glyph": "\e8d4",
251
+ ),
252
+ "searchengine": (
253
+ "color": $cyan,
254
+ "glyph": "\e8d0",
255
+ ),
256
+ "settings-class": (
257
+ "color": $yellow,
258
+ "glyph": "\e942",
259
+ ),
260
+ "sharebigfiles": (
261
+ "color": $purple,
262
+ "glyph": "\e8cb",
263
+ ),
264
+ "statistics": (
265
+ "color": $purple,
266
+ "glyph": "\e810",
267
+ ),
268
+ "stats": (
269
+ "color": $purple,
270
+ "glyph": "\e909",
271
+ ),
272
+ "support": (
273
+ "color": $teal,
274
+ "glyph": "\e835",
275
+ ),
276
+ "timeline": (
277
+ "color": $indigo,
278
+ "glyph": "\e854",
279
+ ),
280
+ "timelinegenerator": (
281
+ "color": $yellow,
282
+ "glyph": "\e819",
283
+ ),
284
+ "userbook": (
285
+ "color": $teal,
286
+ "glyph": "\e811",
287
+ ),
288
+ "userbook-mood": (
289
+ "color": $teal,
290
+ "glyph": "\e811",
291
+ ),
292
+ "userbook-moto": (
293
+ "color": $teal,
294
+ "glyph": "\e811",
295
+ ),
296
+ "video": (
297
+ "color": $cyan,
298
+ "glyph": "\e872",
299
+ ),
300
+ "visioconf": (
301
+ "color": $cyan,
302
+ "glyph": "\e957",
303
+ ),
304
+ "web-conference": (
305
+ "color": $cyan,
306
+ "glyph": "\e957",
307
+ ),
308
+ "website": (
309
+ "color": $cyan,
310
+ "glyph": "\e90a",
311
+ ),
312
+ "wiki": (
313
+ "color": $purple,
314
+ "glyph": "\e813",
315
+ ),
316
+ "workspace": (
317
+ "color": $red,
318
+ "glyph": "\e81b",
319
+ ),
114
320
  ) !default;
115
321
 
116
322
  $icons-connectors: (
117
- "absences" : ( "color": $red, "glyph": "\e80b"),
118
- "admission-post-bac" : ( "color": $red, "glyph": "\e816"),
119
- "aide-devoirs" : ( "color": $teal, "glyph": "\e818"),
120
- "agenda" : ( "color": $yellow, "glyph": "\e83c"),
121
- "assistance" : ( "color": $cyan, "glyph": "\e93c"),
122
- "assr" : ( "color": $red, "glyph": "\e891"),
123
- "award" : ( "color": $teal, "glyph": "\e818"),
124
- "banquesavoir" : ( "color": $cyan, "glyph": "\e88d"),
125
- "bcdi" : ( "color": $purple, "glyph": "\e88f"),
126
- "biblionisep" : ( "color": $teal, "glyph": "\e8a4"),
127
- "bookmark-empty" : ( "color": $teal, "glyph": "\e888"),
128
- "canal-numerique" : ( "color": $red, "glyph": "\e80a"),
129
- "ccn" : ( "color": $teal, "glyph": "\e90f"),
130
- "cerise" : ( "color": $red, "glyph": "\e81c"),
131
- "cervoprint" : ( "color": $cyan, "glyph": "\e896"),
132
- "charlemagne" : ( "color": $red, "glyph": "\e885"),
133
- "charte" : ( "color": $yellow, "glyph": "\e93b"),
134
- "chat" : ( "color": $red, "glyph": "\e817"),
135
- "cidj" : ( "color": $teal, "glyph": "\e893"),
136
- "connecteur-generique1" : ( "color": $red, "glyph": "\e8aa"),
137
- "connecteur-generique2" : ( "color": $red, "glyph": "\e8ab"),
138
- "educagri" : ( "color": $indigo, "glyph": "\e89e"),
139
- "edumedia" : ( "color": $cyan, "glyph": "\e887"),
140
- "edumoov" : ( "color": $red, "glyph": "\e939"),
141
- "edutheque" : ( "color": $yellow, "glyph": "\e8a6"),
142
- "electron" : ( "color": $red, "glyph": "\e89b"),
143
- "elyceepicardie" : ( "color": $indigo, "glyph": "\e898"),
144
- "esidoc" : ( "color": $pink, "glyph": "\e826"),
145
- "europress" : ( "color": $cyan, "glyph": "\e8a7"),
146
- "gepi" : ( "color": $cyan, "glyph": "\e89c"),
147
- "glpi" : ( "color": $red, "glyph": "\e897"),
148
- "hiboutheque" : ( "color": $teal, "glyph": "\e90e"),
149
- "itopstore" : ( "color": $teal, "glyph": "\e895"),
150
- "kne" : ( "color": $purple, "glyph": "\e81f"),
151
- "le-site-tv" : ( "color": $yellow, "glyph": "\e87a"),
152
- "lemonde" : ( "color": $indigo, "glyph": "\e8a9"),
153
- "lesechos" : ( "color": $indigo, "glyph": "\e8a5"),
154
- "lsu" : ( "color": $cyan, "glyph": "\e93a"),
155
- "madmagz" : ( "color": $pink, "glyph": "\e89d"),
156
- "matholycee" : ( "color": $red, "glyph": "\e8a3"),
157
- "maxicours" : ( "color": $indigo, "glyph": "\e825"),
158
- "mediacentre" : ( "color": $red, "glyph": "\e863"),
159
- "monorientationenligne" : ( "color": $yellow, "glyph": "\e89f"),
160
- "monstageenligne" : ( "color": $cyan, "glyph": "\e8a2"),
161
- "moodle" : ( "color": $orange, "glyph": "\e948"),
162
- "museefrancaisphoto" : ( "color": $indigo, "glyph": "\e892"),
163
- "my-network" : ( "color": $indigo, "glyph": "\e82e"),
164
- "netvibes" : ( "color": $teal, "glyph": "\e8a1"),
165
- "note" : ( "color": $yellow, "glyph": "\e806"),
166
- "onisep" : ( "color": $cyan, "glyph": "\e88c"),
167
- "onisep2" : ( "color": $cyan, "glyph": "\e894"),
168
- "parametrage" : ( "color": $red, "glyph": "\e92f"),
169
- "paraschool" : ( "color": $teal, "glyph": "\e82d"),
170
- "pearltress" : ( "color": $cyan, "glyph": "\e933"),
171
- "picardie-cursus" : ( "color": $purple, "glyph": "\e921"),
172
- "pro-eps" : ( "color": $cyan, "glyph": "\e884"),
173
- "pronote" : ( "color": $purple, "glyph": "\e82a"),
174
- "public" : ( "color": $red, "glyph": "\e863"),
175
- "qwant-junior" : ( "color": $red, "glyph": "\e93d"),
176
- "residence-artiste" : ( "color": $teal, "glyph": "\e90f"),
177
- "ressourcesdepartementale91": ( "color": $indigo, "glyph": "\e890"),
178
- "sacoche" : ( "color": $indigo, "glyph": "\e899"),
179
- "scolinfo" : ( "color": $red, "glyph": "\e886"),
180
- "suitcase" : ( "color": $red, "glyph": "\e88b"),
181
- "turboself" : ( "color": $yellow, "glyph": "\e8a0"),
182
- "universalis" : ( "color": $red, "glyph": "\e831"),
183
- "unstagepourtous" : ( "color": $pink, "glyph": "\e88e"),
184
- "vie-scolaire" : ( "color": $yellow, "glyph": "\e879"),
185
- "webclasseur" : ( "color": $cyan, "glyph": "\e88c"),
323
+ "absences": (
324
+ "color": $red,
325
+ "glyph": "\e80b",
326
+ ),
327
+ "admission-post-bac": (
328
+ "color": $red,
329
+ "glyph": "\e816",
330
+ ),
331
+ "aide-devoirs": (
332
+ "color": $teal,
333
+ "glyph": "\e818",
334
+ ),
335
+ "agenda": (
336
+ "color": $yellow,
337
+ "glyph": "\e83c",
338
+ ),
339
+ "assistance": (
340
+ "color": $cyan,
341
+ "glyph": "\e93c",
342
+ ),
343
+ "assr": (
344
+ "color": $red,
345
+ "glyph": "\e891",
346
+ ),
347
+ "award": (
348
+ "color": $teal,
349
+ "glyph": "\e818",
350
+ ),
351
+ "banquesavoir": (
352
+ "color": $cyan,
353
+ "glyph": "\e88d",
354
+ ),
355
+ "bcdi": (
356
+ "color": $purple,
357
+ "glyph": "\e88f",
358
+ ),
359
+ "biblionisep": (
360
+ "color": $teal,
361
+ "glyph": "\e8a4",
362
+ ),
363
+ "bookmark-empty": (
364
+ "color": $teal,
365
+ "glyph": "\e888",
366
+ ),
367
+ "canal-numerique": (
368
+ "color": $red,
369
+ "glyph": "\e80a",
370
+ ),
371
+ "ccn": (
372
+ "color": $teal,
373
+ "glyph": "\e90f",
374
+ ),
375
+ "cerise": (
376
+ "color": $red,
377
+ "glyph": "\e81c",
378
+ ),
379
+ "cervoprint": (
380
+ "color": $cyan,
381
+ "glyph": "\e896",
382
+ ),
383
+ "charlemagne": (
384
+ "color": $red,
385
+ "glyph": "\e885",
386
+ ),
387
+ "charte": (
388
+ "color": $yellow,
389
+ "glyph": "\e93b",
390
+ ),
391
+ "chat": (
392
+ "color": $red,
393
+ "glyph": "\e817",
394
+ ),
395
+ "cidj": (
396
+ "color": $teal,
397
+ "glyph": "\e893",
398
+ ),
399
+ "connecteur-generique1": (
400
+ "color": $red,
401
+ "glyph": "\e8aa",
402
+ ),
403
+ "connecteur-generique2": (
404
+ "color": $red,
405
+ "glyph": "\e8ab",
406
+ ),
407
+ "educagri": (
408
+ "color": $indigo,
409
+ "glyph": "\e89e",
410
+ ),
411
+ "edumedia": (
412
+ "color": $cyan,
413
+ "glyph": "\e887",
414
+ ),
415
+ "edumoov": (
416
+ "color": $red,
417
+ "glyph": "\e939",
418
+ ),
419
+ "edutheque": (
420
+ "color": $yellow,
421
+ "glyph": "\e8a6",
422
+ ),
423
+ "electron": (
424
+ "color": $red,
425
+ "glyph": "\e89b",
426
+ ),
427
+ "elyceepicardie": (
428
+ "color": $indigo,
429
+ "glyph": "\e898",
430
+ ),
431
+ "esidoc": (
432
+ "color": $pink,
433
+ "glyph": "\e826",
434
+ ),
435
+ "europress": (
436
+ "color": $cyan,
437
+ "glyph": "\e8a7",
438
+ ),
439
+ "gepi": (
440
+ "color": $cyan,
441
+ "glyph": "\e89c",
442
+ ),
443
+ "glpi": (
444
+ "color": $red,
445
+ "glyph": "\e897",
446
+ ),
447
+ "hiboutheque": (
448
+ "color": $teal,
449
+ "glyph": "\e90e",
450
+ ),
451
+ "itopstore": (
452
+ "color": $teal,
453
+ "glyph": "\e895",
454
+ ),
455
+ "kne": (
456
+ "color": $purple,
457
+ "glyph": "\e81f",
458
+ ),
459
+ "le-site-tv": (
460
+ "color": $yellow,
461
+ "glyph": "\e87a",
462
+ ),
463
+ "lemonde": (
464
+ "color": $indigo,
465
+ "glyph": "\e8a9",
466
+ ),
467
+ "lesechos": (
468
+ "color": $indigo,
469
+ "glyph": "\e8a5",
470
+ ),
471
+ "lsu": (
472
+ "color": $cyan,
473
+ "glyph": "\e93a",
474
+ ),
475
+ "madmagz": (
476
+ "color": $pink,
477
+ "glyph": "\e89d",
478
+ ),
479
+ "matholycee": (
480
+ "color": $red,
481
+ "glyph": "\e8a3",
482
+ ),
483
+ "maxicours": (
484
+ "color": $indigo,
485
+ "glyph": "\e825",
486
+ ),
487
+ "mediacentre": (
488
+ "color": $red,
489
+ "glyph": "\e863",
490
+ ),
491
+ "monorientationenligne": (
492
+ "color": $yellow,
493
+ "glyph": "\e89f",
494
+ ),
495
+ "monstageenligne": (
496
+ "color": $cyan,
497
+ "glyph": "\e8a2",
498
+ ),
499
+ "moodle": (
500
+ "color": $orange,
501
+ "glyph": "\e948",
502
+ ),
503
+ "museefrancaisphoto": (
504
+ "color": $indigo,
505
+ "glyph": "\e892",
506
+ ),
507
+ "my-network": (
508
+ "color": $indigo,
509
+ "glyph": "\e82e",
510
+ ),
511
+ "netvibes": (
512
+ "color": $teal,
513
+ "glyph": "\e8a1",
514
+ ),
515
+ "note": (
516
+ "color": $yellow,
517
+ "glyph": "\e806",
518
+ ),
519
+ "onisep": (
520
+ "color": $cyan,
521
+ "glyph": "\e88c",
522
+ ),
523
+ "onisep2": (
524
+ "color": $cyan,
525
+ "glyph": "\e894",
526
+ ),
527
+ "parametrage": (
528
+ "color": $red,
529
+ "glyph": "\e92f",
530
+ ),
531
+ "paraschool": (
532
+ "color": $teal,
533
+ "glyph": "\e82d",
534
+ ),
535
+ "pearltress": (
536
+ "color": $cyan,
537
+ "glyph": "\e933",
538
+ ),
539
+ "picardie-cursus": (
540
+ "color": $purple,
541
+ "glyph": "\e921",
542
+ ),
543
+ "pro-eps": (
544
+ "color": $cyan,
545
+ "glyph": "\e884",
546
+ ),
547
+ "pronote": (
548
+ "color": $purple,
549
+ "glyph": "\e82a",
550
+ ),
551
+ "public": (
552
+ "color": $red,
553
+ "glyph": "\e863",
554
+ ),
555
+ "qwant-junior": (
556
+ "color": $red,
557
+ "glyph": "\e93d",
558
+ ),
559
+ "residence-artiste": (
560
+ "color": $teal,
561
+ "glyph": "\e90f",
562
+ ),
563
+ "ressourcesdepartementale91": (
564
+ "color": $indigo,
565
+ "glyph": "\e890",
566
+ ),
567
+ "sacoche": (
568
+ "color": $indigo,
569
+ "glyph": "\e899",
570
+ ),
571
+ "scolinfo": (
572
+ "color": $red,
573
+ "glyph": "\e886",
574
+ ),
575
+ "suitcase": (
576
+ "color": $red,
577
+ "glyph": "\e88b",
578
+ ),
579
+ "turboself": (
580
+ "color": $yellow,
581
+ "glyph": "\e8a0",
582
+ ),
583
+ "universalis": (
584
+ "color": $red,
585
+ "glyph": "\e831",
586
+ ),
587
+ "unstagepourtous": (
588
+ "color": $pink,
589
+ "glyph": "\e88e",
590
+ ),
591
+ "vie-scolaire": (
592
+ "color": $yellow,
593
+ "glyph": "\e879",
594
+ ),
595
+ "webclasseur": (
596
+ "color": $cyan,
597
+ "glyph": "\e88c",
598
+ ),
186
599
  ) !default;
187
600
 
188
- $icons-mood:(
189
- "default": ("color":#555, "glyph":"\e870"),
190
- "none": ("color":#aaa, "glyph":"\e83a"),
191
- "angry": ("color":#FF8500, "glyph":"\e845"),
192
- "dreamy": ("color":#b930a2, "glyph":"\e862"),
193
- "happy": ("color":#ecbe30, "glyph":"\e877"),
194
- "joker": ("color":#4bafd5, "glyph":"\e849"),
195
- "love": ("color":#FF8500, "glyph":"\e84b"),
196
- "proud": ("color":#46bfaf, "glyph":"\e87e"),
197
- "sad": ("color":#b930a2, "glyph":"\e869"),
198
- "sick": ("color":#e13a3a, "glyph":"\e87d"),
199
- "tired": ("color":#e13a3a, "glyph":"\e87c"),
200
- "worried": ("color":#763294, "glyph":"\e87f")
201
- )!default;
601
+ $icons-mood: (
602
+ "default": (
603
+ "color": #555,
604
+ "glyph": "\e870",
605
+ ),
606
+ "none": (
607
+ "color": #aaa,
608
+ "glyph": "\e83a",
609
+ ),
610
+ "angry": (
611
+ "color": #ff8500,
612
+ "glyph": "\e845",
613
+ ),
614
+ "dreamy": (
615
+ "color": #b930a2,
616
+ "glyph": "\e862",
617
+ ),
618
+ "happy": (
619
+ "color": #ecbe30,
620
+ "glyph": "\e877",
621
+ ),
622
+ "joker": (
623
+ "color": #4bafd5,
624
+ "glyph": "\e849",
625
+ ),
626
+ "love": (
627
+ "color": #ff8500,
628
+ "glyph": "\e84b",
629
+ ),
630
+ "proud": (
631
+ "color": #46bfaf,
632
+ "glyph": "\e87e",
633
+ ),
634
+ "sad": (
635
+ "color": #b930a2,
636
+ "glyph": "\e869",
637
+ ),
638
+ "sick": (
639
+ "color": #e13a3a,
640
+ "glyph": "\e87d",
641
+ ),
642
+ "tired": (
643
+ "color": #e13a3a,
644
+ "glyph": "\e87c",
645
+ ),
646
+ "worried": (
647
+ "color": #763294,
648
+ "glyph": "\e87f",
649
+ ),
650
+ ) !default;