@basis-ng/styles 0.0.1-alpha.95 → 0.0.1-alpha.97

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@basis-ng/styles",
3
- "version": "0.0.1-alpha.95",
3
+ "version": "0.0.1-alpha.97",
4
4
  "description": "CSS foundation for @basis-ng/primitives components",
5
5
  "main": "src/index.css",
6
6
  "exports": {
@@ -140,7 +140,7 @@ button[b-button] {
140
140
  }
141
141
 
142
142
  &:disabled {
143
- opacity: 0.5;
143
+ opacity: 0.6;
144
144
  cursor: not-allowed;
145
145
  pointer-events: none;
146
146
  }
@@ -32,7 +32,7 @@ b-input-group {
32
32
  }
33
33
 
34
34
  input[b-input]:disabled {
35
- opacity: 0.5;
35
+ opacity: 0.6;
36
36
  pointer-events: none;
37
37
  }
38
38
 
@@ -13,7 +13,7 @@ input[b-input] {
13
13
  color: var(--input-foreground);
14
14
  font-family: 'Geist', sans-serif;
15
15
 
16
- &:read-only {
16
+ &:read-only:not(:disabled) {
17
17
  border-width: 0px;
18
18
  }
19
19
 
@@ -54,7 +54,7 @@ input[b-input] {
54
54
  }
55
55
 
56
56
  &:disabled {
57
- opacity: 0.5;
57
+ opacity: 0.6;
58
58
  pointer-events: none;
59
59
  }
60
60
 
@@ -33,7 +33,7 @@ button[b-menu-item-checkbox] {
33
33
  /* aria disabled true */
34
34
  &[aria-disabled='true'] {
35
35
  cursor: auto;
36
- opacity: 0.5;
36
+ opacity: 0.6;
37
37
  }
38
38
 
39
39
  &.squared {
@@ -34,7 +34,7 @@ button[b-menu-item-radio] {
34
34
  /* aria disabled true */
35
35
  &[aria-disabled='true'] {
36
36
  cursor: auto;
37
- opacity: 0.5;
37
+ opacity: 0.6;
38
38
  }
39
39
 
40
40
  &.squared {
@@ -34,7 +34,7 @@ button[b-menu-item] {
34
34
  /* aria disabled true */
35
35
  &[aria-disabled='true'] {
36
36
  cursor: auto;
37
- opacity: 0.5;
37
+ opacity: 0.6;
38
38
  }
39
39
 
40
40
  &.squared {
@@ -9,4 +9,10 @@ b-tabs {
9
9
  gap: 0.2rem;
10
10
  padding: 0.2rem;
11
11
  border: 1px solid var(--border-color);
12
+
13
+ &[aria-disabled='true'] {
14
+ cursor: auto;
15
+ pointer-events: none;
16
+ opacity: 0.6;
17
+ }
12
18
  }
@@ -39,7 +39,7 @@ textarea[b-textarea] {
39
39
  }
40
40
 
41
41
  &:disabled {
42
- opacity: 0.5;
42
+ opacity: 0.6;
43
43
  pointer-events: none;
44
44
  }
45
45