| | .status-mod { color: #a371f7; } |
| | |
| | -.tag-list { |
| | +.tag-table { |
| | + width: 100%; |
| | + border-collapse: collapse; |
| | margin-top: 10px; |
| | } |
| | |
| | -.tag-row { |
| | - display: flex; |
| | - padding: 10px 0; |
| | - border-bottom: 1px solid #30363d; |
| | - gap: 15px; |
| | - align-items: baseline; |
| | +.tag-table th { |
| | + text-align: left; |
| | + padding: 10px 16px; |
| | + border-bottom: 2px solid #30363d; |
| | + color: #8b949e; |
| | + font-size: 0.875rem; |
| | + font-weight: 600; |
| | +} |
| | + |
| | +.tag-table td { |
| | + padding: 12px 16px; |
| | + border-bottom: 1px solid #21262d; |
| | + vertical-align: middle; |
| | color: #c9d1d9; |
| | } |
| | |
| | -.tag-row:last-child { |
| | +.tag-table tr:last-child td { |
| | border-bottom: none; |
| | } |
| | |
| | -.tag-row:hover { |
| | - background: rgba(110, 118, 129, 0.05); |
| | +.tag-table tr:hover td { |
| | + background: #161b22; |
| | } |
| | |
| | -.tag-row .tag-name { |
| | +.tag-table .tag-name { |
| | + width: 15%; |
| | font-family: 'SFMono-Regular', Consolas, monospace; |
| | font-size: 0.9rem; |
| | - color: #58a6ff; |
| | - width: 150px; |
| | - flex-shrink: 0; |
| | white-space: nowrap; |
| | - overflow: hidden; |
| | - text-overflow: ellipsis; |
| | } |
| | |
| | -.tag-row .tag-name a { |
| | +.tag-table .tag-name a { |
| | + color: #58a6ff; |
| | text-decoration: none; |
| | - color: inherit; |
| | + display: inline-flex; |
| | + align-items: center; |
| | + gap: 8px; |
| | } |
| | |
| | -.tag-row .tag-name a:hover { |
| | +.tag-table .tag-name a:hover { |
| | text-decoration: underline; |
| | } |
| | |
| | -.tag-row .tag-message { |
| | - flex: 1; |
| | - font-weight: 500; |
| | - white-space: nowrap; |
| | - overflow: hidden; |
| | - text-overflow: ellipsis; |
| | +.tag-table .tag-message { |
| | + width: 50%; |
| | color: #c9d1d9; |
| | + font-weight: 500; |
| | } |
| | |
| | -.tag-row .tag-meta { |
| | - font-size: 0.85em; |
| | +.tag-table .tag-meta { |
| | + width: 35%; |
| | + text-align: right; |
| | color: #8b949e; |
| | + font-size: 0.85em; |
| | white-space: nowrap; |
| | - text-align: right; |
| | } |
| | |
| | -.tag-row .tag-meta a { |
| | - color: inherit; |
| | +/* Ensures the commit hash is blue */ |
| | +.tag-table .commit-hash { |
| | + font-family: 'SFMono-Regular', Consolas, monospace; |
| | + color: #58a6ff; |
| | text-decoration: none; |
| | + margin-left: 5px; |
| | } |
| | |
| | -.tag-row .tag-meta a:hover { |
| | +.tag-table .commit-hash:hover { |
| | text-decoration: underline; |
| | - color: #58a6ff; |
| | } |
| | + |
| | |