Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Plasma
Plasma applet for NetworkManager
Commits
df89c5b8
Commit
df89c5b8
authored
May 07, 2014
by
Jan Grulich
Browse files
Use lighter color for selected connections
parent
69bc46a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
editor/qml/main.qml
View file @
df89c5b8
...
...
@@ -279,7 +279,7 @@ ApplicationWindow {
rowDelegate
:
Rectangle
{
height
:
units
.
iconSizes
.
medium
;
color
:
styleData
.
selected
?
myPalette
.
highlight
:
(
styleData
.
alternate
?
myPalette
.
midlight
:
myPalette
.
light
);
color
:
styleData
.
selected
?
Qt
.
lighter
(
myPalette
.
highlight
,
1.3
)
:
(
styleData
.
alternate
?
myPalette
.
midlight
:
myPalette
.
light
);
}
backgroundVisible
:
false
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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