ode-bootstrap 1.1.4-dev.202306131217 → 1.1.4-dev.202306161541
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
|
|
1
|
+
ode-bootstrap=1.1.4-dev-SNAPSHOT 16/06/2023 15:41:41
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ode-bootstrap",
|
|
3
|
-
"version": "1.1.4-dev.
|
|
3
|
+
"version": "1.1.4-dev.202306161541",
|
|
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,8 @@ $avatar-size: 65px !default;
|
|
|
18
18
|
> img {
|
|
19
19
|
object-fit: cover;
|
|
20
20
|
margin: 0 auto;
|
|
21
|
+
height: 100%;
|
|
22
|
+
width: 100%;
|
|
21
23
|
}
|
|
22
24
|
|
|
23
25
|
> svg {
|
|
@@ -74,25 +76,6 @@ body:not(.app-react) {
|
|
|
74
76
|
vertical-align: middle;
|
|
75
77
|
border-radius: 50%;
|
|
76
78
|
|
|
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
79
|
&-social {
|
|
97
80
|
position: relative;
|
|
98
81
|
|
|
@@ -115,32 +98,5 @@ body:not(.app-react) {
|
|
|
115
98
|
transform: translate(20%, 20%);
|
|
116
99
|
}
|
|
117
100
|
}
|
|
118
|
-
|
|
119
|
-
/*&-link {
|
|
120
|
-
cursor: pointer;
|
|
121
|
-
overflow: hidden;
|
|
122
|
-
@include avatar-image($avatar-size);
|
|
123
|
-
|
|
124
|
-
img {
|
|
125
|
-
background: $white;
|
|
126
|
-
}
|
|
127
|
-
}*/
|
|
128
101
|
}
|
|
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
102
|
}
|
|
@@ -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
|
-
|
|
73
|
-
|
|
74
|
-
|
|
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
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
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
|
|