jawil / GayHub

An awesome chrome extension for github :octocat:
MIT License
1.08k stars 94 forks source link

希望新增横向滚动条或者侧边栏能够拉伸的功能 #62

Open jsonwu5 opened 6 years ago

jsonwu5 commented 6 years ago

image

如图,文件名字过长导致只显示了一半,建议新增横向滚动条或者侧边栏可拉伸。 控制台看了下样式,其中的overflow: hidden;改成overflow: auto;会好些。

.side-bar-main li {
    position: relative;
    cursor: pointer;
    line-height: 22px;
    max-height: 22px;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    padding-left: 1em;
    list-style: none;
    overflow: hidden;
    transition: all 0.5s ease-out;
}