@acorex/styles 7.3.2 → 7.4.3

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": "@acorex/styles",
3
- "version": "7.3.2",
3
+ "version": "7.4.3",
4
4
  "main": "index.js",
5
5
  "author": "Ali Safari",
6
6
  "license": "ISC",
@@ -66,7 +66,9 @@
66
66
  border: 1px solid;
67
67
  border-color: rgba(var(--ax-color-border-default));
68
68
  border-radius: var(--ax-rounded-border-default);
69
- box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
69
+ box-shadow:
70
+ 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
71
+ 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
70
72
  overflow: hidden;
71
73
  margin-top: 0.25rem;
72
74
  ax-header,
@@ -109,10 +111,12 @@
109
111
  border: 1px solid;
110
112
  border-color: rgba(var(--ax-color-border-default));
111
113
  border-radius: var(--ax-rounded-border-default);
112
- box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
114
+ box-shadow:
115
+ 0px 10px 15px -3px rgba(0, 0, 0, 0.1),
116
+ 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
113
117
  padding: 0.5rem 0;
114
118
 
115
- .ax-button-item {
119
+ ax-button-item {
116
120
  position: relative;
117
121
  display: inline-flex;
118
122
  align-items: center;
@@ -11,6 +11,13 @@
11
11
  border-radius: var(--ax-rounded-border-default);
12
12
  font-size: 0.875rem;
13
13
  overflow: hidden;
14
+ .ax-editor-input {
15
+ height: 100%;
16
+ flex: 1;
17
+ .ax-input {
18
+ height: 100%;
19
+ }
20
+ }
14
21
  .ax-input {
15
22
  padding: 0 0.75rem;
16
23
 
@@ -26,6 +26,7 @@
26
26
  &.ax-button-icon {
27
27
  padding: 0 0.5rem;
28
28
  font-size: 1.25rem;
29
+ min-width: var(--ax-size-default);
29
30
  width: var(--ax-size-default);
30
31
  height: 100%;
31
32
  > button {
@@ -20,6 +20,9 @@
20
20
  --ax-color-default: 239, 241, 245;
21
21
  --ax-color-default-fore: 22, 22, 22;
22
22
 
23
+ --ax-color-ghost: 255, 255, 255;
24
+ --ax-color-ghost-fore: 22, 22, 22;
25
+
23
26
  --ax-color-primary-fore: 255, 255, 255;
24
27
  --ax-color-primary-50: 239, 246, 255;
25
28
  --ax-color-primary-100: 219, 234, 254;
@@ -106,7 +109,7 @@
106
109
  --ax-color-text-default: 255, 255, 255;
107
110
 
108
111
  --ax-color-surface: 31, 41, 55;
109
- --ax-color-default-fore: 255, 255, 255;
112
+ --ax-color-surface-fore: 255, 255, 255;
110
113
 
111
114
  --ax-color-on-surface: 55, 65, 81;
112
115
  --ax-color-on-surface-fore: 255, 255, 255;
@@ -116,4 +119,7 @@
116
119
 
117
120
  --ax-color-default: 77, 91, 113;
118
121
  --ax-color-default-fore: 255, 255, 255;
122
+
123
+ --ax-color-ghost: 77, 91, 113;
124
+ --ax-color-ghost-fore: 255, 255, 255;
119
125
  }