epfl-elements 4.9.1 → 5.0.0
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/README.md +1 -1
- package/dist/components/content-types/study-plan/study-plan.yml +0 -2
- package/dist/components/molecules/breadcrumb/breadcrumb-dropdown.twig +3 -3
- package/dist/css/elements.css +911 -3142
- package/dist/css/elements.min.css +1 -1
- package/dist/css/elements.min.css.map +1 -1
- package/dist/css/reader.css +33 -128
- package/dist/css/reader.min.css +1 -1
- package/dist/css/reader.min.css.map +1 -1
- package/dist/docs/contribute/support-and-request.html +7 -8
- package/dist/icons/icons.svg +1 -1
- package/dist/js/elements.js +1 -251
- package/dist/js/elements.min.js +1 -1
- package/dist/js/elements.min.js.LICENSE.txt +0 -2
- package/dist/js/elements.min.js.map +1 -1
- package/dist/js/reader.js +240 -230
- package/dist/js/reader.min.js +1 -1
- package/dist/js/reader.min.js.map +1 -1
- package/dist/package.json +12 -12
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
To contribute and run the styleguide, you will need few things :
|
|
9
9
|
- [🔀 Git](https://git-scm.com/) - Version control system
|
|
10
|
-
- [📗 NodeJS
|
|
10
|
+
- [📗 NodeJS 18+](https://nodejs.org/en/) - JavaScript runtime used to build the project
|
|
11
11
|
- [🐈 Yarn](https://yarnpkg.com/lang/en/) - Dependency manager built on top of the NPM registry
|
|
12
12
|
|
|
13
13
|
Then, to install the project onto your workstation:
|
|
@@ -5,6 +5,4 @@ notes: |
|
|
|
5
5
|
|
|
6
6
|
Please override the columns width (if they do not fit your needs) by using a CSS variable: `<div class="study-plan table-like" style="--table-columns: 1fr minmax(200px, 3fr) minmax(auto, 1fr) minmax(200px, 3fr) 3fr 1fr">`.
|
|
7
7
|
|
|
8
|
-
The default behaviour is kept on IE, the content stays readable (the table might be a bit wonky when some columns are missing though).
|
|
9
|
-
|
|
10
8
|
On mobile, the tables are scrollable horizontally.
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
</div>
|
|
30
30
|
</li>
|
|
31
31
|
<li class="breadcrumb-item">
|
|
32
|
-
<a class="bread-link" href="#">
|
|
32
|
+
<a class="bread-link" href="#">ENAC</a>
|
|
33
33
|
<div class="dropdown">
|
|
34
34
|
<button class="btn btn-secondary dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" aria-controls="dropdown-menu-2">
|
|
35
35
|
{% include '@atoms/icon/icon.twig' with { icon: 'arrow-down-circle', icon_classes:'feather' } %}
|
|
36
|
-
<span class="sr-only">Display same level pages –
|
|
36
|
+
<span class="sr-only">Display same level pages – ENAC</span>
|
|
37
37
|
</button>
|
|
38
38
|
<ul class="dropdown-menu" id="dropdown-menu-2">
|
|
39
|
-
<li class="dropdown-item current-menu-item-parent"><a href="#">School of Architecture, Civil and Environmental Engineering</a></li>
|
|
39
|
+
<li class="dropdown-item current-menu-item-parent"><a href="#">School of Architecture, Civil and Environmental Engineering (ENAC)</a></li>
|
|
40
40
|
<li class="dropdown-item"><a href="#">School of Computer and Communication Sciences</a></li>
|
|
41
41
|
<li class="dropdown-item"><a href="#">School of Basic Sciences</a></li>
|
|
42
42
|
<li class="dropdown-item"><a href="#">School of Engineering</a></li>
|