@acorex/styles 21.0.2-next.8 → 21.0.3-next.1

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.
@@ -0,0 +1,34 @@
1
+ .ax-popup-overlay.ax-conversation-composer-picker-popup {
2
+ .ax-popup {
3
+ max-height: min(32rem, 90dvh);
4
+ width: min(28rem, 93vw);
5
+ }
6
+
7
+ .ax-popup-main-container {
8
+ min-height: 0;
9
+ }
10
+
11
+ .ax-popup-body-container {
12
+ display: flex;
13
+ flex-direction: column;
14
+ overflow: hidden;
15
+ min-height: 0;
16
+ padding: 0;
17
+ }
18
+
19
+ .ax-popup-body-container > ng-component {
20
+ display: flex;
21
+ flex-direction: column;
22
+ min-height: 0;
23
+ width: 100%;
24
+ }
25
+ }
26
+
27
+ @media (max-width: 480px) {
28
+ .ax-popup-overlay.ax-conversation-composer-picker-popup {
29
+ .ax-popup {
30
+ max-height: min(28rem, 92dvh);
31
+ width: 93vw;
32
+ }
33
+ }
34
+ }
@@ -9,3 +9,4 @@
9
9
  @import './_ripple.css';
10
10
  @import './_table.css';
11
11
  @import './_uploader.css';
12
+ @import './_conversation-picker-popup.css';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/styles",
3
- "version": "21.0.2-next.8",
3
+ "version": "21.0.3-next.1",
4
4
  "main": "index.css",
5
5
  "author": "Ali Safari",
6
6
  "license": "ISC",
@@ -3,6 +3,8 @@
3
3
 
4
4
  @custom-variant dark (&:where(.ax-dark, .ax-dark *));
5
5
 
6
+ @custom-variant hover (&:hover);
7
+
6
8
  input:-webkit-autofill,
7
9
  input:-webkit-autofill:hover,
8
10
  input:-webkit-autofill:focus,
@@ -2094,6 +2096,10 @@ html.ax-dark {
2094
2096
  --color-border-accent6-darkest: rgba(var(--ax-sys-color-border-accent6-darkest-surface));
2095
2097
  }
2096
2098
 
2099
+ @utility text-muted {
2100
+ @apply text-gray-900/60;
2101
+ }
2102
+
2097
2103
  @utility bg-default {
2098
2104
  background-color: var(--color-bg-default);
2099
2105
  }