Files
dnssash/theme/rd.laser/skin/latest/news_ticker/style.css
T
2026-06-11 18:47:38 +09:00

78 lines
1.5 KiB
CSS

/* News Ticker Latest Skin Style - Title Fix */
.issue-ticker-module {
display: flex;
align-items: center;
border: 1px solid #e0e0e0;
padding: 10px 15px;
background: #f9f9f9;
width: 100%;
box-sizing: border-box;
}
/* 💡 [핵심 수정] 타이틀 영역 Flexbox로 변경 */
.issue-header {
margin-right: 15px;
flex-shrink: 0;
min-width: 0;
}
.issue-header h2 {
margin: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.issue-content {
flex-grow: 1;
position: relative;
overflow: hidden;
height: 24px; /* 한 줄 높이 */
}
.issue-content a {
display: block;
line-height: 24px;
text-decoration: none;
color: #333;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.issue-controls {
margin-left: 15px;
display: flex;
gap: 5px;
flex-shrink: 0;
}
.issue-controls button {
background: none;
border: 1px solid #ccc;
width: 24px;
height: 24px;
cursor: pointer;
position: relative;
}
.issue-controls button:before {
content: '';
position: absolute;
top: 50%;
left: 50%;
border: solid #555;
border-width: 0 2px 2px 0;
display: inline-block;
padding: 3px;
}
.issue-controls .btn-prev:before {
transform: translate(-50%, -50%) rotate(135deg); /* 위쪽 화살표 */
}
.issue-controls .btn-next:before {
transform: translate(-50%, -50%) rotate(-45deg); /* 아래쪽 화살표 */
}