ng-deep (6차) - bug수정

This commit is contained in:
khk 2020-02-14 11:23:46 +09:00
parent ff9f06d648
commit 2bc68e7865
8 changed files with 42 additions and 35 deletions

View File

@ -77,7 +77,7 @@ $tablet-s-width: 768px;
height: calc(100% - 380px); height: calc(100% - 380px);
@media screen and (max-width: #{$tablet-s-width}), (max-height: 800px) { @media screen and (max-width: #{$tablet-s-width}), (max-height: 800px) {
margin-top: 10px; margin-top: 10px;
height: calc(100% - 170px); height: calc(100% - 120px);
} }
overflow-y: auto; overflow-y: auto;
flex-wrap: wrap; flex-wrap: wrap;

View File

@ -138,7 +138,7 @@ $tablet-s-width: 768px;
height: calc(100% - 440px); height: calc(100% - 440px);
overflow-y: auto; overflow-y: auto;
@media screen and (max-width: #{$tablet-s-width}), (max-height: 800px) { @media screen and (max-width: #{$tablet-s-width}), (max-height: 800px) {
height: calc(100% - 146px); height: calc(100% - 160px);
} }
th { th {
font-size: 1em; font-size: 1em;
@ -151,15 +151,14 @@ $tablet-s-width: 768px;
.footer-fix { .footer-fix {
position: absolute; position: absolute;
bottom: 0; bottom: 0;
min-height: 40px; min-height: 50px;
width: 100%; width: 100%;
height: 170px;
flex-direction: column; flex-direction: column;
box-sizing: border-box; box-sizing: border-box;
display: flex; display: flex;
border-top: 1px solid #dddddd; border-top: 1px solid #dddddd;
.btn-box { .btn-box {
position: absolute; position: relative;
bottom: 0; bottom: 0;
height: 50px; height: 50px;
margin-bottom: 10px; margin-bottom: 10px;

View File

@ -1,3 +1,5 @@
$tablet-s-width: 768px;
@mixin ellipsis($row) { @mixin ellipsis($row) {
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
@ -21,6 +23,9 @@
.table-box { .table-box {
height: calc(100% - 100px); height: calc(100% - 100px);
overflow: auto; overflow: auto;
@media screen and (max-width: #{$tablet-s-width}) {
height: calc(100% - 50px);
}
} }
.footer-fix { .footer-fix {
width: 100%; width: 100%;

View File

@ -74,7 +74,7 @@
} }
} }
.mat-ink-bar { .mat-ink-bar {
display: none; opacity: 0;
} }
} }

View File

@ -15,7 +15,10 @@
></app-layout-messenger-left-side> ></app-layout-messenger-left-side>
</mat-drawer> </mat-drawer>
<div class="chat-messages bg-accent-brightest"> <div class="chat-messages bg-accent-brightest">
<div #statusbarContainer class="messenger-statusbar-container"> <div
#statusbarContainer
class="messenger-statusbar-container bg-accent-darkest"
>
<div class="messenger-statusbar-message"> <div class="messenger-statusbar-message">
업데이트가 존재합니다. 업데이트가 존재합니다.
</div> </div>

View File

@ -23,12 +23,13 @@
min-width: 320px; min-width: 320px;
overflow-x: auto; overflow-x: auto;
font-size: 1em; font-size: 1em;
overflow-y: hidden;
.messenger-statusbar-container { .messenger-statusbar-container {
width: 100%; width: 100%;
height: 25px; height: 24px;
background-color: silver;
text-align: center; text-align: center;
line-height: 24px;
font-size: 0.9em;
.messenger-statusbar-message { .messenger-statusbar-message {
width: calc(100% - 20px); width: calc(100% - 20px);

View File

@ -384,6 +384,12 @@ $daesang-grey: (
min-width: 33%; min-width: 33%;
} }
} }
.mat-ink-bar {
opacity: 1;
}
.mat-tab-body-wrapper {
height: 100%;
}
} }
//쪽지 라디오 버튼 정렬 //쪽지 라디오 버튼 정렬
@ -410,9 +416,7 @@ $daesang-grey: (
} }
.mat-ink-bar { .mat-ink-bar {
width: 0px !important; opacity: 0;
height: 50px;
left: 98% !important;
} }
} }
@ -520,25 +524,4 @@ $daesang-grey: (
background-color: mat-color($accent, B100); background-color: mat-color($accent, B100);
} }
} }
.rightDrawer-item {
.footer-fix {
.mat-paginator-container {
display: flex;
flex-flow: column;
}
}
@media screen and (max-width: #{$tablet-s-width}) {
.footer-fix {
height: 100px;
.mat-paginator-container {
height: 40px;
min-height: 40px;
.mat-paginator-page-size {
display: none;
}
}
}
}
}
} }

View File

@ -1,14 +1,21 @@
@charset 'utf-8'; @charset 'utf-8';
$tablet-s-width: 768px;
.mat-paginator { .mat-paginator {
.mat-paginator-container { .mat-paginator-container {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: flex-end; justify-content: flex-end;
min-height: 56px; min-height: 50px;
padding: 0 8px; padding: 0 8px;
width: 100%; width: 100%;
flex-flow: column-reverse; flex-flow: column-reverse;
.mat-paginator-page-size {
height: 60px;
}
.mat-paginator-range-actions {
height: 50px;
}
} }
.mat-paginator-navigation-first { .mat-paginator-navigation-first {
order: 1; order: 1;
@ -26,4 +33,13 @@
.mat-paginator-navigation-last { .mat-paginator-navigation-last {
order: 5; order: 5;
} }
@media screen and (max-width: #{$tablet-s-width}) {
.mat-paginator-container {
height: 50px;
min-height: 50px;
.mat-paginator-page-size {
display: none;
}
}
}
} }