如何使关机窗口变暗?

如何使关机窗口变暗?

我如何制作关闭电源窗口变暗?基本上,它会反转当前颜色。即使背景变暗,文本变白。

在另一位成员的帮助下,我已经对登录屏幕进行了此操作。对于这个,我想也gnome-shell.css需要编辑,只是不知道要编辑哪些部分。

有问题的关闭电源窗口

答案1

假设你的这个问题是这个问题的后续问题https://askubuntu.com/a/1171364/739431并且您知道警告

编辑 gdm3.css 或其原始文件时要小心。代码中的小错误将不允许您登录。您需要特殊支持才能恢复正常。继续您自己的操作。

我认为从文件中更改的以下代码/usr/share/gnome-shell/theme/communitheme/gnome-shell.css可以实现您想要的功能。

为了便于识别,我给出了 4 种颜色:绿色、蓝色、黄色和橙色。

.end-session-dialog-shutdown-icon {
  color: green;
  width: 48px;
  height: 48px; }

其他

.modal-dialog, .prompt-dialog, .audio-device-selection-dialog, .access-dialog, .geolocation-dialog, .extension-dialog, .inhibit-shortcuts-dialog, .nm-dialog {
  color: blue;
  background-color: yellow;
  border: 1px solid #cccccc;
  box-shadow: 0 3px 9px 1px rgba(0, 0, 0, 0.5); }

其他

.modal-dialog-linked-button {
  border-right-width: 1px;
  transition-duration: 200ms;
  background-color: orange;
  border-color: #e6e6e6;
  color: #3D3D3D;
  icon-shadow: none;
  text-shadow: none;
  padding: 12px;
  border-top: 1px solid #cccccc; }

在此处输入图片描述

请注意,由于组合代码,这可能会改变其他弹出窗口或菜单颜色的行为。

例如:

.modal-dialog, .prompt-dialog, .audio-device-selection-dialog, .access-dialog, .geolocation-dialog, .extension-dialog, .inhibit-shortcuts-dialog, .nm-dialog

编辑:

.modal-dialog-linked-button {
  border-right-width: 1px;
  transition-duration: 200ms;
  background-color: orange;
  border-color: #e6e6e6;
  color: cyan;
  icon-shadow: none;
  text-shadow: none;
  padding: 12px;
  border-top: 1px solid #cccccc; }

寻找颜色Cyan

在此处输入图片描述

相关内容