Commit 015ce521 by vietdo

#16040 Web版 サービスオプション「PDF内容のテキストコピー」対応

parent 7caab182
......@@ -56,16 +56,15 @@ section.sectionhomebookshelf .cnt_section_bookshelf:hover{
}
.sectionhomebookshelf a.name{
color: #333333;
font-size: 18px;
text-decoration: none;
font-size: 12px;
text-decoration: none;
}
.sectionhomebookshelf a.name div.content-title{
width: 60px;
white-space: nowrap;
overflow: hidden;
width:150px;
white-space: nowrap; /* 改行を半角スペースに置き換える */
overflow: hidden; /* はみだした部分を削除する */
text-overflow: ellipsis;
}
.cnt_section_bookshelf a.name:hover{ text-decoration:underline; color:#2d83da;}
.cnt_section_bookshelf .text ul.date{ }
......
......@@ -86,11 +86,12 @@ section.sectionhistory .cnt_section_list:hover{
}
.cnt_section_list .text a.name{
color: #37648C;
font-size: 16px;
font-size: 18px;
font-size: 12px;
}
.cnt_section_list .text a div.test1{
width: 600px;
width: 400px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
......
......@@ -140,6 +140,12 @@ section.sectionBookmark .cnt_section:hover{
cursor:default;
text-decoration:none;
}
.cnt_section .text a.name div.pageTitle{
width:400px;
white-space: nowrap; /* 改行を半角スペースに置き換える */
overflow: hidden; /* はみだした部分を削除する */
text-overflow: ellipsis;
}
.cnt_section .text label.name
{
color: #2D83DA;
......
......@@ -81,7 +81,7 @@
</head>
<body id="bookshelf" oncontextmenu="return true">
<body id="bookshelf" oncontextmenu="return false">
<header id="header-ws" class="header_ws">
<div class="notification-pushmessage" style="display:none;">
<!--新着メッセージがあります!!!-->
......
......@@ -671,7 +671,7 @@ BOOKMARK.insertRow = function(contentid, pageThumbnail, pageTitle, pageText, pag
newRow +='</a>';
newRow +='<div class="text">';
newRow += '<a class="name" href="#">' + COMMON.truncate(pageTitle, 20) + '</a>';
newRow += '<a class="name" href="#">' +'<div class ="pageTitle" >'+ pageTitle +'</div>'+ '</a>';
newRow +='<div class="info">';
newRow += '<ul class="date">';
......
......@@ -1018,7 +1018,6 @@ HISTORY.titleClickFunction = function(e){
HISTORY.home_isMove = false;
return;
}
var contentid = $(this).attr('contentid');
// Get image of selected image
var base64String = HISTORY.returnThumbnail(contentid);
......
......@@ -1660,9 +1660,9 @@ HOME.renderContent = function(id, text, division, type, order, from, to, cateid,
+ ' <img id="loadingIcon' + post.contentId + '" src="./img/data_loading.gif" height="25px" width="25px" style="padding: 86px; "/>'
+ ' </div>'
+ ' <a id="title' + post.contentId + '" class="name dialog lang" lang="lblTitle" contentid="' + post.contentId + '">'
+ ' <img src="' + HEADER.getIconTypeContent(post.contentType)+'" width="20" height="20">'
+ ' <img src="' + HEADER.getIconTypeContent(post.contentType)+'" width="20" height="20">'
// + COMMON.truncate(COMMON.htmlEncode(post.contentTitle), 20)
+ ' <div class="content-title">'+post.contentTitle+"..."+'</div>'
+ ' <div class="content-title" style="float:right;text-indent:0px">'+post.contentTitle+'</div>'
+ ' </a>'
+ '</section>'
);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment