如何在没有CSS的情况下更改sap.m.Label的字体大小。
<Label text="NAME" />
答案 0 :(得分:0)
标签没有属性,但您可以为label属性提供css,如下所示:
<Label text="Name" class="ABC">
css文件
.ABC{
font-size:2rem !important;
}
重要标记是必需的,因为它会覆盖.sapMLabel标准类
中的font-size属性答案 1 :(得分:-1)
为您的Label添加一个class属性
# the upstream component nginx needs to connect to
events {
worker_connections 1024;
}
http{
upstream django {
server 127.0.0.1:8001;
}
# configuration of the server
server {
# the port your site will be served on
listen 80;
root ~/my/path/;
# the domain name it will serve for
server_name 127.0.0.1;
charset utf-8;
# max upload size
client_max_body_size 75M; # adjust to taste
# Django media
location /media {
alias _; # your Django project's media files - amend as required
}
location /static/ {
autoindex on;
root /my/path/static/;
}
location ~ \.css {
root /my/path/static/;
}
location ~ \.js {
root /my/path/static/;
}
# Finally, send all non-media requests to the Django server.
location / {
uwsgi_pass django;
include ../uwsgi_params;
}
}
}
然后是一些css
<Label class="bigLabel" text="NAME'/>
答案 2 :(得分:-1)
更改标签字体大小的唯一方法是使用自定义 CSS 文件。
在webapp下新建一个文件夹,命名为“css”。
在新文件夹下添加一个名为“style.css”的文件。
在 style.css 中添加以下样式:
.myApp .smallLabel {
font-size: x-small;
}
<App class="myApp">
<pages>
<Page title="{i18n>homePageTitle}">
<content>
<Panel>
<content>
<Label text="{path: 'Recipes>Title'}" class="smallLabel"/>
</content>
</Panel>
</content>
</Page>
</pages>
</App>