/* 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); /* μ•„λž˜μͺ½ ν™”μ‚΄ν‘œ */ }