Skip to content

Commit 4d4a088

Browse files
Remove overflow hidden from link styles and increase z-index for better visibility
1 parent 0663392 commit 4d4a088

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

styles.css

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1228,7 +1228,7 @@ a:focus {
12281228
font-size: 13px;
12291229
color: var(--text-color);
12301230
white-space: nowrap;
1231-
overflow: hidden;
1231+
/* overflow: hidden; <-- REMOVE THIS */
12321232
position: relative;
12331233
transition: background-color 0.15s ease, color 0.15s ease;
12341234
flex-shrink: 0;
@@ -1266,8 +1266,7 @@ a:focus {
12661266
text-overflow: ellipsis;
12671267
white-space: nowrap;
12681268
flex: 1;
1269-
font-size: 12px;
1270-
line-height: 1;
1269+
min-width: 0;
12711270
}
12721271

12731272
.tab-close-btn {
@@ -1396,7 +1395,7 @@ a:focus {
13961395
border: 1px solid var(--border-color);
13971396
border-radius: 6px;
13981397
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
1399-
z-index: 1000;
1398+
z-index: 9999; /* ← Raise this from 1000 to 9999 */
14001399
overflow: hidden;
14011400
flex-direction: column;
14021401
}

0 commit comments

Comments
 (0)