ode-csslib 4.0.10-dev.202304211435 → 4.0.10-dev.202305031303
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/assets/fonts/generic-icons/generic-icons.svg +1 -0
- package/assets/fonts/generic-icons/generic-icons.ttf +0 -0
- package/assets/fonts/generic-icons/generic-icons.woff +0 -0
- package/dist/fonts/generic-icons/generic-icons.svg +1 -0
- package/dist/fonts/generic-icons/generic-icons.ttf +0 -0
- package/dist/fonts/generic-icons/generic-icons.woff +0 -0
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/version.txt +1 -1
- package/package.json +1 -1
- package/scss/specifics/competences/components/_competences.scss +13 -12
- package/scss/specifics/lool-connector/_lool-connector.scss +3 -0
- package/scss/specifics/lystore/fragments/_status-circle.scss +3 -3
package/dist/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
entcore-css-lib=4.0.
|
|
1
|
+
entcore-css-lib=4.0.11 03/05/2023 13:03:59
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ode-csslib",
|
|
3
|
-
"version": "4.0.10-dev.
|
|
3
|
+
"version": "4.0.10-dev.202305031303",
|
|
4
4
|
"description": "Open Digital Education Legacy CSS framework",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"copy-fonts": "cpr node_modules/entcore-generic-icons/fonts/ assets/fonts/generic-icons/ -o",
|
|
@@ -2096,25 +2096,26 @@ body.evaluations {
|
|
|
2096
2096
|
background-color: white;
|
|
2097
2097
|
min-width: 160px;
|
|
2098
2098
|
border-radius: 5px;
|
|
2099
|
+
white-space: nowrap;
|
|
2099
2100
|
|
|
2100
|
-
height:
|
|
2101
|
-
-webkit-transition: height 0.15s linear;
|
|
2102
|
-
-moz-transition: height 0.15s linear;
|
|
2103
|
-
-ms-transition: height 0.15s linear;
|
|
2104
|
-
-o-transition: height 0.15s linear;
|
|
2105
|
-
transition: height 0.15s linear;
|
|
2101
|
+
max-height: 0;
|
|
2102
|
+
-webkit-transition: max-height 0.15s linear;
|
|
2103
|
+
-moz-transition: max-height 0.15s linear;
|
|
2104
|
+
-ms-transition: max-height 0.15s linear;
|
|
2105
|
+
-o-transition: max-height 0.15s linear;
|
|
2106
|
+
transition: max-height 0.15s linear;
|
|
2106
2107
|
}
|
|
2107
2108
|
|
|
2108
2109
|
.columns-popup.open {
|
|
2109
2110
|
padding: 10px;
|
|
2110
2111
|
border: 1px $primary solid;
|
|
2111
2112
|
|
|
2112
|
-
height:
|
|
2113
|
-
-webkit-transition: height 0.15s linear;
|
|
2114
|
-
-moz-transition: height 0.15s linear;
|
|
2115
|
-
-ms-transition: height 0.15s linear;
|
|
2116
|
-
-o-transition: height 0.15s linear;
|
|
2117
|
-
transition: height 0.15s linear;
|
|
2113
|
+
max-height: 500px;
|
|
2114
|
+
-webkit-transition: max-height 0.15s linear;
|
|
2115
|
+
-moz-transition: max-height 0.15s linear;
|
|
2116
|
+
-ms-transition: max-height 0.15s linear;
|
|
2117
|
+
-o-transition: max-height 0.15s linear;
|
|
2118
|
+
transition: max-height 0.15s linear;
|
|
2118
2119
|
}
|
|
2119
2120
|
|
|
2120
2121
|
.columns-popup-button {
|