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

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 03/03/2023 16:53:52
1
+ ode-bootstrap=1.1.2-feat-explorer-SNAPSHOT 07/03/2023 16:22:21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ode-bootstrap",
3
- "version": "1.1.2-feat-explorer.202303031653",
3
+ "version": "1.1.2-feat-explorer.202303071621",
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",
@@ -3,17 +3,24 @@
3
3
  border-radius: 8px;
4
4
  border-spacing: 0;
5
5
  border-collapse: separate;
6
-
6
+
7
7
  overflow: hidden;
8
- border: 1px solid $blue-100;
8
+ border: 1px solid $table-explorer-main-color;
9
9
 
10
10
  tr > * {
11
- padding: 8px 12px;
11
+ padding: 10px 12px;
12
12
  font-size: $small-font-size;
13
13
  }
14
14
 
15
15
  thead {
16
- background-color: $blue-100;
16
+ background-color: $table-explorer-main-color;
17
+ color: $gray-800;
18
+
19
+ .form-check-input {
20
+ width: 16px;
21
+ height: 16px;
22
+ transform: translateY(-1px) translateX(-1px);
23
+ }
17
24
  }
18
25
 
19
26
  tbody > tr:nth-of-type(even) > * {
@@ -10,6 +10,24 @@ $zindex-levels: (
10
10
  $utilities: map-merge(
11
11
  $utilities,
12
12
  (
13
+ "color": (
14
+ property: color,
15
+ class: text,
16
+ local-vars: (
17
+ "text-opacity": 1
18
+ ),
19
+ values: map-merge(
20
+ $utilities-text-colors,
21
+ (
22
+ "gray-700": $gray-700,
23
+ "blue": $blue,
24
+ "muted": $text-muted,
25
+ "black-50": rgba($black, .5), // deprecated
26
+ "white-50": rgba($white, .5), // deprecated
27
+ "reset": inherit,
28
+ )
29
+ )
30
+ ),
13
31
  "cursor": (
14
32
  property: cursor,
15
33
  class: c,
@@ -206,7 +206,6 @@ $nav-tabs-link-active-bg: $white !default;
206
206
  $nav-tabs-link-active-color: $gray-600 !default;
207
207
 
208
208
  // Tooltip
209
-
210
209
  $tooltip-padding-y: 1.2rem;
211
210
  $tooltip-padding-x: 1.2rem;
212
211
  $tooltip-arrow-width: 1.6rem;
@@ -215,11 +214,6 @@ $tooltip-opacity: 0.8;
215
214
  $tooltip-border-radius: 8px;
216
215
  $tooltip-max-width: 326px;
217
216
 
218
- // Action Bar
219
- $actionbar-background-color: $primary !default;
220
- $actionbar-font-size: $btn-font-size !default;
221
- $actionbar-font-size-mobile: $btn-font-size !default;
222
-
223
217
  // Z-index
224
218
  $zindex-offcanvas: 1050 !default;
225
219
 
@@ -227,3 +221,13 @@ $zindex-offcanvas: 1050 !default;
227
221
  $hr-color: $gray-400 !default;
228
222
  $hr-opacity: 1 !default;
229
223
  $hr-default-spacing: 2.4rem !default;
224
+
225
+ /**== Custom components ==**/
226
+
227
+ // Action Bar
228
+ $actionbar-background-color: $primary !default;
229
+ $actionbar-font-size: $btn-font-size !default;
230
+ $actionbar-font-size-mobile: $btn-font-size !default;
231
+
232
+ //Table Explorer
233
+ $table-explorer-main-color: $blue-100 !default;