버젼정보 및 수정사항
This commit is contained in:
parent
bbebd8bedc
commit
9ba7bd4966
|
@ -30,6 +30,7 @@
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
border: 1px solid #cccccc;
|
border: 1px solid #cccccc;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
font-size: 0.9em;
|
||||||
.select-file {
|
.select-file {
|
||||||
color: #212121;
|
color: #212121;
|
||||||
border-bottom: 1px dotted #dddddd;
|
border-bottom: 1px dotted #dddddd;
|
||||||
|
@ -74,8 +75,7 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
width: 100px;
|
height: 90px;
|
||||||
height: 100px;
|
|
||||||
background-color: #efefef;
|
background-color: #efefef;
|
||||||
border: 1px dotted #cccccc;
|
border: 1px dotted #cccccc;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
@ -87,12 +87,10 @@
|
||||||
dd {
|
dd {
|
||||||
.btn-download {
|
.btn-download {
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
|
height:40px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&:nth-child(3n + 0) {
|
|
||||||
margin-right: 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -102,14 +100,18 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: wrap;
|
flex-flow: wrap;
|
||||||
height: auto;
|
height: auto;
|
||||||
justify-content: space-between;
|
justify-content: stretch;
|
||||||
|
align-content: space-between;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
.img-item {
|
.img-item {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
position: relative;
|
position: relative;
|
||||||
height: 130px;
|
width: 32%;
|
||||||
width: 33%;
|
margin-right: 2%;
|
||||||
|
&:nth-child(3n + 0) {
|
||||||
|
margin-right: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -128,6 +130,7 @@
|
||||||
button {
|
button {
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
|
padding: 0 12px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -173,6 +173,7 @@ $listH-row2: 60px;
|
||||||
button {
|
button {
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
|
padding: 0 12px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<div fxLayout="column" class="list">
|
<div fxLayout="column" class="list">
|
||||||
<div class="search-list">
|
<div class="search-list">
|
||||||
<perfect-scrollbar class="album-scrollbar">
|
<perfect-scrollbar class="room-user-scrollbar">
|
||||||
<ucap-profile-user-list-item
|
<ucap-profile-user-list-item
|
||||||
*ngFor="let userInfo of userInfoList"
|
*ngFor="let userInfo of userInfoList"
|
||||||
[userInfo]="userInfo"
|
[userInfo]="userInfo"
|
||||||
|
|
|
@ -439,35 +439,28 @@
|
||||||
class="version-info-container menu-item"
|
class="version-info-container menu-item"
|
||||||
(click)="$event.stopPropagation()"
|
(click)="$event.stopPropagation()"
|
||||||
>
|
>
|
||||||
<div>
|
<div class="version-info-now" >
|
||||||
<span>
|
<span class="version-info-item">
|
||||||
{{ 'information.installedVersion' | translate }}:{{ appVersion }}
|
{{ 'information.installedVersion' | translate }}:<span class="info-content">{{ appVersion }}</span>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div *ngIf="checkingUpdate">
|
<div *ngIf="checkingUpdate" class="version-info-newest">
|
||||||
<div *ngIf="checkingUpdateIsProcessing" style="display: flex;">
|
<div *ngIf="checkingUpdateIsProcessing">
|
||||||
<mat-spinner
|
<span class="version-info-item">
|
||||||
*ngIf="checkingUpdate && checkingUpdateIsProcessing"
|
{{ 'information.checkForUpdatesInProgress' | translate }}
|
||||||
diameter="20"
|
<span class="info-content"> <mat-spinner *ngIf="checkingUpdate && checkingUpdateIsProcessing" diameter="20" strokeWidth="1"></mat-spinner></span>
|
||||||
strokeWidth="1"
|
</span>
|
||||||
></mat-spinner>
|
|
||||||
{{ 'information.checkForUpdatesInProgress' | translate }}
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div *ngIf="!checkingUpdateIsProcessing" style="display: flex;">
|
<div *ngIf="!checkingUpdateIsProcessing" style="display: flex;">
|
||||||
<span>
|
<span class="version-info-item">
|
||||||
{{ 'information.latestVersion' | translate }}:{{
|
{{ 'information.latestVersion' | translate }}:<span class="info-content">{{
|
||||||
checkingUpdateAppVersion
|
checkingUpdateAppVersion
|
||||||
}}
|
}}</span>
|
||||||
</span>
|
</span>
|
||||||
<span>
|
<span class="version-info-button">
|
||||||
<button
|
<button *ngIf="checkingUpdateIsExist" mat-flat-button
|
||||||
*ngIf="checkingUpdateIsExist"
|
class="mat-primary" (click)="onClickApplyUpdate($event)">{{ 'information.applyUpdates' | translate }}</button>
|
||||||
mat-button
|
|
||||||
(click)="onClickApplyUpdate($event)"
|
|
||||||
>
|
|
||||||
{{ 'information.applyUpdates' | translate }}
|
|
||||||
</button>
|
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -298,5 +298,41 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.version-info-container {
|
.version-info-container {
|
||||||
width: 250px;
|
display: flex;
|
||||||
|
flex-flow: column;
|
||||||
|
padding: 10px 20px;
|
||||||
|
.version-info-now {
|
||||||
|
.version-info-item {
|
||||||
|
display: flex;
|
||||||
|
height: 2em;
|
||||||
|
justify-items: center;
|
||||||
|
.info-content {
|
||||||
|
margin-left: auto;
|
||||||
|
text-align: end;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.version-info-newest {
|
||||||
|
width: 240px;
|
||||||
|
div {
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column;
|
||||||
|
.version-info-item {
|
||||||
|
display: flex;
|
||||||
|
height: 2em;
|
||||||
|
justify-items: center;
|
||||||
|
.info-content {
|
||||||
|
margin-left: auto;
|
||||||
|
text-align: end;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.version-info-button {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
button {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -60,8 +60,8 @@
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
margin: 50px auto;
|
margin: 50px auto;
|
||||||
text-indent: -9999em;
|
text-indent: -9999em;
|
||||||
width: 11em;
|
width: 100px;
|
||||||
height: 11em;
|
height: 100px;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
background: #ffffff;
|
background: #ffffff;
|
||||||
background: -moz-linear-gradient(
|
background: -moz-linear-gradient(
|
||||||
|
@ -113,7 +113,7 @@
|
||||||
.credit {
|
.credit {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
font-size: 1.3em;
|
font-size: 1.2em;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -137,3 +137,13 @@
|
||||||
transform: rotate(360deg);
|
transform: rotate(360deg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1024px), (max-height: 800px) {
|
||||||
|
.load-container .loader {
|
||||||
|
width: 10vw;
|
||||||
|
height: 10vw;
|
||||||
|
}
|
||||||
|
.credit {
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -17,18 +17,6 @@ $login-max-height: 800px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@include tab {
|
|
||||||
.login-form {
|
|
||||||
width: 34vw;
|
|
||||||
min-width: 34vw;
|
|
||||||
font-size: 0.9em;
|
|
||||||
}
|
|
||||||
.mat-title {
|
|
||||||
width: 14vh;
|
|
||||||
height: 14vh;
|
|
||||||
margin: 10px 0 10px 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.login-form {
|
.login-form {
|
||||||
position: relative;
|
position: relative;
|
||||||
transform: scale(1);
|
transform: scale(1);
|
||||||
|
|
|
@ -84,7 +84,7 @@ $thumbnail-msize: 40px;
|
||||||
|
|
||||||
.room-info {
|
.room-info {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
width: calc(100% - 80px);
|
width: calc(100% - 60px);
|
||||||
.detail {
|
.detail {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
color: $font-dark;
|
color: $font-dark;
|
||||||
|
@ -118,12 +118,12 @@ $thumbnail-msize: 40px;
|
||||||
}
|
}
|
||||||
.date {
|
.date {
|
||||||
float: right;
|
float: right;
|
||||||
width: 70px;
|
width: 60px;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
margin-left: 10px;
|
|
||||||
color: $font-mid;
|
color: $font-mid;
|
||||||
align-items: flex-start;
|
align-items: flex-end;
|
||||||
margin-top: -2px;
|
margin-top: -2px;
|
||||||
|
margin-left: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -55,7 +55,7 @@ $line-basic: 1px solid #dddddd;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin-right: 16px;
|
margin-right: 12px;
|
||||||
position: relative;
|
position: relative;
|
||||||
img {
|
img {
|
||||||
width: 40px;
|
width: 40px;
|
||||||
|
|
|
@ -1,19 +1,28 @@
|
||||||
.sticker-selector {
|
::ng-deep .sticker-selector {
|
||||||
height: 220px;
|
height: 220px;
|
||||||
border-top: 1px solid #cccccc;
|
border-top: 1px solid #cccccc;
|
||||||
|
.mat-tab-header {
|
||||||
.sticker-item-box {
|
.mat-tab-label {
|
||||||
flex-wrap: wrap;
|
padding: 0 10px;
|
||||||
padding: 20px 20px 0;
|
}
|
||||||
|
}
|
||||||
|
.mat-tab-body-wrapper {
|
||||||
|
height: 180px;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.sticker-item {
|
.sticker-item-box {
|
||||||
width: 60px;
|
flex-wrap: wrap;
|
||||||
margin-bottom: 20px;
|
padding: 20px 20px 0;
|
||||||
display: inline-flex;
|
overflow: auto;
|
||||||
cursor: pointer;
|
|
||||||
|
.sticker-item {
|
||||||
|
width: 60px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
display: inline-flex;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.selected-sticker {
|
.selected-sticker {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user