Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gajim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
l-n-s
gajim
Commits
52111cd1
Commit
52111cd1
authored
6 years ago
by
Daniel Brötzmann
Committed by
Philipp Hörist
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Improve dark theme colors
parent
a988d2e2
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
gajim/data/style/default-dark.css
+4
-4
4 additions, 4 deletions
gajim/data/style/default-dark.css
gajim/gtk/history.py
+4
-1
4 additions, 1 deletion
gajim/gtk/history.py
with
8 additions
and
5 deletions
gajim/data/style/default-dark.css
+
4
−
4
View file @
52111cd1
.gajim-incoming-nickname
{
.gajim-incoming-nickname
{
color
:
rgb
(
164
,
0
,
0
)
color
:
rgb
(
207
,
49
,
47
)
}
}
.gajim-outgoing-nickname
{
.gajim-outgoing-nickname
{
color
:
rgb
(
52
,
1
01
,
164
)
color
:
rgb
(
38
,
1
39
,
210
)
}
}
.gajim-url
{
.gajim-url
{
color
:
rgb
(
117
,
80
,
123
)
color
:
rgb
(
53
,
132
,
228
)
}
}
.gajim-highlight-message
{
.gajim-highlight-message
{
color
:
rgb
(
245
,
121
,
0
)
color
:
rgb
(
245
,
121
,
0
)
...
@@ -27,4 +27,4 @@
...
@@ -27,4 +27,4 @@
}
}
.gajim-state-paused
{
.gajim-state-paused
{
color
:
rgb
(
0
,
0
,
205
)
color
:
rgb
(
0
,
0
,
205
)
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
gajim/gtk/history.py
+
4
−
1
View file @
52111cd1
...
@@ -36,6 +36,7 @@ from gajim.common import exceptions
...
@@ -36,6 +36,7 @@ from gajim.common import exceptions
from
gajim.common.i18n
import
_
from
gajim.common.i18n
import
_
from
gajim.common.const
import
ShowConstant
from
gajim.common.const
import
ShowConstant
from
gajim.common.const
import
KindConstant
from
gajim.common.const
import
KindConstant
from
gajim.common.const
import
StyleAttr
from
gajim
import
conversation_textview
from
gajim
import
conversation_textview
...
@@ -85,7 +86,9 @@ class HistoryWindow(Gtk.ApplicationWindow):
...
@@ -85,7 +86,9 @@ class HistoryWindow(Gtk.ApplicationWindow):
account
,
used_in_history_window
=
True
)
account
,
used_in_history_window
=
True
)
self
.
_ui
.
scrolledwindow
.
add
(
self
.
history_textview
.
tv
)
self
.
_ui
.
scrolledwindow
.
add
(
self
.
history_textview
.
tv
)
self
.
history_buffer
=
self
.
history_textview
.
tv
.
get_buffer
()
self
.
history_buffer
=
self
.
history_textview
.
tv
.
get_buffer
()
self
.
history_buffer
.
create_tag
(
'
highlight
'
,
background
=
'
yellow
'
)
highlight_color
=
app
.
css_config
.
get_value
(
'
.gajim-highlight-message
'
,
StyleAttr
.
COLOR
)
self
.
history_buffer
.
create_tag
(
'
highlight
'
,
background
=
highlight_color
)
self
.
history_buffer
.
create_tag
(
'
invisible
'
,
invisible
=
True
)
self
.
history_buffer
.
create_tag
(
'
invisible
'
,
invisible
=
True
)
self
.
clearing_search
=
False
self
.
clearing_search
=
False
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment