bug fixed
This commit is contained in:
parent
932af0d271
commit
c789c02e89
|
@ -1,4 +1,3 @@
|
||||||
@charset "UTF-8"
|
|
||||||
.bubble-main {
|
.bubble-main {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
@charset 'utf-8';
|
|
||||||
.date-split {
|
.date-split {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-content: center;
|
align-content: center;
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
@charset "UTF-8"
|
|
||||||
.bubble-main {
|
.bubble-main {
|
||||||
padding: 14px;
|
padding: 14px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-box {
|
.btn-box {
|
||||||
border-top: 1px solid #dddddd;
|
border-top: 1px solid #dddddd;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
@charset "UTF-8"
|
|
||||||
.event-main {
|
.event-main {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
@charset "UTF-8"
|
|
||||||
.translation-main {
|
.translation-main {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
.original {
|
.original {
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
@charset "UTF-8"
|
|
||||||
.bubble-main {
|
.bubble-main {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
padding: 14px;
|
padding: 14px;
|
||||||
|
@ -24,7 +23,7 @@
|
||||||
.file-name {
|
.file-name {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
display:inline-flex
|
display: inline-flex;
|
||||||
}
|
}
|
||||||
.file-size {
|
.file-size {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
|
|
|
@ -206,7 +206,6 @@ $meBox-bg: #ffffff;
|
||||||
word-wrap: break-word;
|
word-wrap: break-word;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.message-row.me > .bubble {
|
.message-row.me > .bubble {
|
||||||
|
|
|
@ -12,6 +12,3 @@
|
||||||
@import 'partials/icons';
|
@import 'partials/icons';
|
||||||
@import 'partials/normalize';
|
@import 'partials/normalize';
|
||||||
@import 'partials/scrollbars';
|
@import 'partials/scrollbars';
|
||||||
|
|
||||||
//creative
|
|
||||||
@import 'global/default';
|
|
||||||
|
|
|
@ -1,53 +0,0 @@
|
||||||
@charset 'utf-8';
|
|
||||||
|
|
||||||
$listH-row3: 120px;
|
|
||||||
$listH-row2: 90px;
|
|
||||||
$listH-row2-s: 70px;
|
|
||||||
$checkbox-size: 16px;
|
|
||||||
$presence-size: 8px;
|
|
||||||
$thumbnail-msize: 40px;
|
|
||||||
$bg-list-hover: #efefef;
|
|
||||||
$bg-list-item-msg: #f0f4f6;
|
|
||||||
|
|
||||||
$font-dark: #212121;
|
|
||||||
$font-mid: #666666;
|
|
||||||
$font-light: #848d95;
|
|
||||||
$font-white: #ffffff;
|
|
||||||
|
|
||||||
$line-basic: 1px solid #dddddd;
|
|
||||||
$color-main: #ee278b;
|
|
||||||
|
|
||||||
@mixin ellipsis($row) {
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
@if $row == 1 {
|
|
||||||
display: block;
|
|
||||||
white-space: nowrap;
|
|
||||||
word-wrap: normal;
|
|
||||||
} @else if $row >= 2 {
|
|
||||||
display: -webkit-box;
|
|
||||||
-webkit-line-clamp: $row;
|
|
||||||
-webkit-box-orient: vertical;
|
|
||||||
word-wrap: break-word;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin border-radius($radius) {
|
|
||||||
border-radius: $radius;
|
|
||||||
-webkit-border-radius: $radius;
|
|
||||||
-moz-border-radius: $radius;
|
|
||||||
}
|
|
||||||
@mixin visible($sh) {
|
|
||||||
display: $sh;
|
|
||||||
}
|
|
||||||
@mixin presence-status($status) {
|
|
||||||
@if $status == pcOn {
|
|
||||||
background-color: #28ad66;
|
|
||||||
} @else if $status == pcOut {
|
|
||||||
background-color: #f35b5b;
|
|
||||||
} @else if $status == pcOff {
|
|
||||||
background-color: #a29f9f;
|
|
||||||
} @else if $status == pcOther {
|
|
||||||
background-color: #f0c10a;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,47 +0,0 @@
|
||||||
@charset 'utf-8';
|
|
||||||
|
|
||||||
html {
|
|
||||||
height: 100%;
|
|
||||||
overflow-y: scroll;
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
position: relative;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
padding: 0;
|
|
||||||
margin: 0;
|
|
||||||
color: #333;
|
|
||||||
font-family: '나눔고딕', Malgun Gothic, '맑은고딕', Arial, Dotum, '돋움',
|
|
||||||
Gulim, '굴림';
|
|
||||||
font-size: 13px;
|
|
||||||
line-height: 18px !important;
|
|
||||||
-webkit-box-sizing: border-box;
|
|
||||||
-moz-box-sizing: border-box;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
div,
|
|
||||||
p,
|
|
||||||
ol,
|
|
||||||
ul,
|
|
||||||
li,
|
|
||||||
h1,
|
|
||||||
h2,
|
|
||||||
h3,
|
|
||||||
h4,
|
|
||||||
h5,
|
|
||||||
h6,
|
|
||||||
form,
|
|
||||||
iframe,
|
|
||||||
dl,
|
|
||||||
dt,
|
|
||||||
dd {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
-webkit-box-sizing: border-box;
|
|
||||||
-moz-box-sizing: border-box;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
ul,
|
|
||||||
ol {
|
|
||||||
list-style: none;
|
|
||||||
}
|
|
|
@ -33,7 +33,6 @@
|
||||||
],
|
],
|
||||||
"@ucap-webmessenger/pi": ["projects/ucap-webmessenger-pi/src/public-api"],
|
"@ucap-webmessenger/pi": ["projects/ucap-webmessenger-pi/src/public-api"],
|
||||||
"@ucap-webmessenger/ui": ["projects/ucap-webmessenger-ui/src/public-api"],
|
"@ucap-webmessenger/ui": ["projects/ucap-webmessenger-ui/src/public-api"],
|
||||||
"@ucap-webmessenger/ui/*": ["projects/ucap-webmessenger-ui/src/*"],
|
|
||||||
"@ucap-webmessenger/ui-account": [
|
"@ucap-webmessenger/ui-account": [
|
||||||
"projects/ucap-webmessenger-ui-account/src/public-api"
|
"projects/ucap-webmessenger-ui-account/src/public-api"
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in New Issue
Block a user