Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions src/base/basic-var.less
Original file line number Diff line number Diff line change
Expand Up @@ -77,19 +77,20 @@
--ti-mobile-common-color-link-dark: var(--ti-mobile-base-color-common-2); /* 文本_链接__深色*/
--ti-mobile-common-color-link-highlight: var(--ti-mobile-base-color-brand-1); /* 文本_链接_高亮色*/
--ti-mobile-common-color-link-gray: var(--ti-mobile-base-color-common-13); /* 文本_链接_灰色加强*/
--ti-mobile-common-color-link-white: var( --ti-mobile-base-color-common-12); /* 文本_链接_白色*/
--ti-mobile-common-color-link-white: var(--ti-mobile-base-color-common-12); /* 文本_链接_白色*/

/* 线颜色*/
--ti-mobile-common-color-line-hightlight: var(--ti-mobile-base-color-brand-1); /* 高亮_描边色*/
--ti-mobile-common-color-line-dark: var( --ti-mobile-base-color-common-9); /* 深_描边色*/
--ti-mobile-common-color-line-light: var( --ti-mobile-base-color-common-10); /* 浅_描边色*/
--ti-mobile-common-color-line-dark: var(--ti-mobile-base-color-common-9); /* 深_描边色*/
--ti-mobile-common-color-line-light: var(--ti-mobile-base-color-common-10); /* 浅_描边色*/

/* 蒙层色*/
--ti-mobile-common-color-mask-light: rgba(0,0,0,0.5); /* 蒙层_相对浅*/
--ti-mobile-common-color-mask-dark: rgba(0,0,0,0.75); /* 蒙层_相对深*/
--ti-mobile-common-color-mask-light: rgba(0, 0, 0, 0.5); /* 蒙层_相对浅*/
--ti-mobile-common-color-mask-dark: rgba(0, 0, 0, 0.75); /* 蒙层_相对深*/

/* 蒙层色*/
--ti-mobile-common-bg-color-white: var(--ti-mobile-base-color-bg-3); /* 背景_白*/
--ti-mobile-common-bg-color-main: var(--ti-mobile-base-color-brand-1); /* 背景_蓝*/
--ti-mobile-common-bg-color-light: var(--ti-mobile-base-color-bg-2); /* 背景_浅灰*/
--ti-mobile-common-bg-color-dark-gray: var(--ti-mobile-base-color-bg-1); /* 背景_深灰*/
}
27 changes: 27 additions & 0 deletions src/modal/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/**
* Copyright (c 2022 - present TinyVue Authors.
* Copyright (c 2022 - present Huawei Cloud Computing Technologies Co., Ltd.
*
* Use of this source code is governed by an MIT-style license.
*
* THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL,
* BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
* A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS.
*
*/

export default {
"tiny--mobile-modal-text-font-size": "14px",
"tiny--mobile-modal-header-font-size": "16px",
"tiny--mobile-modal-text-color": "#191919",
"tiny--mobile-modal-alert-font-size": "22px",
"tiny--mobile-modal-box-bg-color": "#fff",
"tiny--mobile-modal-box-shadow": "0 8px 40px 0 rgba(0, 0, 0, 0.2)",
"tiny--mobile-modal-close-btn-top": "13px",
"tiny--mobile-modal-close-btn-scale": "scale(1, 1)",
"tiny--mobile-modal-close-btn-bg-color-hover": "#fff",
"tiny--mobile-modal-btn-width": "112px",
"tiny--mobile-modal-single-btn-width": "144px",
"tiny--mobile-modal-btn-height": "36px",
"tiny--mobile-modal-cancel-btn-bg-color": "#f5f5f5",
};
Loading