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
|
|
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.
|
|
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",
|
package/scss/components/_.scss
CHANGED
|
@@ -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
|
+
}
|