first commit 2
This commit is contained in:
@@ -0,0 +1,77 @@
|
||||
/* 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); /* 아래쪽 화살표 */
|
||||
}
|
||||
Reference in New Issue
Block a user