atom-material / atom-material-ui

A dynamic UI theme for Atom that follows Google's Material Design Guidelines
MIT License
817 stars 204 forks source link

Font size on the bottom pane is incorrect #292

Closed cyanlink closed 8 years ago

cyanlink commented 8 years ago

font size on the bottom pane is incorrect,this problem is NOT happening with official themes including "One dark"and"Atom Dark" under the same situation,adjust the UI font size in theme config does work to the whole UI but the part i mentioned.

Expected behavior:

it should be like the screenshot in the README

Observed behavior:

just..that small,the font of directory/CRLF/filetype/encoing on the bottom is so small and nearly unreadable,but for the panes it goes alright. the following is mine myscreenshot this is the official one,it is obviously bigger and clear officialscreenshot

Atom version: 1.7.3 OS and version: fedora23,gnome 3 with infinality installed

Installed packages: Community Packages (6) /home/link/.atom/packages ├── atom-material-syntax@0.4.6 ├── atom-material-syntax-dark@0.2.5 ├── atom-material-ui@1.2.12 ├── markdown-preview-plus@2.4.0 ├── markdown-preview-plus-opener@0.2.0 └── script@3.7.3

Additional information:

silvestreh commented 8 years ago

Not exactly a bug, but the screenshot in the README is outdated. If you want to increase the font-size use this snippet in your user stylesheet:

.theme-atom-material-ui status-bar {
    font-size: 0.75rem;
}

Cheers!