Atom: unable to change font size in "find in project"

Created on 11 Feb 2015  路  3Comments  路  Source: atom/atom

Hi,

I was able to change font sizes everywhere else by changing style.less file, but not in "find in project" menu, nor in it's results.

What are the css selectors for these items, or how else can these be modified?

Kindest Regards

Most helpful comment

This works for me to change the results:

.preview-pane {
  font-size: 14px;
}
.panel-heading {
  font-size: inherit;
}

screen shot 2015-02-11 at 11 20 11 pm

And with "find in project" menu, do you mean the panel at the bottom? Maybe try this:

.project-find {
  font-size: 14px;
  atom-text-editor[mini] {
    font-size: 18px;
  }
}

screen shot 2015-02-11 at 11 24 04 pm

I'll close this issue, but feel free to ask again if it didn't solve it for you.

All 3 comments

This works for me to change the results:

.preview-pane {
  font-size: 14px;
}
.panel-heading {
  font-size: inherit;
}

screen shot 2015-02-11 at 11 20 11 pm

And with "find in project" menu, do you mean the panel at the bottom? Maybe try this:

.project-find {
  font-size: 14px;
  atom-text-editor[mini] {
    font-size: 18px;
  }
}

screen shot 2015-02-11 at 11 24 04 pm

I'll close this issue, but feel free to ask again if it didn't solve it for you.

Add custom styles via Preferences -> Settings -> Themes -> your stylesheet.

This issue has been automatically locked since there has not been any recent activity after it was closed. If you can still reproduce this issue in Safe Mode then please open a new issue and fill out the entire issue template to ensure that we have enough information to address your issue. Thanks!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

mmase picture mmase  路  3Comments

lee-dohm picture lee-dohm  路  3Comments

bkimminich picture bkimminich  路  3Comments

garyb picture garyb  路  3Comments

albertonaperijr picture albertonaperijr  路  3Comments