How to change background color of pop out menu of the top bar of Ubuntu 18.04 lockscreen and unlockscreen?Minimalism in the calendar in the top bar Ubuntu 18.04Change colours in Gnome shell for top dialogs in 18.04How can I conditionally change the nautilus background color?Cannot change background color in Ubuntu 13.04Change color of Applet context menu font or backgroundHow to change color of top bar in Gnome 3.8How can I change the KDE lockscreen?Change colour of Calendar / System menu in Gnome DesktopUbuntu 18.04: Change color of window title bar
Besides TGV train, how can I travel around France from Paris area during a strike?
The Formula of Explicit Runge-Kutta Fourteen order
SPFX web part, CSS is leaking into the whole sharepoint site
Worst way to solve Rubik's in one algorithm
C - random password generator
How to teach children Santa is not real, while respecting other kids beliefs?
"Dog" can mean "something of an inferior quality". What animals do we use, if any, to describe the opposite?
Site is accessible by domain in all browsers but Chrome
Isn't Social Security set up as a Pension Fund as opposed to a Direct Transfers Scheme?
Why didn't the 6502 have increase/decrease opcodes for A?
Biggest Irreducible Hello World
Is it safe to drink the water from the fountains found all over the older parts of Rome?
Removing moon "rays" - beginner
Was there really a shuttle toilet training device with a "boresight camera"?
When does a Chain Familiar’s attack occur using the new UA Eldritch Invocation: Chain Master's Fury?
I shift the source code, you shift the input!
How to answer my 5 year old why I can tell her what she has to do and why she can't tell me
How might Humans evolve on other planets?
Why doesn't knowledge of how magic works break magic in this world?
Why do some AFBs have planes parked at 45 degrees to others?
Is it possible to duplicate an item in Stardew Valley?
Can a human colony survive on a 'hot' world?
What's the meaning of "411 on the late-night drop box"?
writing Vec compare in a more compact way
How to change background color of pop out menu of the top bar of Ubuntu 18.04 lockscreen and unlockscreen?
Minimalism in the calendar in the top bar Ubuntu 18.04Change colours in Gnome shell for top dialogs in 18.04How can I conditionally change the nautilus background color?Cannot change background color in Ubuntu 13.04Change color of Applet context menu font or backgroundHow to change color of top bar in Gnome 3.8How can I change the KDE lockscreen?Change colour of Calendar / System menu in Gnome DesktopUbuntu 18.04: Change color of window title bar
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
I would like to change the background color of the pop out menu of the Top Bar in the lockscreen and unlockscreen of Ubuntu 18.04 (using GDM). It appears when I clicked the "power, sound, network" button located at the far right end of the top bar. I would like to know the name of the css selector to make this change. I tried this change but nothing happened.
/* Popovers/Menus */
.popup-menu
min-width: 15em;
.popup-menu .popup-sub-menu
background-color: yellow; /* changed from #3a3a34 to yellow */
box-shadow: inset 0 -1px 0px #2c2c28;
.popup-menu .popup-menu-content
padding: 1em 0em;
.popup-menu .popup-menu-item
spacing: 12px;
.popup-menu .popup-menu-item:ltr
padding: .4em 1.75em .4em 0em;
.popup-menu .popup-menu-item:rtl
padding: .4em 0em .4em 1.75em;
.popup-menu .popup-menu-item:checked
background-color: #3a3a34;
box-shadow: inset 0 1px 0px #2c2c28;
font-weight: bold;
.popup-menu .popup-menu-item.selected
background-color: rgba(238, 238, 236, 0.1);
color: #eeeeec;
.popup-menu .popup-menu-item:active
background-color: #dd4814;
color: #ffffff;
.popup-menu .popup-menu-item:insensitive
color: rgba(238, 238, 236, 0.5);
.popup-menu .popup-inactive-menu-item
color: #eeeeec;
.popup-menu .popup-inactive-menu-item:insensitive
color: rgba(238, 238, 236, 0.5);
.popup-menu.panel-menu
-boxpointer-gap: 4px;
margin-bottom: 1.75em;
What is the correct way of doing what I want?
gnome gdm
add a comment
|
I would like to change the background color of the pop out menu of the Top Bar in the lockscreen and unlockscreen of Ubuntu 18.04 (using GDM). It appears when I clicked the "power, sound, network" button located at the far right end of the top bar. I would like to know the name of the css selector to make this change. I tried this change but nothing happened.
/* Popovers/Menus */
.popup-menu
min-width: 15em;
.popup-menu .popup-sub-menu
background-color: yellow; /* changed from #3a3a34 to yellow */
box-shadow: inset 0 -1px 0px #2c2c28;
.popup-menu .popup-menu-content
padding: 1em 0em;
.popup-menu .popup-menu-item
spacing: 12px;
.popup-menu .popup-menu-item:ltr
padding: .4em 1.75em .4em 0em;
.popup-menu .popup-menu-item:rtl
padding: .4em 0em .4em 1.75em;
.popup-menu .popup-menu-item:checked
background-color: #3a3a34;
box-shadow: inset 0 1px 0px #2c2c28;
font-weight: bold;
.popup-menu .popup-menu-item.selected
background-color: rgba(238, 238, 236, 0.1);
color: #eeeeec;
.popup-menu .popup-menu-item:active
background-color: #dd4814;
color: #ffffff;
.popup-menu .popup-menu-item:insensitive
color: rgba(238, 238, 236, 0.5);
.popup-menu .popup-inactive-menu-item
color: #eeeeec;
.popup-menu .popup-inactive-menu-item:insensitive
color: rgba(238, 238, 236, 0.5);
.popup-menu.panel-menu
-boxpointer-gap: 4px;
margin-bottom: 1.75em;
What is the correct way of doing what I want?
gnome gdm
add a comment
|
I would like to change the background color of the pop out menu of the Top Bar in the lockscreen and unlockscreen of Ubuntu 18.04 (using GDM). It appears when I clicked the "power, sound, network" button located at the far right end of the top bar. I would like to know the name of the css selector to make this change. I tried this change but nothing happened.
/* Popovers/Menus */
.popup-menu
min-width: 15em;
.popup-menu .popup-sub-menu
background-color: yellow; /* changed from #3a3a34 to yellow */
box-shadow: inset 0 -1px 0px #2c2c28;
.popup-menu .popup-menu-content
padding: 1em 0em;
.popup-menu .popup-menu-item
spacing: 12px;
.popup-menu .popup-menu-item:ltr
padding: .4em 1.75em .4em 0em;
.popup-menu .popup-menu-item:rtl
padding: .4em 0em .4em 1.75em;
.popup-menu .popup-menu-item:checked
background-color: #3a3a34;
box-shadow: inset 0 1px 0px #2c2c28;
font-weight: bold;
.popup-menu .popup-menu-item.selected
background-color: rgba(238, 238, 236, 0.1);
color: #eeeeec;
.popup-menu .popup-menu-item:active
background-color: #dd4814;
color: #ffffff;
.popup-menu .popup-menu-item:insensitive
color: rgba(238, 238, 236, 0.5);
.popup-menu .popup-inactive-menu-item
color: #eeeeec;
.popup-menu .popup-inactive-menu-item:insensitive
color: rgba(238, 238, 236, 0.5);
.popup-menu.panel-menu
-boxpointer-gap: 4px;
margin-bottom: 1.75em;
What is the correct way of doing what I want?
gnome gdm
I would like to change the background color of the pop out menu of the Top Bar in the lockscreen and unlockscreen of Ubuntu 18.04 (using GDM). It appears when I clicked the "power, sound, network" button located at the far right end of the top bar. I would like to know the name of the css selector to make this change. I tried this change but nothing happened.
/* Popovers/Menus */
.popup-menu
min-width: 15em;
.popup-menu .popup-sub-menu
background-color: yellow; /* changed from #3a3a34 to yellow */
box-shadow: inset 0 -1px 0px #2c2c28;
.popup-menu .popup-menu-content
padding: 1em 0em;
.popup-menu .popup-menu-item
spacing: 12px;
.popup-menu .popup-menu-item:ltr
padding: .4em 1.75em .4em 0em;
.popup-menu .popup-menu-item:rtl
padding: .4em 0em .4em 1.75em;
.popup-menu .popup-menu-item:checked
background-color: #3a3a34;
box-shadow: inset 0 1px 0px #2c2c28;
font-weight: bold;
.popup-menu .popup-menu-item.selected
background-color: rgba(238, 238, 236, 0.1);
color: #eeeeec;
.popup-menu .popup-menu-item:active
background-color: #dd4814;
color: #ffffff;
.popup-menu .popup-menu-item:insensitive
color: rgba(238, 238, 236, 0.5);
.popup-menu .popup-inactive-menu-item
color: #eeeeec;
.popup-menu .popup-inactive-menu-item:insensitive
color: rgba(238, 238, 236, 0.5);
.popup-menu.panel-menu
-boxpointer-gap: 4px;
margin-bottom: 1.75em;
What is the correct way of doing what I want?
gnome gdm
gnome gdm
asked Sep 30 at 7:19
Sun BearSun Bear
7486 silver badges20 bronze badges
7486 silver badges20 bronze badges
add a comment
|
add a comment
|
1 Answer
1
active
oldest
votes
from the standard ubuntu.css
file the below part is what you are looking for. Concentrate on "green" color.
.popup-menu-boxpointer,
.candidate-popup-boxpointer
-arrow-border-radius: 3px;
-arrow-background-color: green;
-arrow-border-width: 1px;
-arrow-border-color: #1f1f1c;
-arrow-base: 24px;
-arrow-rise: 11px;
-arrow-box-shadow: 0 1px 3px black;
Edit: Concentrate on Blue & Yellow colors in below.. Hope you can manage further..
/* Popovers/Menus */
.popup-menu
color: blue;
min-width: 15em;
.popup-menu .popup-sub-menu
background-color: blue;
box-shadow: inset 0 -1px 0px #2c2c28;
.popup-menu .popup-menu-content
padding: 1em 0em;
.popup-menu .popup-menu-item
spacing: 12px;
.popup-menu .popup-menu-item:ltr
padding: .4em 1.75em .4em 0em;
.popup-menu .popup-menu-item:rtl
padding: .4em 0em .4em 1.75em;
.popup-menu .popup-menu-item:checked
background-color: #3a3a34;
box-shadow: inset 0 1px 0px #2c2c28;
font-weight: bold;
.popup-menu .popup-menu-item.selected
background-color: rgba(238, 238, 236, 0.1);
color: yellow;
Thanks! This worked. Btw, when GNOME-shell user-themes extension is switched on, and a gnome-shell theme (e.g. Arc) is used, the above mentioned changes to/usr/share/gnome-shell/theme/ubuntu.css
will only occur in the unlockscreen and the lockscreen, and it will not be carried into the user's desktop theme.
– Sun Bear
Sep 30 at 7:58
How do I also change the color of the font and icons in this pop-up menu?
– Sun Bear
Sep 30 at 9:52
Font will do for now. I tried addingcolor: black;
and-arrow-color: black;
in there and elsewhere but it did not work. :(
– Sun Bear
Sep 30 at 9:56
Hi, Answer Edited, please have a review..
– PRATAP
Sep 30 at 10:16
Thanks for the directions... I discovered the following... To effect changes to the font and icon in.popup-menu
of only the lockscreen and unlockscreen and not the desktop, changes SHOULD NOT me made in.popup-menu .popup-sub-menu
. Instead, these selectors SHOULD be changed:.popup-menu .popup-menu-item.selected
,.popup-menu .popup-menu-item:active
,.popup-menu .popup-menu-item:insensitive
,.popup-menu .popup-inactive-menu-item
,.popup-menu .popup-inactive-menu-item:insensitive
, and .slider
. ;)
– Sun Bear
Oct 1 at 6:45
add a comment
|
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/4.0/"u003ecc by-sa 4.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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1177603%2fhow-to-change-background-color-of-pop-out-menu-of-the-top-bar-of-ubuntu-18-04-lo%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
from the standard ubuntu.css
file the below part is what you are looking for. Concentrate on "green" color.
.popup-menu-boxpointer,
.candidate-popup-boxpointer
-arrow-border-radius: 3px;
-arrow-background-color: green;
-arrow-border-width: 1px;
-arrow-border-color: #1f1f1c;
-arrow-base: 24px;
-arrow-rise: 11px;
-arrow-box-shadow: 0 1px 3px black;
Edit: Concentrate on Blue & Yellow colors in below.. Hope you can manage further..
/* Popovers/Menus */
.popup-menu
color: blue;
min-width: 15em;
.popup-menu .popup-sub-menu
background-color: blue;
box-shadow: inset 0 -1px 0px #2c2c28;
.popup-menu .popup-menu-content
padding: 1em 0em;
.popup-menu .popup-menu-item
spacing: 12px;
.popup-menu .popup-menu-item:ltr
padding: .4em 1.75em .4em 0em;
.popup-menu .popup-menu-item:rtl
padding: .4em 0em .4em 1.75em;
.popup-menu .popup-menu-item:checked
background-color: #3a3a34;
box-shadow: inset 0 1px 0px #2c2c28;
font-weight: bold;
.popup-menu .popup-menu-item.selected
background-color: rgba(238, 238, 236, 0.1);
color: yellow;
Thanks! This worked. Btw, when GNOME-shell user-themes extension is switched on, and a gnome-shell theme (e.g. Arc) is used, the above mentioned changes to/usr/share/gnome-shell/theme/ubuntu.css
will only occur in the unlockscreen and the lockscreen, and it will not be carried into the user's desktop theme.
– Sun Bear
Sep 30 at 7:58
How do I also change the color of the font and icons in this pop-up menu?
– Sun Bear
Sep 30 at 9:52
Font will do for now. I tried addingcolor: black;
and-arrow-color: black;
in there and elsewhere but it did not work. :(
– Sun Bear
Sep 30 at 9:56
Hi, Answer Edited, please have a review..
– PRATAP
Sep 30 at 10:16
Thanks for the directions... I discovered the following... To effect changes to the font and icon in.popup-menu
of only the lockscreen and unlockscreen and not the desktop, changes SHOULD NOT me made in.popup-menu .popup-sub-menu
. Instead, these selectors SHOULD be changed:.popup-menu .popup-menu-item.selected
,.popup-menu .popup-menu-item:active
,.popup-menu .popup-menu-item:insensitive
,.popup-menu .popup-inactive-menu-item
,.popup-menu .popup-inactive-menu-item:insensitive
, and .slider
. ;)
– Sun Bear
Oct 1 at 6:45
add a comment
|
from the standard ubuntu.css
file the below part is what you are looking for. Concentrate on "green" color.
.popup-menu-boxpointer,
.candidate-popup-boxpointer
-arrow-border-radius: 3px;
-arrow-background-color: green;
-arrow-border-width: 1px;
-arrow-border-color: #1f1f1c;
-arrow-base: 24px;
-arrow-rise: 11px;
-arrow-box-shadow: 0 1px 3px black;
Edit: Concentrate on Blue & Yellow colors in below.. Hope you can manage further..
/* Popovers/Menus */
.popup-menu
color: blue;
min-width: 15em;
.popup-menu .popup-sub-menu
background-color: blue;
box-shadow: inset 0 -1px 0px #2c2c28;
.popup-menu .popup-menu-content
padding: 1em 0em;
.popup-menu .popup-menu-item
spacing: 12px;
.popup-menu .popup-menu-item:ltr
padding: .4em 1.75em .4em 0em;
.popup-menu .popup-menu-item:rtl
padding: .4em 0em .4em 1.75em;
.popup-menu .popup-menu-item:checked
background-color: #3a3a34;
box-shadow: inset 0 1px 0px #2c2c28;
font-weight: bold;
.popup-menu .popup-menu-item.selected
background-color: rgba(238, 238, 236, 0.1);
color: yellow;
Thanks! This worked. Btw, when GNOME-shell user-themes extension is switched on, and a gnome-shell theme (e.g. Arc) is used, the above mentioned changes to/usr/share/gnome-shell/theme/ubuntu.css
will only occur in the unlockscreen and the lockscreen, and it will not be carried into the user's desktop theme.
– Sun Bear
Sep 30 at 7:58
How do I also change the color of the font and icons in this pop-up menu?
– Sun Bear
Sep 30 at 9:52
Font will do for now. I tried addingcolor: black;
and-arrow-color: black;
in there and elsewhere but it did not work. :(
– Sun Bear
Sep 30 at 9:56
Hi, Answer Edited, please have a review..
– PRATAP
Sep 30 at 10:16
Thanks for the directions... I discovered the following... To effect changes to the font and icon in.popup-menu
of only the lockscreen and unlockscreen and not the desktop, changes SHOULD NOT me made in.popup-menu .popup-sub-menu
. Instead, these selectors SHOULD be changed:.popup-menu .popup-menu-item.selected
,.popup-menu .popup-menu-item:active
,.popup-menu .popup-menu-item:insensitive
,.popup-menu .popup-inactive-menu-item
,.popup-menu .popup-inactive-menu-item:insensitive
, and .slider
. ;)
– Sun Bear
Oct 1 at 6:45
add a comment
|
from the standard ubuntu.css
file the below part is what you are looking for. Concentrate on "green" color.
.popup-menu-boxpointer,
.candidate-popup-boxpointer
-arrow-border-radius: 3px;
-arrow-background-color: green;
-arrow-border-width: 1px;
-arrow-border-color: #1f1f1c;
-arrow-base: 24px;
-arrow-rise: 11px;
-arrow-box-shadow: 0 1px 3px black;
Edit: Concentrate on Blue & Yellow colors in below.. Hope you can manage further..
/* Popovers/Menus */
.popup-menu
color: blue;
min-width: 15em;
.popup-menu .popup-sub-menu
background-color: blue;
box-shadow: inset 0 -1px 0px #2c2c28;
.popup-menu .popup-menu-content
padding: 1em 0em;
.popup-menu .popup-menu-item
spacing: 12px;
.popup-menu .popup-menu-item:ltr
padding: .4em 1.75em .4em 0em;
.popup-menu .popup-menu-item:rtl
padding: .4em 0em .4em 1.75em;
.popup-menu .popup-menu-item:checked
background-color: #3a3a34;
box-shadow: inset 0 1px 0px #2c2c28;
font-weight: bold;
.popup-menu .popup-menu-item.selected
background-color: rgba(238, 238, 236, 0.1);
color: yellow;
from the standard ubuntu.css
file the below part is what you are looking for. Concentrate on "green" color.
.popup-menu-boxpointer,
.candidate-popup-boxpointer
-arrow-border-radius: 3px;
-arrow-background-color: green;
-arrow-border-width: 1px;
-arrow-border-color: #1f1f1c;
-arrow-base: 24px;
-arrow-rise: 11px;
-arrow-box-shadow: 0 1px 3px black;
Edit: Concentrate on Blue & Yellow colors in below.. Hope you can manage further..
/* Popovers/Menus */
.popup-menu
color: blue;
min-width: 15em;
.popup-menu .popup-sub-menu
background-color: blue;
box-shadow: inset 0 -1px 0px #2c2c28;
.popup-menu .popup-menu-content
padding: 1em 0em;
.popup-menu .popup-menu-item
spacing: 12px;
.popup-menu .popup-menu-item:ltr
padding: .4em 1.75em .4em 0em;
.popup-menu .popup-menu-item:rtl
padding: .4em 0em .4em 1.75em;
.popup-menu .popup-menu-item:checked
background-color: #3a3a34;
box-shadow: inset 0 1px 0px #2c2c28;
font-weight: bold;
.popup-menu .popup-menu-item.selected
background-color: rgba(238, 238, 236, 0.1);
color: yellow;
edited Sep 30 at 10:14
answered Sep 30 at 7:47
PRATAPPRATAP
7,9394 gold badges12 silver badges48 bronze badges
7,9394 gold badges12 silver badges48 bronze badges
Thanks! This worked. Btw, when GNOME-shell user-themes extension is switched on, and a gnome-shell theme (e.g. Arc) is used, the above mentioned changes to/usr/share/gnome-shell/theme/ubuntu.css
will only occur in the unlockscreen and the lockscreen, and it will not be carried into the user's desktop theme.
– Sun Bear
Sep 30 at 7:58
How do I also change the color of the font and icons in this pop-up menu?
– Sun Bear
Sep 30 at 9:52
Font will do for now. I tried addingcolor: black;
and-arrow-color: black;
in there and elsewhere but it did not work. :(
– Sun Bear
Sep 30 at 9:56
Hi, Answer Edited, please have a review..
– PRATAP
Sep 30 at 10:16
Thanks for the directions... I discovered the following... To effect changes to the font and icon in.popup-menu
of only the lockscreen and unlockscreen and not the desktop, changes SHOULD NOT me made in.popup-menu .popup-sub-menu
. Instead, these selectors SHOULD be changed:.popup-menu .popup-menu-item.selected
,.popup-menu .popup-menu-item:active
,.popup-menu .popup-menu-item:insensitive
,.popup-menu .popup-inactive-menu-item
,.popup-menu .popup-inactive-menu-item:insensitive
, and .slider
. ;)
– Sun Bear
Oct 1 at 6:45
add a comment
|
Thanks! This worked. Btw, when GNOME-shell user-themes extension is switched on, and a gnome-shell theme (e.g. Arc) is used, the above mentioned changes to/usr/share/gnome-shell/theme/ubuntu.css
will only occur in the unlockscreen and the lockscreen, and it will not be carried into the user's desktop theme.
– Sun Bear
Sep 30 at 7:58
How do I also change the color of the font and icons in this pop-up menu?
– Sun Bear
Sep 30 at 9:52
Font will do for now. I tried addingcolor: black;
and-arrow-color: black;
in there and elsewhere but it did not work. :(
– Sun Bear
Sep 30 at 9:56
Hi, Answer Edited, please have a review..
– PRATAP
Sep 30 at 10:16
Thanks for the directions... I discovered the following... To effect changes to the font and icon in.popup-menu
of only the lockscreen and unlockscreen and not the desktop, changes SHOULD NOT me made in.popup-menu .popup-sub-menu
. Instead, these selectors SHOULD be changed:.popup-menu .popup-menu-item.selected
,.popup-menu .popup-menu-item:active
,.popup-menu .popup-menu-item:insensitive
,.popup-menu .popup-inactive-menu-item
,.popup-menu .popup-inactive-menu-item:insensitive
, and .slider
. ;)
– Sun Bear
Oct 1 at 6:45
Thanks! This worked. Btw, when GNOME-shell user-themes extension is switched on, and a gnome-shell theme (e.g. Arc) is used, the above mentioned changes to
/usr/share/gnome-shell/theme/ubuntu.css
will only occur in the unlockscreen and the lockscreen, and it will not be carried into the user's desktop theme.– Sun Bear
Sep 30 at 7:58
Thanks! This worked. Btw, when GNOME-shell user-themes extension is switched on, and a gnome-shell theme (e.g. Arc) is used, the above mentioned changes to
/usr/share/gnome-shell/theme/ubuntu.css
will only occur in the unlockscreen and the lockscreen, and it will not be carried into the user's desktop theme.– Sun Bear
Sep 30 at 7:58
How do I also change the color of the font and icons in this pop-up menu?
– Sun Bear
Sep 30 at 9:52
How do I also change the color of the font and icons in this pop-up menu?
– Sun Bear
Sep 30 at 9:52
Font will do for now. I tried adding
color: black;
and -arrow-color: black;
in there and elsewhere but it did not work. :(– Sun Bear
Sep 30 at 9:56
Font will do for now. I tried adding
color: black;
and -arrow-color: black;
in there and elsewhere but it did not work. :(– Sun Bear
Sep 30 at 9:56
Hi, Answer Edited, please have a review..
– PRATAP
Sep 30 at 10:16
Hi, Answer Edited, please have a review..
– PRATAP
Sep 30 at 10:16
Thanks for the directions... I discovered the following... To effect changes to the font and icon in
.popup-menu
of only the lockscreen and unlockscreen and not the desktop, changes SHOULD NOT me made in .popup-menu .popup-sub-menu
. Instead, these selectors SHOULD be changed: .popup-menu .popup-menu-item.selected
, .popup-menu .popup-menu-item:active
, .popup-menu .popup-menu-item:insensitive
, .popup-menu .popup-inactive-menu-item
, .popup-menu .popup-inactive-menu-item:insensitive
, and .slider
. ;)– Sun Bear
Oct 1 at 6:45
Thanks for the directions... I discovered the following... To effect changes to the font and icon in
.popup-menu
of only the lockscreen and unlockscreen and not the desktop, changes SHOULD NOT me made in .popup-menu .popup-sub-menu
. Instead, these selectors SHOULD be changed: .popup-menu .popup-menu-item.selected
, .popup-menu .popup-menu-item:active
, .popup-menu .popup-menu-item:insensitive
, .popup-menu .popup-inactive-menu-item
, .popup-menu .popup-inactive-menu-item:insensitive
, and .slider
. ;)– Sun Bear
Oct 1 at 6:45
add a comment
|
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1177603%2fhow-to-change-background-color-of-pop-out-menu-of-the-top-bar-of-ubuntu-18-04-lo%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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