ignism / nucleus-dark-ui

Atom UI theme
MIT License
112 stars 34 forks source link

Modal & footer styles: colors & paddings #83

Closed alex35mil closed 8 years ago

alex35mil commented 8 years ago

I just updated to the most recent version and notice changes in modal & footer styles.

I've made some quick local overrides:

Might be something to consider for the theme core.

Theme as is:

screen shot 2016-10-13 at 15 59 54

Theme w/ overrides:

screen shot 2016-10-13 at 15 58 36

Overrides:

@panels-bg-color: #2a2a2a;
@panels-top-label-margins: 20px 20px 0;

atom-workspace {
  .overlay,
  atom-panel.modal {
    background-color: @panels-bg-color;

    .tree-view-dialog label:first-child {
      margin: @panels-top-label-margins;
    }
  }

  .overlay > * > *,
  atom-panel.modal > * > * {
    &:not(.list-group) {
      margin: 20px;
    }

    &.info-message {
      margin: @panels-top-label-margins;
    }
  }

  .overlay .list-group li.list-nested-item > .list-item,
  atom-panel.modal .list-group li.list-nested-item > .list-item,
  .overlay .list-tree li.list-nested-item > .list-item,
  atom-panel.modal .list-tree li.list-nested-item > .list-item,
  .overlay .list-group li:not(.list-nested-item),
  atom-panel.modal .list-group li:not(.list-nested-item),
  .overlay .list-tree li:not(.list-nested-item),
  atom-panel.modal .list-tree li:not(.list-nested-item) {
    padding: 10px 20px;
  }

  .select-list ol.list-group li.two-lines .secondary-line,
  .select-list ol.list-group li.two-lines .secondary-line {
    color: inherit;

    .character-match {
      color: #fff;
    }
  }

  .footer .status-bar {
    background-color: @panels-bg-color;
  }
}
ignism commented 8 years ago

footer I actually like, the way it is. Gives Nuclues a bit of character. Though the overall component-padding might need a buff indeed.