Authored by 陈轩

Merge remote-tracking branch 'origin/release/live' into release/live

... ... @@ -37,7 +37,7 @@
<div class="liverec_info">
<img class="liverec_head" src="{{image master_pic 120 120}}" alt="头像">
<div class="liverec_pannel">
<p class="liverec_name">
<p class="liverec_name clearfix">
<span class="name-name">{{master_name}}</span>
<span class="name-tag">{{master_meta}}</span>
</p>
... ...
... ... @@ -12,12 +12,11 @@ $border: #e0e0e0;
}
.liverec {
height: 423px;
width: 640px;
overflow: hidden;
&_child {
position: relative;
height: 100%;
width: 50%;
float: left;
border-right: 1px solid $border;
... ... @@ -69,7 +68,6 @@ $border: #e0e0e0;
}
.liverec_info {
height: 100px;
padding: 20px 10px 20px 30px;
}
... ... @@ -94,23 +92,27 @@ $border: #e0e0e0;
.name-name {
display: inline-block;
height: 26px;
max-width: 85px;
max-width: 105px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.name-tag {
display: inline-block;
float: right;
font-size: 18px;
height: 26px;
max-width: 100%;
line-height: 26px;
padding: 0 8px;
max-width: 90px;
text-align: center;
background: $black;
border-radius: 20px;
color: $white;
vertical-align: top;
white-space: nowrap;
text-overflow: ellipsis;
}
}
... ...