ode-bootstrap 1.1.2-feat-explorer.202302271604 → 1.1.2-feat-explorer.202303031653

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.2-feat-explorer-SNAPSHOT 27/02/2023 16:04:46
1
+ ode-bootstrap=1.1.2-feat-explorer-SNAPSHOT 03/03/2023 16:53:52
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ode-bootstrap",
3
- "version": "1.1.2-feat-explorer.202302271604",
3
+ "version": "1.1.2-feat-explorer.202303031653",
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",
@@ -27,6 +27,7 @@
27
27
  @import "sticky-toolbox";
28
28
  @import "tables";
29
29
  @import "table-lists";
30
+ @import "table-explorer";
30
31
  @import "toast";
31
32
  @import "treeview";
32
33
 
@@ -68,13 +68,13 @@ $avatar-size: 65px !default;
68
68
  }
69
69
  }
70
70
 
71
- /* body:not(.app-react) {
71
+ body:not(.app-react) {
72
72
  .avatar {
73
73
  display: inline-block;
74
74
  vertical-align: middle;
75
75
  border-radius: 50%;
76
76
 
77
- &--20 {
77
+ /*&--20 {
78
78
  width: 20px;
79
79
  height: 20px;
80
80
  }
@@ -91,7 +91,7 @@ $avatar-size: 65px !default;
91
91
  &--100 {
92
92
  width: 100px;
93
93
  height: 100px;
94
- }
94
+ }*/
95
95
 
96
96
  &-social {
97
97
  position: relative;
@@ -116,7 +116,7 @@ $avatar-size: 65px !default;
116
116
  }
117
117
  }
118
118
 
119
- &-link {
119
+ /*&-link {
120
120
  cursor: pointer;
121
121
  overflow: hidden;
122
122
  @include avatar-image($avatar-size);
@@ -124,10 +124,10 @@ $avatar-size: 65px !default;
124
124
  img {
125
125
  background: $white;
126
126
  }
127
- }
127
+ }*/
128
128
  }
129
129
 
130
- .navbar.no-1d {
130
+ /*.navbar.no-1d {
131
131
  .avatar {
132
132
  margin-top: -0.3rem;
133
133
  width: 3rem;
@@ -142,5 +142,5 @@ $avatar-size: 65px !default;
142
142
  height: 2rem;
143
143
  }
144
144
  }
145
- }
146
- } */
145
+ }*/
146
+ }
@@ -0,0 +1,22 @@
1
+ .table-explorer {
2
+ width: 100%;
3
+ border-radius: 8px;
4
+ border-spacing: 0;
5
+ border-collapse: separate;
6
+
7
+ overflow: hidden;
8
+ border: 1px solid $blue-100;
9
+
10
+ tr > * {
11
+ padding: 8px 12px;
12
+ font-size: $small-font-size;
13
+ }
14
+
15
+ thead {
16
+ background-color: $blue-100;
17
+ }
18
+
19
+ tbody > tr:nth-of-type(even) > * {
20
+ background-color: $gray-200;
21
+ }
22
+ }
@@ -10,6 +10,12 @@
10
10
  background-position: center;
11
11
  background-size: cover;
12
12
 
13
+ img {
14
+ @include avatar-image(65px);
15
+ background: $white;
16
+ max-width: initial;
17
+ }
18
+
13
19
  .name {
14
20
  font-weight: 600;
15
21
  }