horst3180 / arc-theme

A flat theme with transparent elements
GNU General Public License v3.0
8.28k stars 608 forks source link

Decrease Left Padding #363

Open ghost opened 8 years ago

ghost commented 8 years ago

It is possible to decrease left padding on Gnome Apps menu tree and subtree? It's a lot of wasted space and apps name/descriptions are heavily truncated. Please let me know what css classes i have to edit in gnome-shell.css.

arc

Thank you.

horst3180 commented 8 years ago

Hmm, I don't think this can be changed, atleast i didn't find anything.

zagortenay333 commented 8 years ago

You can decrease it a bit by removing the ornament from the items with:

.apps-menu .popup-menu-ornament {
    width: 0;
}
zagortenay333 commented 8 years ago

I suppose you should also even out the opposite site by reducing the padding as well:

.apps-menu .popup-menu-item:ltr {
    padding-right: ; /*reduce this to even out*/
}

.apps-menu .popup-menu-item:rtl {
    padding-left: ; /*reduce this to even out*/
}