Showing
2 changed files
with
5 additions
and
1 deletions
@@ -14,7 +14,7 @@ | @@ -14,7 +14,7 @@ | ||
14 | {{#if title}}<h2 class="title">{{title}}</h2>{{/if}} | 14 | {{#if title}}<h2 class="title">{{title}}</h2>{{/if}} |
15 | <ul class="left-list"> | 15 | <ul class="left-list"> |
16 | {{#each list}} | 16 | {{#each list}} |
17 | - <li> | 17 | + <li{{#name}} title="{{.}}"{{/name}}> |
18 | <a href="{{url}}"> | 18 | <a href="{{url}}"> |
19 | <div class="classic-name"> | 19 | <div class="classic-name"> |
20 | {{#name}} | 20 | {{#name}} |
@@ -296,6 +296,7 @@ | @@ -296,6 +296,7 @@ | ||
296 | width: 50px; | 296 | width: 50px; |
297 | height: 50px; | 297 | height: 50px; |
298 | color: #ffc513; | 298 | color: #ffc513; |
299 | + font-size: 14px; | ||
299 | text-align: center; | 300 | text-align: center; |
300 | line-height: 57px; | 301 | line-height: 57px; |
301 | background: url('/product/hat.png'); | 302 | background: url('/product/hat.png'); |
@@ -636,6 +637,9 @@ | @@ -636,6 +637,9 @@ | ||
636 | .name { | 637 | .name { |
637 | font-size: 14px; | 638 | font-size: 14px; |
638 | font-weight: bold; | 639 | font-weight: bold; |
640 | + text-overflow: ellipsis; | ||
641 | + white-space: nowrap; | ||
642 | + overflow: hidden; | ||
639 | } | 643 | } |
640 | 644 | ||
641 | .en-name { | 645 | .en-name { |
-
Please register or login to post a comment