atom / one-light-ui

Atom One light UI theme
MIT License
73 stars 62 forks source link

It is recommended that functionality be added #138

Closed linjialiang closed 6 years ago

linjialiang commented 6 years ago

It is recommended that functionality be added

  1. Free choice font
  2. Adjust the line height
  3. Current line highlighting

The current style I added

// new add
atom-dock.left .list-inline.tab-bar.inset-panel{
    display: none;
}
.item-views .header.list-item.project-root-header{
    z-index: 2;
}
.line.cursor-line {
  background-color: rgba(90, 138, 233, .3) !important;
}
.minimap .cursor-line {
  background-color: rgb(90, 138, 233);
}
.list-tree .selected > span{
    font-size: 14px;
}
atom-workspace{
    font-family: 'Ubuntu Mono';
}
.list-inline.tab-bar.inset-panel > li.active{
    border-bottom: 2px solid rgba(90, 138, 233, .3);
}
.list-inline.tab-bar.inset-panel{
    height:3.5rem;
}
.list-inline.tab-bar.inset-panel > li{
    line-height: 3.5rem;
}
.tab-bar .tab .close-icon{
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.tab-bar .tab .close-icon:hover, .tab-bar .tab .close-icon:active{
    cursor:pointer;
}
.tree-view:focus .selected:before{
    background-color: rgba(90, 138, 233, .3);
}
.left .tree-view .project-root-header{
    border-bottom: 2px solid rgba(90, 138, 233, .3);
    font-size:1.2em;
    height: 3.5rem;
}
.list-group li:not(.list-nested-item),
.list-tree li:not(.list-nested-item),
.list-group li.list-nested-item > .list-item,
.list-tree li.list-nested-item > .list-item{
    line-height: 2.5rem;
}
.list-group .selected::before,
.list-tree .selected::before{
    height: 2.5rem;
}
.tree-view .project-root.project-root:before{
    height: 3.5rem;
}
.tree-view:focus .selected .project-root-header.project-root-header{
    background-color: rgb(150, 180, 230)!important;
}
simurai commented 6 years ago

Are you suggesting to add these changes to the one-light-ui theme?

Or are you only sharing your personal changes you made?

linjialiang commented 6 years ago

Free choice font Adjust the line height Current line highlighting I'd like to be able to add all three, but that's not reasonable. I don't know. That's just my idea!

thomasjo commented 6 years ago

Since you're already able to customize these things by adding the styles to your ~/.atom/styles.less file, I'm going to close this issue. Thanks for your contribution!