Merge pull request #1738 from pinselimo/fix-button-padding

This commit is contained in:
Alex 2022-10-20 10:46:08 +02:00 committed by GitHub
commit aa8bd51952
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 2 deletions

View File

@ -2,6 +2,7 @@
#include <glibmm/markup.h>
#include <gtkmm/button.h>
#include <gtkmm/cssprovider.h>
#include <gtkmm/label.h>
#include <json/json.h>

View File

@ -40,8 +40,6 @@ button {
/* Avoid rounded borders under each button name */
border: none;
border-radius: 0;
/* https://github.com/Alexays/Waybar/issues/1731 */
min-width: 0;
}
/* https://github.com/Alexays/Waybar/wiki/FAQ#the-workspace-buttons-have-a-strange-hover-effect */

View File

@ -18,6 +18,12 @@ AButton::AButton(const Json::Value& config, const std::string& name, const std::
default_format_(format_) {
button_.set_name(name);
button_.set_relief(Gtk::RELIEF_NONE);
/* https://github.com/Alexays/Waybar/issues/1731 */
auto css = Gtk::CssProvider::create();
css->load_from_data("button { min-width: 0; }");
button_.get_style_context()->add_provider(css, GTK_STYLE_PROVIDER_PRIORITY_USER);
if (!id.empty()) {
button_.get_style_context()->add_class(id);
}