Increase the highlighted button bezel thickness (GNOME)





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







2















Is there any way to increase the visibility (e.g. thickness, contrast or colour) of bezel that surrounds the highlighted (aka selected) button in gnome window?
TBH sometimes it is barely visible in default version.
PS: I am using GNOME 3.28.2.



Here is a screenshot illustrating the issue (from a link posted in a comment):



Faint outline in Nautilus










share|improve this question

























  • Do you want something like i.stack.imgur.com/Ffk8M.png ?

    – DK Bose
    Feb 25 at 16:04











  • I can't really take a screenshot because during it taking the selection of button quickly dissapear but there's a photo of the screen itself: imgur.com/a/MESoj1P When it comes to apps it mostly iritates me with Nautilus but basically affects all GUI apps e.g. Transsmision etc. @DKBose, yes that is exactly what I have in mind. :)

    – Marek Bocian
    Feb 26 at 23:12




















2















Is there any way to increase the visibility (e.g. thickness, contrast or colour) of bezel that surrounds the highlighted (aka selected) button in gnome window?
TBH sometimes it is barely visible in default version.
PS: I am using GNOME 3.28.2.



Here is a screenshot illustrating the issue (from a link posted in a comment):



Faint outline in Nautilus










share|improve this question

























  • Do you want something like i.stack.imgur.com/Ffk8M.png ?

    – DK Bose
    Feb 25 at 16:04











  • I can't really take a screenshot because during it taking the selection of button quickly dissapear but there's a photo of the screen itself: imgur.com/a/MESoj1P When it comes to apps it mostly iritates me with Nautilus but basically affects all GUI apps e.g. Transsmision etc. @DKBose, yes that is exactly what I have in mind. :)

    – Marek Bocian
    Feb 26 at 23:12
















2












2








2


0






Is there any way to increase the visibility (e.g. thickness, contrast or colour) of bezel that surrounds the highlighted (aka selected) button in gnome window?
TBH sometimes it is barely visible in default version.
PS: I am using GNOME 3.28.2.



Here is a screenshot illustrating the issue (from a link posted in a comment):



Faint outline in Nautilus










share|improve this question
















Is there any way to increase the visibility (e.g. thickness, contrast or colour) of bezel that surrounds the highlighted (aka selected) button in gnome window?
TBH sometimes it is barely visible in default version.
PS: I am using GNOME 3.28.2.



Here is a screenshot illustrating the issue (from a link posted in a comment):



Faint outline in Nautilus







gnome window appearance button






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Feb 28 at 6:39









DK Bose

15.3k124389




15.3k124389










asked Feb 25 at 1:19









Marek BocianMarek Bocian

134




134













  • Do you want something like i.stack.imgur.com/Ffk8M.png ?

    – DK Bose
    Feb 25 at 16:04











  • I can't really take a screenshot because during it taking the selection of button quickly dissapear but there's a photo of the screen itself: imgur.com/a/MESoj1P When it comes to apps it mostly iritates me with Nautilus but basically affects all GUI apps e.g. Transsmision etc. @DKBose, yes that is exactly what I have in mind. :)

    – Marek Bocian
    Feb 26 at 23:12





















  • Do you want something like i.stack.imgur.com/Ffk8M.png ?

    – DK Bose
    Feb 25 at 16:04











  • I can't really take a screenshot because during it taking the selection of button quickly dissapear but there's a photo of the screen itself: imgur.com/a/MESoj1P When it comes to apps it mostly iritates me with Nautilus but basically affects all GUI apps e.g. Transsmision etc. @DKBose, yes that is exactly what I have in mind. :)

    – Marek Bocian
    Feb 26 at 23:12



















Do you want something like i.stack.imgur.com/Ffk8M.png ?

– DK Bose
Feb 25 at 16:04





Do you want something like i.stack.imgur.com/Ffk8M.png ?

– DK Bose
Feb 25 at 16:04













I can't really take a screenshot because during it taking the selection of button quickly dissapear but there's a photo of the screen itself: imgur.com/a/MESoj1P When it comes to apps it mostly iritates me with Nautilus but basically affects all GUI apps e.g. Transsmision etc. @DKBose, yes that is exactly what I have in mind. :)

– Marek Bocian
Feb 26 at 23:12







I can't really take a screenshot because during it taking the selection of button quickly dissapear but there's a photo of the screen itself: imgur.com/a/MESoj1P When it comes to apps it mostly iritates me with Nautilus but basically affects all GUI apps e.g. Transsmision etc. @DKBose, yes that is exactly what I have in mind. :)

– Marek Bocian
Feb 26 at 23:12












1 Answer
1






active

oldest

votes


















0














From the image provided by the poster, it appears that the theme is Ambiance.



The following bit of code will provide some relief:



* {
outline-style: solid;
outline-offset: -2px;
outline-width: 2px;
}


Route #1:



This code can be added to ~/.config/gtk-3.0/gtk.css using a plain text editor. (If the file and folder don't exist, just create them.)



* {    
outline-style: solid;
outline-offset: -2px;
outline-width: 2px;
outline-radius: 2px;
}


You can look at CSS outline properties for more options.



It should be noted that




  • code placed in ~/.config/gtk-3.0/gtk.css will affect all gtk3 applications and all gtk3 themes.

  • the values can be tweaked to one's needs.

  • omitting a color maybe preferable so that contrast is available irrespective of the background color involved (as seen in the animation below).


Route #2:



If you like to try other themes, modifying ~/.config/gtk-3.0/gtk.css may not be the best way to go because the code in this file applies to all gtk3 themes: obviously, if a particular theme already has its own way of dealing with the outline issue there could be unwanted effects.



For this reason, I prefer to edit the theme itself so that the change is restricted to a particular theme.



In this case, I edited usr/share/themes/Ambiance/gtk-3.20/gtk-widgets.css so that the top few lines looked like this:



* {
-GtkHTML-link-color: #f07746; /* @link_color */
-GtkIMHtml-hyperlink-color: #f07746; /* @link_color */
-GtkTextView-error-underline-color: #df382c; /* @error_color doesn't work due to a gtk bug */
-WnckTasklist-fade-overlay-rect: 0;

background-origin: border-box;
background-clip: padding-box;

outline-style: solid;
outline-offset: -2px;
outline-width: 2px;
}

.background {
color: @fg_color;
background-color: @bg_color;
}


The three lines starting with "outline-" are the lines I added.



In the animation below, notice that the outline color differs depending on the background:



Use of "outline" to improve visibility



A couple of images showing the difference that can be made by editing the Ambiance theme or gtk.css as described above:



Before:



Before: where the button for the default action could be difficult to discern



After:



After the edit the default action button is obvious






share|improve this answer





















  • 1





    Fantastic! Your solution works like a charm. Thank you so much! :)

    – Marek Bocian
    Feb 28 at 1:13












Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1120993%2fincrease-the-highlighted-button-bezel-thickness-gnome%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














From the image provided by the poster, it appears that the theme is Ambiance.



The following bit of code will provide some relief:



* {
outline-style: solid;
outline-offset: -2px;
outline-width: 2px;
}


Route #1:



This code can be added to ~/.config/gtk-3.0/gtk.css using a plain text editor. (If the file and folder don't exist, just create them.)



* {    
outline-style: solid;
outline-offset: -2px;
outline-width: 2px;
outline-radius: 2px;
}


You can look at CSS outline properties for more options.



It should be noted that




  • code placed in ~/.config/gtk-3.0/gtk.css will affect all gtk3 applications and all gtk3 themes.

  • the values can be tweaked to one's needs.

  • omitting a color maybe preferable so that contrast is available irrespective of the background color involved (as seen in the animation below).


Route #2:



If you like to try other themes, modifying ~/.config/gtk-3.0/gtk.css may not be the best way to go because the code in this file applies to all gtk3 themes: obviously, if a particular theme already has its own way of dealing with the outline issue there could be unwanted effects.



For this reason, I prefer to edit the theme itself so that the change is restricted to a particular theme.



In this case, I edited usr/share/themes/Ambiance/gtk-3.20/gtk-widgets.css so that the top few lines looked like this:



* {
-GtkHTML-link-color: #f07746; /* @link_color */
-GtkIMHtml-hyperlink-color: #f07746; /* @link_color */
-GtkTextView-error-underline-color: #df382c; /* @error_color doesn't work due to a gtk bug */
-WnckTasklist-fade-overlay-rect: 0;

background-origin: border-box;
background-clip: padding-box;

outline-style: solid;
outline-offset: -2px;
outline-width: 2px;
}

.background {
color: @fg_color;
background-color: @bg_color;
}


The three lines starting with "outline-" are the lines I added.



In the animation below, notice that the outline color differs depending on the background:



Use of "outline" to improve visibility



A couple of images showing the difference that can be made by editing the Ambiance theme or gtk.css as described above:



Before:



Before: where the button for the default action could be difficult to discern



After:



After the edit the default action button is obvious






share|improve this answer





















  • 1





    Fantastic! Your solution works like a charm. Thank you so much! :)

    – Marek Bocian
    Feb 28 at 1:13
















0














From the image provided by the poster, it appears that the theme is Ambiance.



The following bit of code will provide some relief:



* {
outline-style: solid;
outline-offset: -2px;
outline-width: 2px;
}


Route #1:



This code can be added to ~/.config/gtk-3.0/gtk.css using a plain text editor. (If the file and folder don't exist, just create them.)



* {    
outline-style: solid;
outline-offset: -2px;
outline-width: 2px;
outline-radius: 2px;
}


You can look at CSS outline properties for more options.



It should be noted that




  • code placed in ~/.config/gtk-3.0/gtk.css will affect all gtk3 applications and all gtk3 themes.

  • the values can be tweaked to one's needs.

  • omitting a color maybe preferable so that contrast is available irrespective of the background color involved (as seen in the animation below).


Route #2:



If you like to try other themes, modifying ~/.config/gtk-3.0/gtk.css may not be the best way to go because the code in this file applies to all gtk3 themes: obviously, if a particular theme already has its own way of dealing with the outline issue there could be unwanted effects.



For this reason, I prefer to edit the theme itself so that the change is restricted to a particular theme.



In this case, I edited usr/share/themes/Ambiance/gtk-3.20/gtk-widgets.css so that the top few lines looked like this:



* {
-GtkHTML-link-color: #f07746; /* @link_color */
-GtkIMHtml-hyperlink-color: #f07746; /* @link_color */
-GtkTextView-error-underline-color: #df382c; /* @error_color doesn't work due to a gtk bug */
-WnckTasklist-fade-overlay-rect: 0;

background-origin: border-box;
background-clip: padding-box;

outline-style: solid;
outline-offset: -2px;
outline-width: 2px;
}

.background {
color: @fg_color;
background-color: @bg_color;
}


The three lines starting with "outline-" are the lines I added.



In the animation below, notice that the outline color differs depending on the background:



Use of "outline" to improve visibility



A couple of images showing the difference that can be made by editing the Ambiance theme or gtk.css as described above:



Before:



Before: where the button for the default action could be difficult to discern



After:



After the edit the default action button is obvious






share|improve this answer





















  • 1





    Fantastic! Your solution works like a charm. Thank you so much! :)

    – Marek Bocian
    Feb 28 at 1:13














0












0








0







From the image provided by the poster, it appears that the theme is Ambiance.



The following bit of code will provide some relief:



* {
outline-style: solid;
outline-offset: -2px;
outline-width: 2px;
}


Route #1:



This code can be added to ~/.config/gtk-3.0/gtk.css using a plain text editor. (If the file and folder don't exist, just create them.)



* {    
outline-style: solid;
outline-offset: -2px;
outline-width: 2px;
outline-radius: 2px;
}


You can look at CSS outline properties for more options.



It should be noted that




  • code placed in ~/.config/gtk-3.0/gtk.css will affect all gtk3 applications and all gtk3 themes.

  • the values can be tweaked to one's needs.

  • omitting a color maybe preferable so that contrast is available irrespective of the background color involved (as seen in the animation below).


Route #2:



If you like to try other themes, modifying ~/.config/gtk-3.0/gtk.css may not be the best way to go because the code in this file applies to all gtk3 themes: obviously, if a particular theme already has its own way of dealing with the outline issue there could be unwanted effects.



For this reason, I prefer to edit the theme itself so that the change is restricted to a particular theme.



In this case, I edited usr/share/themes/Ambiance/gtk-3.20/gtk-widgets.css so that the top few lines looked like this:



* {
-GtkHTML-link-color: #f07746; /* @link_color */
-GtkIMHtml-hyperlink-color: #f07746; /* @link_color */
-GtkTextView-error-underline-color: #df382c; /* @error_color doesn't work due to a gtk bug */
-WnckTasklist-fade-overlay-rect: 0;

background-origin: border-box;
background-clip: padding-box;

outline-style: solid;
outline-offset: -2px;
outline-width: 2px;
}

.background {
color: @fg_color;
background-color: @bg_color;
}


The three lines starting with "outline-" are the lines I added.



In the animation below, notice that the outline color differs depending on the background:



Use of "outline" to improve visibility



A couple of images showing the difference that can be made by editing the Ambiance theme or gtk.css as described above:



Before:



Before: where the button for the default action could be difficult to discern



After:



After the edit the default action button is obvious






share|improve this answer















From the image provided by the poster, it appears that the theme is Ambiance.



The following bit of code will provide some relief:



* {
outline-style: solid;
outline-offset: -2px;
outline-width: 2px;
}


Route #1:



This code can be added to ~/.config/gtk-3.0/gtk.css using a plain text editor. (If the file and folder don't exist, just create them.)



* {    
outline-style: solid;
outline-offset: -2px;
outline-width: 2px;
outline-radius: 2px;
}


You can look at CSS outline properties for more options.



It should be noted that




  • code placed in ~/.config/gtk-3.0/gtk.css will affect all gtk3 applications and all gtk3 themes.

  • the values can be tweaked to one's needs.

  • omitting a color maybe preferable so that contrast is available irrespective of the background color involved (as seen in the animation below).


Route #2:



If you like to try other themes, modifying ~/.config/gtk-3.0/gtk.css may not be the best way to go because the code in this file applies to all gtk3 themes: obviously, if a particular theme already has its own way of dealing with the outline issue there could be unwanted effects.



For this reason, I prefer to edit the theme itself so that the change is restricted to a particular theme.



In this case, I edited usr/share/themes/Ambiance/gtk-3.20/gtk-widgets.css so that the top few lines looked like this:



* {
-GtkHTML-link-color: #f07746; /* @link_color */
-GtkIMHtml-hyperlink-color: #f07746; /* @link_color */
-GtkTextView-error-underline-color: #df382c; /* @error_color doesn't work due to a gtk bug */
-WnckTasklist-fade-overlay-rect: 0;

background-origin: border-box;
background-clip: padding-box;

outline-style: solid;
outline-offset: -2px;
outline-width: 2px;
}

.background {
color: @fg_color;
background-color: @bg_color;
}


The three lines starting with "outline-" are the lines I added.



In the animation below, notice that the outline color differs depending on the background:



Use of "outline" to improve visibility



A couple of images showing the difference that can be made by editing the Ambiance theme or gtk.css as described above:



Before:



Before: where the button for the default action could be difficult to discern



After:



After the edit the default action button is obvious







share|improve this answer














share|improve this answer



share|improve this answer








edited Feb 28 at 16:35

























answered Feb 27 at 1:00









DK BoseDK Bose

15.3k124389




15.3k124389








  • 1





    Fantastic! Your solution works like a charm. Thank you so much! :)

    – Marek Bocian
    Feb 28 at 1:13














  • 1





    Fantastic! Your solution works like a charm. Thank you so much! :)

    – Marek Bocian
    Feb 28 at 1:13








1




1





Fantastic! Your solution works like a charm. Thank you so much! :)

– Marek Bocian
Feb 28 at 1:13





Fantastic! Your solution works like a charm. Thank you so much! :)

– Marek Bocian
Feb 28 at 1:13


















draft saved

draft discarded




















































Thanks for contributing an answer to Ask Ubuntu!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1120993%2fincrease-the-highlighted-button-bezel-thickness-gnome%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

ComboBox Display Member on multiple fields

Is it possible to collect Nectar points via Trainline?