수정사항 반영
This commit is contained in:
parent
db000a5b49
commit
ec84008345
|
@ -7,7 +7,10 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<form name="loginForm" [formGroup]="loginForm" novalidate>
|
<form name="loginForm" [formGroup]="loginForm" novalidate>
|
||||||
<mat-form-field [style.display]="!!curCompanyCode ? 'none' : 'block'">
|
<mat-form-field
|
||||||
|
[style.display]="!!curCompanyCode ? 'none' : 'block'"
|
||||||
|
class="login-company"
|
||||||
|
>
|
||||||
<mat-label>{{ 'accounts.fieldCompany' | translate }}</mat-label>
|
<mat-label>{{ 'accounts.fieldCompany' | translate }}</mat-label>
|
||||||
<mat-select [formControl]="companyCodeFormControl">
|
<mat-select [formControl]="companyCodeFormControl">
|
||||||
<mat-option
|
<mat-option
|
||||||
|
@ -18,12 +21,12 @@
|
||||||
</mat-select>
|
</mat-select>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
|
|
||||||
<mat-form-field>
|
<mat-form-field class="login-id">
|
||||||
<mat-label>{{ 'accounts.fieldLoginId' | translate }}</mat-label>
|
<mat-label>{{ 'accounts.fieldLoginId' | translate }}</mat-label>
|
||||||
<input matInput [formControl]="loginIdFormControl" />
|
<input matInput [formControl]="loginIdFormControl" />
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
|
|
||||||
<mat-form-field>
|
<mat-form-field class="login-pw">
|
||||||
<mat-label>{{ 'accounts.fieldLoginPw' | translate }}</mat-label>
|
<mat-label>{{ 'accounts.fieldLoginPw' | translate }}</mat-label>
|
||||||
<input
|
<input
|
||||||
matInput
|
matInput
|
||||||
|
|
|
@ -28,21 +28,17 @@ $login-max-height: 800px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
background-color: rgba(255, 255, 255, 1);
|
background-color: rgba(255, 255, 255, 1);
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
|
font-size: 14px;
|
||||||
|
|
||||||
.mat-title {
|
.mat-title {
|
||||||
margin: 10px 0 40px 0;
|
margin: 10px 0 40px 0;
|
||||||
text-indent: -10000000px;
|
text-indent: -10000000px;
|
||||||
width: 140px;
|
width: 140px;
|
||||||
height: 140px;
|
height: 140px;
|
||||||
// background-image: url(/assets/images/logo/bg_login_w160.png);
|
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
background-size: 100% auto;
|
background-size: 100% auto;
|
||||||
flex: 1 1 auto;
|
flex: 1 1 auto;
|
||||||
/*@media all and (max-height: 800px), (max-width: 1400px) {
|
|
||||||
width: 14vh;
|
|
||||||
margin: 10px 0 10px 0;
|
|
||||||
}*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
form {
|
form {
|
||||||
|
@ -51,6 +47,12 @@ $login-max-height: 800px;
|
||||||
|
|
||||||
mat-form-field {
|
mat-form-field {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
&.login-id {
|
||||||
|
margin-bottom: 10px;
|
||||||
|
@media screen and (max-width: #{$tablet-s-width}) {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mat-checkbox {
|
mat-checkbox {
|
||||||
|
|
|
@ -7,11 +7,11 @@
|
||||||
<div class="add-option">
|
<div class="add-option">
|
||||||
<button
|
<button
|
||||||
mat-icon-button
|
mat-icon-button
|
||||||
class="material-icons"
|
class="material-icons icon-button"
|
||||||
(click)="onClickFileInput()"
|
(click)="onClickFileInput()"
|
||||||
matTooltip="{{ 'chat.btnAttachFile' | translate }}"
|
matTooltip="{{ 'chat.btnAttachFile' | translate }}"
|
||||||
>
|
>
|
||||||
<mat-icon>attach_file</mat-icon>
|
<i class="mid mdi-upload"></i>
|
||||||
</button>
|
</button>
|
||||||
<input
|
<input
|
||||||
type="file"
|
type="file"
|
||||||
|
@ -23,11 +23,12 @@
|
||||||
|
|
||||||
<button
|
<button
|
||||||
mat-icon-button
|
mat-icon-button
|
||||||
class="material-icons"
|
class="material-icons icon-button"
|
||||||
(click)="onClickStickerSelector()"
|
(click)="onClickStickerSelector()"
|
||||||
matTooltip="{{ 'chat.btnSticker' | translate }}"
|
matTooltip="{{ 'chat.btnSticker' | translate }}"
|
||||||
>
|
>
|
||||||
<mat-icon>sentiment_satisfied_alt</mat-icon>
|
<!--<mat-icon>sentiment_satisfied_alt</mat-icon>-->
|
||||||
|
<i class="mid mdi-emoticon-happy-outline"></i>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
<button
|
<button
|
||||||
|
|
|
@ -17,10 +17,11 @@ $tablet-l-width: 1024px;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
button {
|
button {
|
||||||
width: 20px;
|
width: 24px;
|
||||||
height: 20px;
|
height: 24px;
|
||||||
line-height: normal;
|
line-height: normal;
|
||||||
|
margin-right: 6px;
|
||||||
|
color: rgb(0, 0, 0, 0.7);
|
||||||
.mat-icon {
|
.mat-icon {
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
color: rgb(0, 0, 0, 0.87);
|
color: rgb(0, 0, 0, 0.87);
|
||||||
|
@ -33,25 +34,26 @@ $tablet-l-width: 1024px;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
i {
|
||||||
|
font-size: 24px;
|
||||||
|
}
|
||||||
svg {
|
svg {
|
||||||
fill: rgb(0, 0, 0, 0.87);
|
fill: rgb(0, 0, 0, 0.7);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea[name='message'] {
|
textarea[name='message'] {
|
||||||
min-height: 2em;
|
min-height: 2em;
|
||||||
line-height: 1.2em;
|
line-height: 1.2em;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mat-form-field-flex {
|
.mat-form-field-flex {
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
}
|
}
|
||||||
.mat-form-field-underline {
|
|
||||||
background-color: none;
|
|
||||||
transform: scaleY(0);
|
|
||||||
}
|
|
||||||
::ng-deep .send-message-button {
|
::ng-deep .send-message-button {
|
||||||
margin-left: 20px;
|
margin-left: 20px;
|
||||||
@media screen and (max-width: #{$tablet-l-width}), (max-height: 800px) {
|
@media screen and (max-width: #{$tablet-l-width}), (max-height: 800px) {
|
||||||
|
|
|
@ -97,10 +97,14 @@ textarea {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//텍스트 선명도
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//label 선명도
|
.mat-error {
|
||||||
|
font-size: 0.84em;
|
||||||
|
}
|
||||||
|
|
||||||
.mat-form-field {
|
.mat-form-field {
|
||||||
&.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float
|
&.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float
|
||||||
.mat-form-field-label,
|
.mat-form-field-label,
|
||||||
|
@ -109,10 +113,10 @@ textarea {
|
||||||
+ .mat-form-field-label-wrapper
|
+ .mat-form-field-label-wrapper
|
||||||
.mat-form-field-label {
|
.mat-form-field-label {
|
||||||
font-size: 0.7em;
|
font-size: 0.7em;
|
||||||
transform: translateY(-1.28125em) scale(1);
|
transform: translateY(-1.1em) scale(1);
|
||||||
|
}
|
||||||
|
.mat-form-field-underline {
|
||||||
|
background-color: none;
|
||||||
|
transform: scaleY(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.mat-error {
|
|
||||||
font-size: 0.84em;
|
|
||||||
}
|
|
||||||
|
|
|
@ -53,4 +53,7 @@ mat-icon {
|
||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
&:hover {
|
||||||
|
opacity: 0.7;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,13 @@
|
||||||
|
|
||||||
.mat-paginator {
|
.mat-paginator {
|
||||||
.mat-paginator-container {
|
.mat-paginator-container {
|
||||||
justify-content: center;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: flex-end;
|
||||||
|
min-height: 56px;
|
||||||
|
padding: 0 8px;
|
||||||
|
width: 100%;
|
||||||
|
flex-flow: column-reverse;
|
||||||
}
|
}
|
||||||
.mat-paginator-navigation-first {
|
.mat-paginator-navigation-first {
|
||||||
order: 1;
|
order: 1;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.search-container {
|
::ng-deep .search-container {
|
||||||
-webkit-app-region: no-drag;
|
-webkit-app-region: no-drag;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: row;
|
flex-flow: row;
|
||||||
|
|
|
@ -195,7 +195,7 @@
|
||||||
</table>
|
</table>
|
||||||
</perfect-scrollbar>
|
</perfect-scrollbar>
|
||||||
</div>
|
</div>
|
||||||
<div class="footer-fix">
|
<div class="footer-fix search-result-footer">
|
||||||
<mat-paginator
|
<mat-paginator
|
||||||
[length]="totalCount"
|
[length]="totalCount"
|
||||||
[pageSize]="pageListCount"
|
[pageSize]="pageListCount"
|
||||||
|
|
|
@ -152,7 +152,16 @@
|
||||||
font-size: 0.8em;
|
font-size: 0.8em;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
.mat-paginator-container {
|
::ng-deep .search-result-footer {
|
||||||
display: flex;
|
position: relative;
|
||||||
flex-flow: column;
|
.mat-paginator-container {
|
||||||
|
.mat-paginator-page-size {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: -10px;
|
||||||
|
}
|
||||||
|
.mat-paginator-range-actions {
|
||||||
|
padding-top: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user