[DE mobile] Fix Bug 58548

This commit is contained in:
SergeyEzhin 2022-08-16 16:22:20 +03:00
parent 306fdd4f30
commit 4967ec3263
4 changed files with 13 additions and 5 deletions

View file

@ -69,9 +69,9 @@
.title { .title {
font-weight: 600; font-weight: 600;
color: @text-normal; color: @text-normal;
line-height: 17px; //line-height: 17px;
max-height: 34px; max-height: 34px;
overflow: hidden; //overflow: hidden;
} }
.navbar-inner, .subnavbar-inner { .navbar-inner, .subnavbar-inner {
z-index: auto; z-index: auto;

View file

@ -147,6 +147,7 @@
.bullets, .bullets,
.numbers, .numbers,
.multilevels { .multilevels {
min-height: 160px;
.row.list { .row.list {
margin: 0; margin: 0;
ul { ul {

View file

@ -132,6 +132,7 @@
} }
} }
// Swiper
.swiper-container { .swiper-container {
height: 100%; height: 100%;
.swiper-pagination-bullet-active{ .swiper-pagination-bullet-active{
@ -147,6 +148,14 @@
// } // }
} }
.swiper-pagination-bullets {
position: relative;
margin-top: 10px;
.swiper-pagination-bullet {
margin: 0 8px;
}
}
// Skeleton table // Skeleton table
.table-styles .row div:not(:first-child) { .table-styles .row div:not(:first-child) {

View file

@ -213,9 +213,7 @@ const PageBullets = observer( props => {
storeTextSettings.resetBullets(bullet.subtype); storeTextSettings.resetBullets(bullet.subtype);
props.onBullet(bullet.subtype); props.onBullet(bullet.subtype);
}}> }}>
<div id={`id-markers-${bullet.subtype}`} className='item-marker'> <div id={`id-markers-${bullet.subtype}`} className='item-marker'></div>
</div>
</ListItem> </ListItem>
))} ))}
</List> </List>