ode-bootstrap 1.1.4-dev.202306121000 → 1.1.4-dev.202306161130

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
- ode-bootstrap=1.1.4-dev-SNAPSHOT 12/06/2023 10:01:25
1
+ ode-bootstrap=1.1.4-dev-SNAPSHOT 16/06/2023 11:30:35
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ode-bootstrap",
3
- "version": "1.1.4-dev.202306121000",
3
+ "version": "1.1.4-dev.202306161130",
4
4
  "description": "Open Digital Education CSS framework based on bootstrap",
5
5
  "scripts": {
6
6
  "copy-fonts": "cpr node_modules/entcore-generic-icons/fonts/ assets/fonts/generic-icons/ -o",
@@ -18,6 +18,7 @@ $avatar-size: 65px !default;
18
18
  > img {
19
19
  object-fit: cover;
20
20
  margin: 0 auto;
21
+ height: 100%;
21
22
  }
22
23
 
23
24
  > svg {
@@ -74,25 +75,6 @@ body:not(.app-react) {
74
75
  vertical-align: middle;
75
76
  border-radius: 50%;
76
77
 
77
- /*&--20 {
78
- width: 20px;
79
- height: 20px;
80
- }
81
-
82
- &--25 {
83
- width: 25px;
84
- height: 25px;
85
- }
86
- &--50 {
87
- width: 50px;
88
- height: 50px;
89
- }
90
-
91
- &--100 {
92
- width: 100px;
93
- height: 100px;
94
- }*/
95
-
96
78
  &-social {
97
79
  position: relative;
98
80
 
@@ -115,32 +97,5 @@ body:not(.app-react) {
115
97
  transform: translate(20%, 20%);
116
98
  }
117
99
  }
118
-
119
- /*&-link {
120
- cursor: pointer;
121
- overflow: hidden;
122
- @include avatar-image($avatar-size);
123
-
124
- img {
125
- background: $white;
126
- }
127
- }*/
128
100
  }
129
-
130
- /*.navbar.no-1d {
131
- .avatar {
132
- margin-top: -0.3rem;
133
- width: 3rem;
134
- max-width: 3rem;
135
- height: 3rem;
136
- background-color: $white;
137
-
138
- @include media-breakpoint-down(md) {
139
- display: inline-block;
140
- width: 2rem;
141
- max-width: 2rem;
142
- height: 2rem;
143
- }
144
- }
145
- }*/
146
101
  }
@@ -35,9 +35,9 @@
35
35
  width: $btn-svg-size;
36
36
  min-width: $btn-svg-size;
37
37
 
38
- path {
38
+ /* path {
39
39
  fill: currentColor;
40
- }
40
+ } */
41
41
  }
42
42
 
43
43
  &:first-child:active:focus-visible {
@@ -68,16 +68,18 @@
68
68
  }
69
69
  }
70
70
 
71
- &:hover,
72
- &.hover {
73
- &:not(.btn-search) {
74
- transform: translateY(-0.2rem);
75
- box-shadow: 0 0.2rem 0 0 var(--#{$prefix}btn-hover-border-color);
76
- }
77
-
78
- &:is(.btn-search) {
79
- span {
71
+ &:not(.disabled-hover) {
72
+ &:hover,
73
+ &.hover {
74
+ &:not(.btn-search) {
80
75
  transform: translateY(-0.2rem);
76
+ box-shadow: 0 0.2rem 0 0 var(--#{$prefix}btn-hover-border-color);
77
+ }
78
+
79
+ &:is(.btn-search) {
80
+ span {
81
+ transform: translateY(-0.2rem);
82
+ }
81
83
  }
82
84
  }
83
85
  }
@@ -95,11 +97,13 @@
95
97
  box-shadow: inset 0 0 0 0.1rem var(--#{$prefix}btn-focus-border-color);
96
98
  }
97
99
  } @else {
98
- &:hover,
99
- &.hover,
100
- &:focus-visible {
101
- > span {
102
- transform: translateY(-0.2rem);
100
+ &:not(.disabled-hover) {
101
+ &:hover,
102
+ &.hover,
103
+ &:focus-visible {
104
+ > span {
105
+ transform: translateY(-0.2rem);
106
+ }
103
107
  }
104
108
  }
105
109
 
@@ -1,8 +1,8 @@
1
1
  .select-list {
2
2
  display: flex;
3
3
  flex-direction: column;
4
- max-height: 316px;
5
- overflow-y: scroll;
4
+ max-height: 320px;
5
+ overflow-y: auto;
6
6
  //min-width: 250px;
7
7
  }
8
8