Toggle navigation
Toggle navigation
This project
Loading...
Sign in
developOne
/
harmonyPool
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
wuyanan
2024-07-25 16:13:15 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7087f92b62ab6c510584633b2a98d350fa36b36d
7087f92b
1 parent
8f052c80
fix |> 修复直播间上墙标识的字体颜色和背景与安卓不一致问题
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
7 deletions
sight_harmony/features/wdDetailPlayLive/src/main/ets/widgets/details/TabLiveItemComponent.ets
sight_harmony/features/wdDetailPlayLive/src/main/ets/widgets/details/TabLiveItemComponent.ets
View file @
7087f92
...
...
@@ -255,14 +255,20 @@ export struct TabLiveItemComponent {
if (this.item.isWall == 1) {
Blank().layoutWeight(1)
Text() {
Span(' 上墙 ')
.foregroundColor("#CB0000")
Text(' 上墙 ')
.maxLines(1)
.textOverflow({ overflow: TextOverflow.Ellipsis })
.fontSize(11)
.lineHeight(20)
.textBackgroundStyle({ color: "#70FFC63F", radius: 2 })
}.lineHeight(20).fontSize('14fp').fontWeight(400)
.fontWeight(400)
.fontColor("#CB0000")
.backgroundColor('#F1EFEB')
.padding({
left: 4,
top: 1,
right: 4,
bottom: 1
})
.borderRadius(2)
}
}
.alignItems(VerticalAlign.Top)
...
...
Please
register
or
login
to post a comment