ode-csslib-panda-cg77 3.0.7 → 3.0.8-feat-produit.202302201128
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/portal.html +118 -83
- package/dist/skins/circus/theme.css +4 -4
- package/dist/skins/circus/theme.css.map +1 -1
- package/dist/skins/default/theme.css +4 -4
- package/dist/skins/default/theme.css.map +1 -1
- package/dist/skins/desert/theme.css +4 -4
- package/dist/skins/desert/theme.css.map +1 -1
- package/dist/skins/neutre/theme.css +4 -4
- package/dist/skins/neutre/theme.css.map +1 -1
- package/dist/skins/ocean/theme.css +4 -4
- package/dist/skins/ocean/theme.css.map +1 -1
- package/dist/skins/panda-food/theme.css +4 -4
- package/dist/skins/panda-food/theme.css.map +1 -1
- package/dist/skins/sparkly/theme.css +4 -4
- package/dist/skins/sparkly/theme.css.map +1 -1
- package/dist/template/portal/applications.html +10 -5
- package/dist/version.txt +2 -2
- package/package.json +2 -2
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
<span ng-controller="ApplicationController">
|
|
2
|
-
<div class="d-flex justify-content-between row mb-
|
|
2
|
+
<div class="d-flex justify-content-between align-items-center row mb-16">
|
|
3
3
|
<h1 class="application__title font-weight-bold d-mobile-none col-lg-6">
|
|
4
4
|
<i18n>portal.header.navigation.myapps</i18n>
|
|
5
5
|
</h1>
|
|
6
6
|
|
|
7
7
|
<!-- Search bar -->
|
|
8
8
|
<section class="applications__search col-lg-4">
|
|
9
|
-
<
|
|
10
|
-
|
|
9
|
+
<label class="visually-hidden" for="app-search"
|
|
10
|
+
><i18n>apps.search</i18n></label
|
|
11
|
+
>
|
|
12
|
+
<div class="input-group">
|
|
11
13
|
<input
|
|
12
|
-
|
|
14
|
+
id="app-search"
|
|
15
|
+
class="form-control form-control-lg no-validation-icon"
|
|
13
16
|
type="search"
|
|
14
17
|
ng-model="display.searchText"
|
|
15
|
-
class="form-control"
|
|
16
18
|
i18n-placeholder="apps.search"
|
|
17
19
|
autofocus
|
|
18
20
|
/>
|
|
@@ -40,6 +42,7 @@
|
|
|
40
42
|
ng-if="isIconUrl(application)"
|
|
41
43
|
class="application"
|
|
42
44
|
skin-src="[[application.icon]]"
|
|
45
|
+
alt="[[translatedDisplayName(application)]]"
|
|
43
46
|
img-on-error="[[themeAssetsPath]]/images/image-placeholder.png"
|
|
44
47
|
/>
|
|
45
48
|
<i
|
|
@@ -63,6 +66,7 @@
|
|
|
63
66
|
ng-if="isIconUrl(application)"
|
|
64
67
|
class="application"
|
|
65
68
|
skin-src="[[application.icon]]"
|
|
69
|
+
alt="[[translatedDisplayName(application)]]"
|
|
66
70
|
img-on-error="[[themeAssetsPath]]/images/image-placeholder.png"
|
|
67
71
|
/>
|
|
68
72
|
<i
|
|
@@ -110,6 +114,7 @@
|
|
|
110
114
|
ng-if="isIconUrl(connector)"
|
|
111
115
|
class="application"
|
|
112
116
|
skin-src="[[connector.icon]]"
|
|
117
|
+
alt="[[translatedDisplayName(connector)]]"
|
|
113
118
|
img-on-error="[[themeAssetsPath]]/images/image-placeholder.png"
|
|
114
119
|
/>
|
|
115
120
|
<i
|
package/dist/version.txt
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
entcore-css-lib=4.0
|
|
2
|
-
ode-csslib-panda-cg77=3.0
|
|
1
|
+
entcore-css-lib=4.0-SNAPSHOT 20/02/2023 11:24:22
|
|
2
|
+
ode-csslib-panda-cg77=3.0-dev-produit-SNAPSHOT 20/02/2023 11:29:37
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ode-csslib-panda-cg77",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.8-feat-produit.202302201128",
|
|
4
4
|
"description": "Panda theme by Open Digital Education",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"override:i18n": "OVERRIDE_SRC=${OVERRIDE_SRC} OVERRIDE_DIST=${OVERRIDE_DIST} node ode-override-plugin.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"author": "Open Digital Education",
|
|
35
35
|
"license": "NONE",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"entcore-css-lib": "npm:ode-csslib@
|
|
37
|
+
"entcore-css-lib": "npm:ode-csslib@feat-explorer"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"concurrently": "^5.0.2",
|