Fix accessibility.
This commit is contained in:
BoHung Chiu 2021-06-28 18:24:17 +08:00
parent 2f8c16f7f1
commit 65c25a2974
4 changed files with 13 additions and 7 deletions

View File

@ -19,6 +19,12 @@
// Widget
@import "widget/*";
.background .controlplay{
display: none;
}
.background .button-mid{
display: none;
}
.black-screen{
position: fixed;
width: 100%;
@ -70,7 +76,7 @@
padding: 5px 10px;
background: $theme-color-main;
color:#fff;
font-size: 18px;
font-size: 1.125em;
transition:.3s;
&:hover{
background: $theme-color-second;

View File

@ -12,8 +12,8 @@
<div class="i-member-profile-data-wrap col-sm-9">
<ul class="i-member-profile-list" data-list="profile_data" data-level="3">
<li class="i-member-profile-item">
<span class="i-member-title {{title_class}}">{{title}}</span>
<span class="i-member-value {{value_class}}">: {{value}}</span>
<span class="i-member-title {{title_class}}"><strong>{{title}} : </strong></span>
<span class="i-member-value {{value_class}}">{{value}}</span>
</li>
</ul>
</div>

View File

@ -12,8 +12,8 @@
<div class="i-member-profile-data-wrap col-sm-8">
<ul class="i-member-profile-list" data-list="profile_data" data-level="3">
<li class="i-member-profile-item">
<span class="i-member-title {{title_class}}">{{title}}</span>
<span class="i-member-value {{value_class}}">: {{value}}</span>
<span class="i-member-title {{title_class}}"><strong>{{title}} : </strong></span>
<span class="i-member-value {{value_class}}">{{value}}</span>
</li>
</ul>
</div>

View File

@ -9,8 +9,8 @@
<div class="i-member-profile-data-wrap">
<ul class="i-member-profile-list" data-list="profile_data" data-level="3">
<li class="i-member-profile-item">
<span class="i-member-title {{title_class}}">{{title}}</span>
<span class="i-member-value {{value_class}}">: {{value}}</span>
<span class="i-member-title {{title_class}}"><strong>{{title}} : </strong></span>
<span class="i-member-value {{value_class}}">{{value}}</span>
</li>
</ul>
</div>