epfl-elements 5.4.0 → 5.5.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/dist/components/atoms/select/select-multiple.twig +6 -1
- package/dist/components/pages/lab-homepage/lab-homepage.twig +1 -1
- package/dist/css/elements.css +41 -1
- package/dist/css/elements.min.css +1 -1
- package/dist/css/elements.min.css.map +1 -1
- package/dist/css/reader.css +1 -0
- package/dist/css/reader.min.css +1 -1
- package/dist/css/reader.min.css.map +1 -1
- package/dist/js/reader.js +26 -26
- package/dist/js/reader.min.js +2 -2
- package/dist/js/reader.min.js.map +1 -1
- package/dist/js/vendors.js +1142 -4264
- package/dist/js/vendors.min.js +1 -1
- package/dist/package.json +2 -2
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div class="form-group">
|
|
2
2
|
<label>Pick a restaurant</label>
|
|
3
|
-
<select class="select-multiple" multiple="multiple" data-placeholder="Restaurant list">
|
|
3
|
+
<select class="select-multiple" multiple="multiple" data-placeholder="Restaurant list" data-filter="true">
|
|
4
4
|
<option value="1">Chuck Testa's tavern</option>
|
|
5
5
|
<option value="2">The Sage Cattabriga-Alosa hideout</option>
|
|
6
6
|
<option value="3">Nikola Tesla Drive-in</option>
|
|
@@ -9,5 +9,10 @@
|
|
|
9
9
|
<option value="5">The Hydron Collider</option>
|
|
10
10
|
<option value="6">There's no place like 127.0.0.1</option>
|
|
11
11
|
<option value="7">The Shake Shack Space bar</option>
|
|
12
|
+
<optgroup label="EPFL">
|
|
13
|
+
<option value="8">Holy Cow</option>
|
|
14
|
+
<option value="9">Panares Gourmet</option>
|
|
15
|
+
<option value="10">Satellite</option>
|
|
16
|
+
</optgroup>
|
|
12
17
|
</select>
|
|
13
18
|
</div>
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
{% block fullintro %}
|
|
19
19
|
<div class="tlbx-single-full-intro d-flex justify-content-between">
|
|
20
|
-
<h1 class="h3 my-0">Laboratory page (<a href="#/doc/create%20a%20page.md" target="_blank" onclick="window.open('#/doc/create%20a%20page.md')">doc</a>)</h1>
|
|
20
|
+
<h1 class="h3 my-0">Laboratory page (<a href="#/doc/user%20documentation--create%20a%20page.md" target="_blank" onclick="window.open('#/doc/user%20documentation--create%20a%20page.md')">doc</a>)</h1>
|
|
21
21
|
<button class="btn btn-sm btn-primary" id="tour-start">Start the tour !</button>
|
|
22
22
|
</div>
|
|
23
23
|
{% endblock %}
|
package/dist/css/elements.css
CHANGED
|
@@ -10193,6 +10193,10 @@ table {
|
|
|
10193
10193
|
background: #ff0000 !important;
|
|
10194
10194
|
}
|
|
10195
10195
|
|
|
10196
|
+
.introjs-bullets ul li:before {
|
|
10197
|
+
content: none;
|
|
10198
|
+
}
|
|
10199
|
+
|
|
10196
10200
|
.focused, .btn {
|
|
10197
10201
|
position: relative;
|
|
10198
10202
|
}
|
|
@@ -12490,6 +12494,35 @@ a.research-icon:hover, a.research-icon:focus {
|
|
|
12490
12494
|
height: 25px;
|
|
12491
12495
|
}
|
|
12492
12496
|
|
|
12497
|
+
.ms-search {
|
|
12498
|
+
display: inline-block;
|
|
12499
|
+
position: relative;
|
|
12500
|
+
width: 100%;
|
|
12501
|
+
margin: 0;
|
|
12502
|
+
min-height: 30px;
|
|
12503
|
+
padding: 0.5em 1em;
|
|
12504
|
+
white-space: nowrap;
|
|
12505
|
+
z-index: 10000;
|
|
12506
|
+
box-sizing: border-box;
|
|
12507
|
+
}
|
|
12508
|
+
.ms-search input {
|
|
12509
|
+
width: 100%;
|
|
12510
|
+
height: auto !important;
|
|
12511
|
+
margin: 0;
|
|
12512
|
+
min-height: 28px;
|
|
12513
|
+
padding: 0 5px;
|
|
12514
|
+
outline: 0;
|
|
12515
|
+
border: 1px solid #8e8e8e;
|
|
12516
|
+
border-radius: 2px;
|
|
12517
|
+
box-shadow: none;
|
|
12518
|
+
}
|
|
12519
|
+
.ms-search input:focus, .ms-search input.focus, .ms-search input:focus-visible {
|
|
12520
|
+
border-color: #212121 !important;
|
|
12521
|
+
box-shadow: none !important;
|
|
12522
|
+
outline: 2px solid #707070;
|
|
12523
|
+
outline-offset: 2px;
|
|
12524
|
+
}
|
|
12525
|
+
|
|
12493
12526
|
.ms-drop {
|
|
12494
12527
|
display: none;
|
|
12495
12528
|
position: absolute;
|
|
@@ -12537,6 +12570,9 @@ a.research-icon:hover, a.research-icon:focus {
|
|
|
12537
12570
|
.ms-drop ul > li.group {
|
|
12538
12571
|
clear: both;
|
|
12539
12572
|
}
|
|
12573
|
+
.ms-drop ul > li.group ~ li.option-level-1:not(.hide-radio) > label {
|
|
12574
|
+
padding-left: 3em;
|
|
12575
|
+
}
|
|
12540
12576
|
.ms-drop ul > li.option-divider {
|
|
12541
12577
|
padding: 0;
|
|
12542
12578
|
border-top: 1px solid #c1c1c1;
|
|
@@ -12556,13 +12592,17 @@ a.research-icon:hover, a.research-icon:focus {
|
|
|
12556
12592
|
.ms-drop label.optgroup {
|
|
12557
12593
|
font-weight: 700;
|
|
12558
12594
|
}
|
|
12595
|
+
.ms-drop label.optgroup input[type=checkbox] {
|
|
12596
|
+
margin-right: 0.6em;
|
|
12597
|
+
}
|
|
12559
12598
|
.ms-drop input[type=checkbox] {
|
|
12560
12599
|
vertical-align: middle;
|
|
12561
|
-
margin-right: 0.
|
|
12600
|
+
margin-right: 0.3em;
|
|
12562
12601
|
margin-bottom: 0.25em;
|
|
12563
12602
|
}
|
|
12564
12603
|
.ms-drop .ms-no-results {
|
|
12565
12604
|
display: none;
|
|
12605
|
+
padding: 0 1em;
|
|
12566
12606
|
}
|
|
12567
12607
|
|
|
12568
12608
|
hr {
|