gnome-shell-extension-appindicator icon indicating copy to clipboard operation
gnome-shell-extension-appindicator copied to clipboard

Adjustment in icon spacing

Open rafatosta opened this issue 3 years ago • 11 comments

The space between the icons detract from the system icons.Is it possible to make this adjustment?

image

If you can't do it, could you signal where I make this adjustment in the code? I can make a PR with Fix.

Thanks

rafatosta avatar Sep 29 '22 12:09 rafatosta

this is handled through the .panel-status-indicators-box css class provided by upstream, it could be tuned by using a local .appindicator-box css class too, but we does not override it by default.

And that's defined as:

  .panel-status-indicators-box,
  .panel-status-menu-box {
    spacing: 2px;
  }

So code is in appIndicator.js and indicatorStatusIcon.js

3v1n0 avatar Sep 29 '22 20:09 3v1n0

appIndicator.js indicatorStatusIcon.js

Is that a file on my machine that is read at runtime or is it part of the source code? If at runtime, where can I find it?

Yasand123 avatar Dec 24 '22 08:12 Yasand123

Is that a file on my machine that is read at runtime or is it part of the source code? If at runtime, where can I find it?

That file is loaded at runtime, in your machine it should be in ~/.local/share/gnome-shell/extensions where there's this extension folder.

3v1n0 avatar Mar 14 '23 15:03 3v1n0

Regarding this bug in general, I've done some changes in #415 that also affect this, please check again if you are affected.

3v1n0 avatar Mar 14 '23 15:03 3v1n0