Closed in4matix closed 10 months ago
Yes, dash with Marble theme has border:
/* Dash */
#dash .dash-background {
background-color: DASH-COLOR;
box-shadow: inset 0 0 0 1px BORDER-MENU-SHADOW;
padding: 4px 2px 4px 2px;
border-radius: 21px;
}
box-shadow
responds for border color so you can change or remove it in #dash .dash-background
selector.
Pardon my ignorance. This is what it is currently:
/* Dash */
#dash .dash-background {
background-color: rgba(48, 51, 53, 0.7);
box-shadow: inset 0 0 0 1px rgba(652, 652, 652, 0.07);
padding: 4px 2px 4px 2px;
border-radius: 21px;
Do I need to change the values to what you suggested?
How would I go about changing or removing box-shadow
Just to be clear, I am using Gnome dash that only shows in overview.
This is a rather crude mockup of what I am trying to achieve:
I tried this, but did not make a difference after logging out and back in:
/* Dash */
#dash .dash-background {
background-color: rgba(48, 51, 53, 0.7);
box-shadow: inset 0 0 0 0px rgba(0, 0, 0, 0.07);
padding: 4px 2px 4px 2px;
border-radius: 21px;
}
Do I need to change the values to what you suggested?
No, I just gave a part from unbuilt theme.
How would I go about changing or removing
box-shadow
You can just remove the line with box-shadow
property and reapply the modified theme.
If you are going to change this value, you must follow these rules.
box-shadow: inset 0 0 0 1px rgba(652, 652, 652, 0.07);
Was this value set by you or was it already there?
I tried this, but did not make a difference after logging out and back in:
box-shadow: inset 0 0 0 0px rgba(0, 0, 0, 0.07);
Try to add border: none;
or border-color: transparent;
property.
I tried this, but did not make a difference after logging out and back in:
box-shadow: inset 0 0 0 0px rgba(0, 0, 0, 0.07);
Try to add border: none;
or border-color: transparent;
property. Maybe that's on Ubuntu side if you are using it.
Was this value set by you or was it already there?
Yep, they were all already there.
Sorry for nitpicking, but I am a perfectionist ;-)
This did the trick:
/* Dash */
#dash .dash-background {
background-color: rgba(48, 51, 53, 0.7);
border: none;
padding: 4px 2px 4px 2px;
border-radius: 21px;
}
Thank you so much! I love you. Hope you have an awesome festive season.
Ps. I think you can quite safely state that your theme is fully compatible with Gnome 42 also (Ubuntu 22.04.3 LTS)
Hello again!
I did some changes to my setup -- using the default Gnome dock/dash, but it has a dark border:
And I noticed on your screenshot that no border is present:
Does your theme control this, and if so, is there a way to remove the border and also to make the opacity darker to match top bar menus?