Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
X
ximper-shell-notification-center
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ximper Linux
ximper-shell-notification-center
Commits
113863fd
Verified
Commit
113863fd
authored
Mar 24, 2026
by
Kirill Unitsaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
backlight: full-width separator between display and keyboard sections
parent
eddf1b6a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
backlight.scss
data/style/widgets/backlight.scss
+1
-1
backlight.vala
src/controlCenter/widgets/backlight/backlight.vala
+8
-0
No files found.
data/style/widgets/backlight.scss
View file @
113863fd
.widget-backlight
{
padding
:
0
px
10px
;
padding
:
0
;
margin
:
5px
15px
;
border-radius
:
var
(
--
window-radius
);
...
...
src/controlCenter/widgets/backlight/backlight.vala
View file @
113863fd
...
...
@@ -230,6 +230,8 @@ namespace XimperShellNotificationCenter.Widgets {
// Single display — simple row
var
row
=
create_slider_row
(
ref
display_sources
[
0
],
null
,
false
);
row
.
set_margin_start
(
10
);
row
.
set_margin_end
(
10
);
append
(
row
);
return
;
}
...
...
@@ -239,6 +241,8 @@ namespace XimperShellNotificationCenter.Widgets {
add_css_class
(
"has-collapse"
);
var
topbar
=
new
Gtk
.
Box
(
Gtk
.
Orientation
.
HORIZONTAL
,
6
);
topbar
.
set_margin_start
(
10
);
topbar
.
set_margin_end
(
10
);
var
topbar_icon
=
new
Gtk
.
Image
.
from_icon_name
(
"display-brightness-symbolic"
);
var
topbar_label
=
new
Gtk
.
Label
(
...
...
@@ -280,6 +284,8 @@ namespace XimperShellNotificationCenter.Widgets {
if
(
display_sources
.
length
>
0
)
{
displays_box
=
new
Gtk
.
Box
(
Gtk
.
Orientation
.
VERTICAL
,
0
);
displays_box
.
set_margin_start
(
10
);
displays_box
.
set_margin_end
(
10
);
var
sg
=
new
Gtk
.
SizeGroup
(
Gtk
.
SizeGroupMode
.
HORIZONTAL
);
for
(
int
i
=
0
;
i
<
display_sources
.
length
;
i
++)
{
...
...
@@ -304,6 +310,8 @@ namespace XimperShellNotificationCenter.Widgets {
if
(
kbd_sources
.
length
>
0
)
{
kbd_box
=
new
Gtk
.
Box
(
Gtk
.
Orientation
.
VERTICAL
,
0
);
kbd_box
.
set_margin_start
(
10
);
kbd_box
.
set_margin_end
(
10
);
var
sg
=
new
Gtk
.
SizeGroup
(
Gtk
.
SizeGroupMode
.
HORIZONTAL
);
for
(
int
i
=
0
;
i
<
kbd_sources
.
length
;
i
++)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment