Change style of Verve command line plugin in xfce?

I want to change the style of Verve command line plugin in xfce to be without radius borders. but i don't know the selector that i should use:

if you have a file for ~/.config/gtk-3.0/gtk.css, access it or create a new gtk.css file in that folder.

Try:

#xfce4-verve-plugin {
 border-radius: 0px;
}

Save the file and log out and in, reboot or run in alt+F2 xfce4-panel --restart

1 Like

i don't think that is the selector, because no changing happened

Let me try installing the plugin and testing this.

1 Like

It is the correct class, but I am not having any luck here.
It is an Entry field... I tried #xfce4-verve-plugin entry and it did not change.
But changing just entry

entry {
border-radius: 0px;
}

did change it; though this will change all entry fields. If you do not mind all entry fields having no border radius, you can use that.

1 Like

you mean all Entry field will be effect ? any search box or placeholder?

Yes. I can keep looking into this to see if I can figure it out for just verve.

1 Like

the entry that has effected is the box of verve , search box of zorin menu and thunar path box.
I like that, but i notice there is white bold boarder on focus the entry, i wish if i remove that on focus.

Here are the classes.
Please change the border from #FFFFFF to the HEX or RGBA that you prefer to use:

entry, osd entry {
border: 1px solid #FFFFFF;
border-radius: 0px;
}
 entry:focus,  .osd entry:focus {
border: 1px solid #FFFFFF;
border-radius: 0px;
}
entry:disabled,  .osd entry:disabled {
border: 1px solid #FFFFFF;
border-radius: 0px;
}
1 Like

image


what i mean the outline in the second picture, it's better if it's without outline as the same as in the first picture

Did you try changing the border color?

i tried that, and i tried outline none and outline-color, may be the default effect not implement on selector focus or disabled , i tried active but not worked too

Which system theme are you using?
I am getting a different result, but I am using one of my own themes.

I like the zorin grey dark theme ,i'm using it.
the style that i wish to do to the entry is implemented in windows dark theme(theme i tried it ,but it has some problem, so i give up from it, but i like the way of the entry effect of it)

Let me switch themes and do some testing.

1 Like

Can you try adding

box-shadow: none;

to each of the above classes?

1 Like

Thank you very much, it's worked.

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.