ode-csslib 4.0.10-dev.202304211435 → 4.0.11

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
- entcore-css-lib=4.0.10 21/04/2023 14:35:49
1
+ entcore-css-lib=4.0.11 03/05/2023 13:08:19
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ode-csslib",
3
- "version": "4.0.10-dev.202304211435",
3
+ "version": "4.0.11",
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: 0px;
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: 130px;
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 {
@@ -29,6 +29,9 @@ body.lool {
29
29
  &-tree {
30
30
  max-height: 50vh;
31
31
  overflow-y: auto;
32
+ > ul {
33
+ box-sizing: border-box;
34
+ }
32
35
  }
33
36
  }
34
37
 
@@ -62,9 +62,9 @@
62
62
  }
63
63
 
64
64
  &.WAITING_FOR_ACCEPTANCE{
65
- background: $orange;
66
- >i{
67
- background-image: url(/lystore/public/img/scss/check.svg);
65
+ background: $yellow;
66
+ > i {
67
+ background-image: url(/lystore/public/img/scss/sync.svg);
68
68
  }
69
69
  }
70
70