bmathews / atom-dark-ui-slim

The default dark ui theme for Atom
MIT License
4 stars 5 forks source link

scroolbars #2

Closed luisdavim closed 10 years ago

luisdavim commented 10 years ago

When using this theme my scroolbars get all messdup.

Regular: screenshot from 2014-05-12 01 16 12

With the slim theme: screenshot from 2014-05-12 01 16 45

bmathews commented 10 years ago

Thanks! I'll get the update merged in tonight or tomorrow!

jbt commented 10 years ago

Don't suppose there's an update on this? I love this theme but it is a little bit messy having to add overrides in my own stylesheet

andremedeiros commented 10 years ago

@jbt I don't suppose you'd be able to post those overrides? My FE skills are at an all time low (and this has been peskering me the same as you!)

jbt commented 10 years ago

Here's what I have (stolen from atom-dark-ui here and here, and also the background and cursor tweaks from this PR)


@scrollbar-background-color: rgba(42, 42, 42, 0.5);
@scrollbar-color: rgba(92, 92, 92, 0.5);

.scrollbars-visible-always {
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-corner {
    background: @scrollbar-background-color;
  }

  ::-webkit-scrollbar-thumb {
    background: @scrollbar-color;
    border-radius: 5px;
    box-shadow: 0 0 1px black inset;
  }
}

.editor .vertical-scrollbar {
  cursor: default;
}
andremedeiros commented 10 years ago

Thanks for that!

By the way, does this fix the ugly scrollbar on the file tree for you? I still have it.

andremedeiros commented 10 years ago

Scratch that. What I get is an ugly scrollbar until I hide it and show it again. Will report a bug.

jbt commented 10 years ago

(looks like atom#2168 is the one with the weird native scrollbars - I've seen that too myself)

bmathews commented 10 years ago

Merged all the atom-dark-ui changes and published. Sorry for the delay!

jbt commented 10 years ago

Nice, thanks!