-
联系信息
+
联系信息
邮箱
{{ userInfo.email ? userInfo.email : "未填写" }}
@@ -219,7 +219,7 @@ onMounted(async () => {
.user-setting-top {
padding-top: 40px;
width: 100%;
- border-bottom: 1px solid #eaeaea;
+ border-bottom: 1px solid @border-color-base;
display: flex;
padding-bottom: 40px;
}
@@ -261,7 +261,9 @@ onMounted(async () => {
width: 200px;
text-overflow: ellipsis;
line-height: 32px!important;
- color: #333;
+ /*begin 兼容暗夜模式*/
+ color: @text-color;
+ /*end 兼容暗夜模式*/
font-weight: 500;
}
@@ -300,13 +302,15 @@ onMounted(async () => {
margin-bottom: 10px;
}
+/*begin 兼容暗夜模式*/
.gray-75 {
- color: #757575 !important;
+ color: @text-color !important;
}
.gray-3 {
- color: #333333;
+ color: @text-color;
}
+/*end 兼容暗夜模式*/
.account-info {
width: 60%;
@@ -335,7 +339,9 @@ onMounted(async () => {
}
.use-day{
- color: #333;
+ /*begin 兼容暗夜模式*/
+ color: @text-color;
+ /*end 兼容暗夜模式*/
margin-top: 10px;
font-size: 13px;
span{
@@ -346,4 +352,9 @@ onMounted(async () => {
.font-size-13{
font-size: 13px;
}
+/*begin 兼容暗夜模式*/
+.font-color-gray{
+ color: @text-color;
+}
+/*end 兼容暗夜模式*/
diff --git a/src/views/system/usersetting/TenantSetting.vue b/src/views/system/usersetting/TenantSetting.vue
index 97505b3..1111d09 100644
--- a/src/views/system/usersetting/TenantSetting.vue
+++ b/src/views/system/usersetting/TenantSetting.vue
@@ -420,7 +420,9 @@ onMounted(() => {
.my-tenant{
font-size: 17px;
font-weight: 700!important;
- color: #333!important;
+ /*begin 兼容暗夜模式*/
+ color: @text-color;
+ /*end 兼容暗夜模式*/
margin-bottom: 20px;
}
.tenant-list{
@@ -430,7 +432,9 @@ onMounted(() => {
overflow-x: hidden;
}
.tenant-list-item{
- border: 1px solid #eaeaea;
+ /*begin 兼容暗夜模式*/
+ border: 1px solid @border-color-base;
+ /*end 兼容暗夜模式*/
box-sizing: border-box;
display: flex;
flex-direction: column;
@@ -446,7 +450,9 @@ onMounted(() => {
padding: 14px 0;
cursor: pointer;
font-size:17px;
- color: #333!important;
+ /*begin 兼容暗夜模式*/
+ color: @text-color;
+ /*end 兼容暗夜模式*/
font-weight: 700!important;
}
}
@@ -472,14 +478,18 @@ onMounted(() => {
transition: ease-in 2s;
.content-box {
- border-top: 1px solid #eaeaea;
+ /*begin 兼容暗夜模式*/
+ border-top: 1px solid @border-color-base;
+ /*end 兼容暗夜模式*/
box-sizing: border-box;
display: flex;
padding: 24px 0;
}
.content-name {
- color: #757575;
+ /*begin 兼容暗夜模式*/
+ color: @text-color;
+ /*end 兼容暗夜模式*/
text-align: center;
width: 100px;
font-size: 13px;
@@ -491,7 +501,9 @@ onMounted(() => {
}
.content-des-text {
- color: #757575;
+ /*begin 兼容暗夜模式*/
+ color: @text-color;
+ /*end 兼容暗夜模式*/
text-align: left;
width: 76px;
font-size: 13px;
@@ -504,7 +516,9 @@ onMounted(() => {
}
.footer-box {
- border-top: 1px solid #eaeaea;
+ /*begin 兼容暗夜模式*/
+ border-top: 1px solid @border-color-base;
+ /*end 兼容暗夜模式*/
box-sizing: border-box;
display: flex;
padding: 24px 0;
@@ -515,18 +529,20 @@ onMounted(() => {
margin-right: 40px;
}
+/*begin 兼容暗夜模式*/
.font-color333 {
- color: #333333;
+ color: @text-color;
font-weight: normal;
}
.font-color9e {
- color: #9e9e9e;
+ color: @text-color;
}
.font-color75 {
- color: #757575;
+ color: @text-color;
}
+/*end 兼容暗夜模式*/
.font-size13 {
font-size: 13px;
diff --git a/src/views/system/usersetting/UserSetting.vue b/src/views/system/usersetting/UserSetting.vue
index ff56d55..c53bb96 100644
--- a/src/views/system/usersetting/UserSetting.vue
+++ b/src/views/system/usersetting/UserSetting.vue
@@ -74,14 +74,18 @@ export default defineComponent({
}
//tabs弹窗左边样式
:deep(.ant-tabs-nav){
- background-color: #FFFFFF;
+ /*begin 兼容暗夜模式*/
+ background-color: @component-background;
+ /*end 兼容暗夜模式*/
height: 260px;
}
//tabs弹窗右边边样式
:deep(.ant-tabs-content-holder){
position: relative;
left: 12px;
- background: #FFFFFF;
+ /*begin 兼容暗夜模式*/
+ background: @component-background;
+ /*end 兼容暗夜模式*/
height: auto !important;
}
}
@@ -105,6 +109,8 @@ export default defineComponent({
padding-right:14px;
}
.icon-font-color{
- color: #9e9e9e;
+ /*begin 兼容暗夜模式*/
+ color: @text-color;
+ /*end 兼容暗夜模式*/
}