icssoa пре 7 месеци
родитељ
комит
6e17fca829

+ 1 - 1
uni_modules/cool-ui/components/cl-input/cl-input.uvue

@@ -396,7 +396,7 @@ defineExpose({
 		@apply bg-surface-800;
 
 		&.cl-input--border {
-			@apply border-surface-700;
+			@apply border-surface-600;
 
 			&.cl-input--focus {
 				@apply border-primary-500;

+ 3 - 2
uni_modules/cool-ui/components/cl-popup/cl-popup.uvue

@@ -77,6 +77,7 @@
 						>
 							<slot name="header">
 								<cl-text
+									ellipsis
 									:pt="{
 										className: `text-lg font-bold ${pt.header?.text?.className}`
 									}"
@@ -522,9 +523,9 @@ defineExpose({
 		}
 
 		&__header {
-			@apply flex flex-row items-center;
+			@apply flex flex-row items-center flex-wrap;
 			height: 90rpx;
-			padding: 0 26rpx;
+			padding: 0 80rpx 0 26rpx;
 		}
 
 		&__container {

+ 1 - 0
uni_modules/cool-ui/components/cl-popup/props.ts

@@ -29,4 +29,5 @@ export type ClPopupProps = {
 	swipeCloseThreshold?: number;
 	pointerEvents?: "auto" | "none";
 	keepAlive?: boolean;
+	enablePortal?: boolean;
 };