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

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 02/03/2023 20:18:36
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.202303022018",
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
 
@@ -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
+ }