ode-bootstrap 1.1.2-feat-explorer.202303101636 → 1.1.2-feat-explorer.202303152052

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 10/03/2023 16:37:08
1
+ ode-bootstrap=1.1.2-feat-explorer-SNAPSHOT 15/03/2023 20:53:22
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ode-bootstrap",
3
- "version": "1.1.2-feat-explorer.202303101636",
3
+ "version": "1.1.2-feat-explorer.202303152052",
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",
@@ -24,6 +24,7 @@
24
24
  @import "popover";
25
25
  @import "loader";
26
26
  @import "select-list";
27
+ @import "spinner";
27
28
  @import "sticky-toolbox";
28
29
  @import "tables";
29
30
  @import "table-lists";
@@ -13,6 +13,7 @@
13
13
  --#{$prefix}input-disabled-border-color: #{$input-disabled-border-color};
14
14
  --#{$prefix}input-placeholder-color: #{$input-placeholder-color};
15
15
  --#{$prefix}input-focus-border-color: #{$input-focus-border-color};
16
+ --#{$prefix}input-invalid-border-color: #{$input-invalid-border-color};
16
17
  --#{$prefix}input-filled-border-color: #{$input-filled-border-color};
17
18
  --#{$prefix}input-border-radius: #{$input-border-radius};
18
19
  --#{$prefix}input-border-radius-sm: #{$input-border-radius-sm};
@@ -41,6 +42,10 @@
41
42
  background-color: var(--#{$prefix}input-disabled-bg);
42
43
  }
43
44
 
45
+ &:not(:placeholder-shown):not(:focus):is(.is-invalid) {
46
+ border-color: var(--#{$prefix}input-invalid-border-color);
47
+ }
48
+
44
49
  &:not(:placeholder-shown):not(:focus) {
45
50
  border-color: var(--#{$prefix}input-filled-border-color);
46
51
  }
@@ -0,0 +1,10 @@
1
+ .spinner-border {
2
+ display: inline-block;
3
+ width: 2rem;
4
+ height: 2rem;
5
+ vertical-align: -0.125em;
6
+ border: 0.25em solid currentColor;
7
+ border-right-color: transparent;
8
+ border-radius: 50%;
9
+ animation: 0.75s linear infinite loading;
10
+ }
@@ -131,6 +131,7 @@ $input-disabled-color: $gray-700 !default;
131
131
  $input-disabled-border-color: $gray-500 !default;
132
132
  $input-placeholder-color: $gray-600 !default;
133
133
  $input-focus-border-color: $blue-200 !default;
134
+ $input-invalid-border-color: $danger !default;
134
135
  $input-filled-border-color: $gray-600 !default;
135
136
  $input-border-radius: $border-radius-lg !default;
136
137
  $input-border-radius-sm: $border-radius !default;