Merge branch 'master' of https://git.loafle.net/ucap-web/next-ucap-messenger
This commit is contained in:
commit
ff0ebc7b5d
@ -188,46 +188,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//mat-snack-bar 공통
|
|
||||||
::ng-deep .cdk-global-overlay-wrapper {
|
|
||||||
.mat-snack-bar-container {
|
|
||||||
margin: 0;
|
|
||||||
padding: 30px;
|
|
||||||
max-width: 60vw;
|
|
||||||
.mat-simple-snackbar {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
span {
|
|
||||||
@include ellipsis(3);
|
|
||||||
display: inline-block;
|
|
||||||
padding: 7px 20px;
|
|
||||||
border: 1px solid #ffffff;
|
|
||||||
background-color: rgb(255, 255, 255, 0.2);
|
|
||||||
color: #ffffff;
|
|
||||||
margin-right: 4px;
|
|
||||||
flex: 1 1 auto;
|
|
||||||
max-width: 40vw;
|
|
||||||
}
|
|
||||||
&-action {
|
|
||||||
display: inline-flex;
|
|
||||||
margin-left: auto;
|
|
||||||
flex: 0 0 auto;
|
|
||||||
height: 100%;
|
|
||||||
button {
|
|
||||||
//background-color: #00b6d5;
|
|
||||||
border-radius: 2px;
|
|
||||||
span {
|
|
||||||
padding: 0 20px;
|
|
||||||
color: #ffffff;
|
|
||||||
background: none;
|
|
||||||
border: none;
|
|
||||||
font-weight: 500;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.chat-header {
|
.chat-header {
|
||||||
.profile-img {
|
.profile-img {
|
||||||
|
@ -12,15 +12,3 @@ $tablet-s-width: 768px;
|
|||||||
margin-right: -10px;
|
margin-right: -10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*rightDrawer공통
|
|
||||||
::ng-deep .rightDrawer-item {
|
|
||||||
width: 100%;
|
|
||||||
height: calc(100% - 60px);
|
|
||||||
.rightDrawer-tab {
|
|
||||||
.mat-tab-label {
|
|
||||||
width: 50%;
|
|
||||||
min-width: 50%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}*/
|
|
||||||
|
@ -53,39 +53,3 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
::ng-deep .clipboard-tab {
|
|
||||||
.mat-tab-header {
|
|
||||||
width: 160px;
|
|
||||||
flex: 0 0 160px;
|
|
||||||
.mat-tab-labels {
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: start;
|
|
||||||
border: none;
|
|
||||||
height: 100%;
|
|
||||||
.mat-tab-label {
|
|
||||||
padding: 0 10px;
|
|
||||||
align-content: flex-start;
|
|
||||||
text-align: left;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: flex-start;
|
|
||||||
.mat-checkbox {
|
|
||||||
label {
|
|
||||||
margin-right: 8px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.mat-ink-bar {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.mat-tab-body-wrapper {
|
|
||||||
flex: 1 1 auto;
|
|
||||||
border-left: 1px solid #dddddd;
|
|
||||||
.mat-tab-body {
|
|
||||||
padding: 10px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
[detailContents]="data.detailContents"
|
[detailContents]="data.detailContents"
|
||||||
[curReceiverList]="curReceiverList"
|
[curReceiverList]="curReceiverList"
|
||||||
[fileAllowSize]="fileAllowSize"
|
[fileAllowSize]="fileAllowSize"
|
||||||
|
[sendProcessing]="sendProcessing"
|
||||||
(send)="onSend($event)"
|
(send)="onSend($event)"
|
||||||
(selectReceiver)="onSelectReceiver($event)"
|
(selectReceiver)="onSelectReceiver($event)"
|
||||||
(cancel)="onCancel()"
|
(cancel)="onCancel()"
|
||||||
|
@ -82,6 +82,8 @@ export class MessageWriteDialogComponent implements OnInit {
|
|||||||
|
|
||||||
isModify = false;
|
isModify = false;
|
||||||
|
|
||||||
|
sendProcessing = false;
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
public dialogRef: MatDialogRef<
|
public dialogRef: MatDialogRef<
|
||||||
MessageWriteDialogData,
|
MessageWriteDialogData,
|
||||||
@ -150,6 +152,8 @@ export class MessageWriteDialogComponent implements OnInit {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
onNewSend(message: Message) {
|
onNewSend(message: Message) {
|
||||||
|
this.sendProcessing = true;
|
||||||
|
|
||||||
this.messageApiService
|
this.messageApiService
|
||||||
.sendMessage({
|
.sendMessage({
|
||||||
...message,
|
...message,
|
||||||
@ -162,6 +166,7 @@ export class MessageWriteDialogComponent implements OnInit {
|
|||||||
.pipe(take(1))
|
.pipe(take(1))
|
||||||
.subscribe(
|
.subscribe(
|
||||||
res => {
|
res => {
|
||||||
|
this.sendProcessing = false;
|
||||||
if (!!res && res.responseCode === MessageStatusCode.Success) {
|
if (!!res && res.responseCode === MessageStatusCode.Success) {
|
||||||
let msg = '';
|
let msg = '';
|
||||||
if (!!message.reservationTime) {
|
if (!!message.reservationTime) {
|
||||||
@ -265,6 +270,8 @@ export class MessageWriteDialogComponent implements OnInit {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
onModifySend(message: MessageModify) {
|
onModifySend(message: MessageModify) {
|
||||||
|
this.sendProcessing = true;
|
||||||
|
|
||||||
this.messageApiService
|
this.messageApiService
|
||||||
.editReservationMessageEx({
|
.editReservationMessageEx({
|
||||||
...message,
|
...message,
|
||||||
@ -276,6 +283,7 @@ export class MessageWriteDialogComponent implements OnInit {
|
|||||||
.pipe(take(1))
|
.pipe(take(1))
|
||||||
.subscribe(
|
.subscribe(
|
||||||
res => {
|
res => {
|
||||||
|
this.sendProcessing = false;
|
||||||
if (!!res && res.responseCode === MessageStatusCode.Success) {
|
if (!!res && res.responseCode === MessageStatusCode.Success) {
|
||||||
this.snackBarService.open(
|
this.snackBarService.open(
|
||||||
this.translateService.instant(
|
this.translateService.instant(
|
||||||
|
@ -53,33 +53,3 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
::ng-deep .setting-tab {
|
|
||||||
.mat-tab-header {
|
|
||||||
border: none !important;
|
|
||||||
.mat-tab-labels {
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: start;
|
|
||||||
border: none;
|
|
||||||
height: 100%;
|
|
||||||
.mat-tab-label {
|
|
||||||
padding: 0 10px;
|
|
||||||
align-content: flex-start;
|
|
||||||
text-align: left;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: flex-start;
|
|
||||||
&.mat-tab-label-active {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.mat-ink-bar {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.mat-tab-body-wrapper {
|
|
||||||
flex: 1 1 auto;
|
|
||||||
border-left: 1px solid #dddddd;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
"login": "Login",
|
"login": "Login",
|
||||||
"logout": "Logout",
|
"logout": "Logout",
|
||||||
"fieldCompany": "Company",
|
"fieldCompany": "Company",
|
||||||
"fieldLoginId": "Login ID",
|
"fieldLoginId": "DSP/SC Community ID",
|
||||||
"fieldLoginPw": "Login password",
|
"fieldLoginPw": "DSP/SC Community password",
|
||||||
"fieldPassword": "Password",
|
"fieldPassword": "Password",
|
||||||
"fieldCurrentPassword": "Current password",
|
"fieldCurrentPassword": "Current password",
|
||||||
"fieldNewPassword": "New password",
|
"fieldNewPassword": "New password",
|
||||||
@ -26,8 +26,8 @@
|
|||||||
"doLogoutByOthers": "Forced logout by user."
|
"doLogoutByOthers": "Forced logout by user."
|
||||||
},
|
},
|
||||||
"errors": {
|
"errors": {
|
||||||
"requireLoginId": "Login ID is required.",
|
"requireLoginId": "ID is required.",
|
||||||
"requireLoginPw": "Login password is required.",
|
"requireLoginPw": "password is required.",
|
||||||
"requireCompany": "Company is required.",
|
"requireCompany": "Company is required.",
|
||||||
"requireCurrentPassword": "Current password is required.",
|
"requireCurrentPassword": "Current password is required.",
|
||||||
"notSameWithCurrentPassword": "Does not match current password",
|
"notSameWithCurrentPassword": "Does not match current password",
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
"login": "로그인",
|
"login": "로그인",
|
||||||
"logout": "로그아웃",
|
"logout": "로그아웃",
|
||||||
"fieldCompany": "회사",
|
"fieldCompany": "회사",
|
||||||
"fieldLoginId": "로그인 아이디",
|
"fieldLoginId": "DSP/SC 커뮤티니 아이디",
|
||||||
"fieldLoginPw": "로그인 비밀번호",
|
"fieldLoginPw": "DSP/SC 커뮤티니 비밀번호",
|
||||||
"fieldPassword": "비밀번호",
|
"fieldPassword": "비밀번호",
|
||||||
"fieldCurrentPassword": "현재 비밀번호",
|
"fieldCurrentPassword": "현재 비밀번호",
|
||||||
"fieldNewPassword": "신규 비밀번호",
|
"fieldNewPassword": "신규 비밀번호",
|
||||||
@ -26,8 +26,8 @@
|
|||||||
"doLogoutByOthers": "사용자에 의해 강제로그아웃 하였습니다."
|
"doLogoutByOthers": "사용자에 의해 강제로그아웃 하였습니다."
|
||||||
},
|
},
|
||||||
"errors": {
|
"errors": {
|
||||||
"requireLoginId": "로그인 아이디를 입력해 주세요.",
|
"requireLoginId": "아이디를 입력해 주세요.",
|
||||||
"requireLoginPw": "로그인 비밀번호를 입력해 주세요.",
|
"requireLoginPw": "비밀번호를 입력해 주세요.",
|
||||||
"requireCompany": "회사를 입력해 주세요.",
|
"requireCompany": "회사를 입력해 주세요.",
|
||||||
"requireCurrentPassword": "현재 비밀번호를 입력해 주세요",
|
"requireCurrentPassword": "현재 비밀번호를 입력해 주세요",
|
||||||
"notSameWithCurrentPassword": "현재 비밀번호와 일치하지 않습니다",
|
"notSameWithCurrentPassword": "현재 비밀번호와 일치하지 않습니다",
|
||||||
|
@ -351,10 +351,12 @@ $daesang-grey: (
|
|||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
border-radius: 0px;
|
border-radius: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-main-float .bg-accent-dark {
|
.btn-main-float .bg-accent-dark {
|
||||||
background: mat-color($accent, 600);
|
background: mat-color($accent, 600);
|
||||||
color: mat-color($primary, default-contrast);
|
color: mat-color($primary, default-contrast);
|
||||||
}
|
}
|
||||||
|
|
||||||
.current-head {
|
.current-head {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
@ -389,6 +391,7 @@ $daesang-grey: (
|
|||||||
}
|
}
|
||||||
.mat-tab-body-wrapper {
|
.mat-tab-body-wrapper {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
border: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -401,31 +404,29 @@ $daesang-grey: (
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*mat-tab-group[horizontal] {
|
|
||||||
&.theme-list {
|
|
||||||
.mat-tab-label {
|
|
||||||
flex-direction: row;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}*/
|
|
||||||
|
|
||||||
mat-tab-group[vertical] {
|
mat-tab-group[vertical] {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
|
||||||
.mat-tab-labels {
|
.mat-tab-labels {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-content: flex-start;
|
align-content: flex-start;
|
||||||
|
|
||||||
.mat-tab-label {
|
.mat-tab-label {
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
|
padding: 0;
|
||||||
|
.mat-checkbox {
|
||||||
|
margin-right: 8px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.mat-ink-bar {
|
.mat-ink-bar {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
|
.mat-tab-body-wrapper {
|
||||||
|
flex: 1 1 auto;
|
||||||
|
border-left: 1px solid #dddddd;
|
||||||
|
padding: 0 10px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
nav[mat-tab-nav-bar][vertical] {
|
nav[mat-tab-nav-bar][vertical] {
|
||||||
@ -496,12 +497,35 @@ $daesang-grey: (
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//[s] 번역
|
||||||
.translationForm {
|
.translationForm {
|
||||||
background-color: mat-color($accent, 200, 0.4);
|
background-color: mat-color($accent, 200, 0.4);
|
||||||
|
.select-language {
|
||||||
|
.mat-form-field-wrapper {
|
||||||
|
width: 100%;
|
||||||
|
line-height: 0.8em;
|
||||||
|
.mat-form-field-infix {
|
||||||
|
padding: 0.2em 0 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.mat-form-field-underline {
|
||||||
|
bottom: 0.8em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.mat-slide-toggle {
|
||||||
|
@media screen and (max-width: #{$tablet-s-width}) {
|
||||||
|
label {
|
||||||
|
width: 20%;
|
||||||
|
flex-flow: column;
|
||||||
|
font-size: 0.8em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.translation-preview {
|
.translation-preview {
|
||||||
background-color: mat-color($accent, 900, 0.8);
|
background-color: mat-color($accent, 900, 0.8);
|
||||||
}
|
}
|
||||||
|
|
||||||
.tree-has-child {
|
.tree-has-child {
|
||||||
li {
|
li {
|
||||||
.tree-node-body {
|
.tree-node-body {
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
<mat-card class="mat-elevation-z0 ucap-message-write">
|
<mat-card class="mat-elevation-z0 ucap-message-write">
|
||||||
<form name="messageWriteForm" [formGroup]="messageWriteForm" novalidate>
|
<form name="messageWriteForm" [formGroup]="messageWriteForm" novalidate>
|
||||||
<perfect-scrollbar>
|
<perfect-scrollbar>
|
||||||
|
<div class="write-form">
|
||||||
<div class="add-row">
|
<div class="add-row">
|
||||||
<button
|
<button
|
||||||
mat-button
|
mat-button
|
||||||
@ -82,8 +83,7 @@
|
|||||||
class="attach-file-list"
|
class="attach-file-list"
|
||||||
>
|
>
|
||||||
<div class="attach-file">
|
<div class="attach-file">
|
||||||
<span class="mdi mdi-attachment mdi-18px"> </span
|
<span class="mdi mdi-attachment mdi-18px"> </span>
|
||||||
>
|
|
||||||
<span class="file-name">{{ oldAttachment.resContent }}</span>
|
<span class="file-name">{{ oldAttachment.resContent }}</span>
|
||||||
<button
|
<button
|
||||||
mat-button
|
mat-button
|
||||||
@ -115,6 +115,7 @@
|
|||||||
</mat-list>
|
</mat-list>
|
||||||
</mat-card-content>
|
</mat-card-content>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</perfect-scrollbar>
|
</perfect-scrollbar>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
@ -156,7 +157,8 @@
|
|||||||
!receiverList ||
|
!receiverList ||
|
||||||
0 === receiverList.length ||
|
0 === receiverList.length ||
|
||||||
0 === contentLength ||
|
0 === contentLength ||
|
||||||
1000 < contentLength
|
1000 < contentLength ||
|
||||||
|
!!sendProcessing
|
||||||
"
|
"
|
||||||
class="mat-primary"
|
class="mat-primary"
|
||||||
>
|
>
|
||||||
@ -170,7 +172,8 @@
|
|||||||
!receiverList ||
|
!receiverList ||
|
||||||
0 === receiverList.length ||
|
0 === receiverList.length ||
|
||||||
0 === contentLength ||
|
0 === contentLength ||
|
||||||
1000 < contentLength
|
1000 < contentLength ||
|
||||||
|
!!sendProcessing
|
||||||
"
|
"
|
||||||
class="mat-primary"
|
class="mat-primary"
|
||||||
>
|
>
|
||||||
|
@ -7,6 +7,9 @@
|
|||||||
.ps--active-x > .ps__rail-x {
|
.ps--active-x > .ps__rail-x {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
.write-form {
|
||||||
|
padding-right: 10px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -72,7 +75,6 @@
|
|||||||
min-height: 250px;
|
min-height: 250px;
|
||||||
border: 1px solid #dddddd;
|
border: 1px solid #dddddd;
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
//overflow: auto;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -119,8 +121,6 @@
|
|||||||
.mat-chip-list {
|
.mat-chip-list {
|
||||||
.mat-chip-list-wrapper {
|
.mat-chip-list-wrapper {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
/* max-height: 100px;
|
|
||||||
overflow: auto;*/
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.message-title {
|
.message-title {
|
||||||
|
@ -96,6 +96,8 @@ export class WriteComponent implements OnInit, OnDestroy, AfterViewInit {
|
|||||||
isModify = false;
|
isModify = false;
|
||||||
@Input()
|
@Input()
|
||||||
fileAllowSize: number;
|
fileAllowSize: number;
|
||||||
|
@Input()
|
||||||
|
sendProcessing = false;
|
||||||
|
|
||||||
@Output()
|
@Output()
|
||||||
send = new EventEmitter<Message | MessageModify>();
|
send = new EventEmitter<Message | MessageModify>();
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
::ng-deep .organization-tree {
|
.organization-tree {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
|
|
||||||
.tree-node-closer-container {
|
.tree-node-closer-container {
|
||||||
@ -65,9 +65,6 @@
|
|||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
button {
|
button {
|
||||||
line-height: normal;
|
line-height: normal;
|
||||||
.mat-button-wrapper {
|
|
||||||
width: 24px;
|
|
||||||
height: 24px;
|
|
||||||
.tree-node-expand-btn {
|
.tree-node-expand-btn {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
@ -76,7 +73,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.tree-no-child {
|
.tree-no-child {
|
||||||
height: 50px;
|
height: 50px;
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
::ng-deep .theme-list {
|
::ng-deep .theme-list {
|
||||||
.mat-tab-header {
|
.mat-tab-header {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
border: none !important;
|
||||||
.mat-tab-labels {
|
.mat-tab-labels {
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
@ -45,7 +46,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.mat-tab-body-wrapper {
|
.mat-tab-body-wrapper {
|
||||||
border: none;
|
border: none !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1 +1,40 @@
|
|||||||
$tablet-s-width: 768px;
|
//mat-snack-bar-container
|
||||||
|
.cdk-global-overlay-wrapper {
|
||||||
|
.mat-snack-bar-container {
|
||||||
|
margin: 0;
|
||||||
|
padding: 30px;
|
||||||
|
max-width: 60vw;
|
||||||
|
.mat-simple-snackbar {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
span {
|
||||||
|
@include ellipsis(3);
|
||||||
|
display: inline-block;
|
||||||
|
padding: 7px 20px;
|
||||||
|
border: 1px solid #ffffff;
|
||||||
|
background-color: rgb(255, 255, 255, 0.2);
|
||||||
|
color: #ffffff;
|
||||||
|
margin-right: 4px;
|
||||||
|
flex: 1 1 auto;
|
||||||
|
max-width: 40vw;
|
||||||
|
}
|
||||||
|
&-action {
|
||||||
|
display: inline-flex;
|
||||||
|
margin-left: auto;
|
||||||
|
flex: 0 0 auto;
|
||||||
|
height: 100%;
|
||||||
|
button {
|
||||||
|
//background-color: #00b6d5;
|
||||||
|
border-radius: 2px;
|
||||||
|
span {
|
||||||
|
padding: 0 20px;
|
||||||
|
color: #ffffff;
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
font-weight: 500;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -98,27 +98,3 @@ $tablet-s-width: 768px;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
::ng-deep .translationForm {
|
|
||||||
.select-language {
|
|
||||||
.mat-form-field-wrapper {
|
|
||||||
width: 100%;
|
|
||||||
line-height: 0.8em;
|
|
||||||
.mat-form-field-infix {
|
|
||||||
padding: 0.2em 0 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.mat-form-field-underline {
|
|
||||||
bottom: 0.8em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.mat-slide-toggle {
|
|
||||||
@media screen and (max-width: #{$tablet-s-width}) {
|
|
||||||
label {
|
|
||||||
width: 20%;
|
|
||||||
flex-flow: column;
|
|
||||||
font-size: 0.8em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user