Daniel Brötzmann pushed to branch master at gajim / gajim


Commits:
c46a812a by wurstsalat at 2024-12-21T12:28:46+01:00
cfix: MessageActionsBox: Fix CSS specificity

- - - - -
9efaf6db by wurstsalat at 2024-12-21T12:29:31+01:00
cq: VoiceMessageRecorderButton: Fix return style

- - - - -


2 changed files:

- gajim/data/style/gajim.css
- gajim/gtk/voice_message_recorder_widget.py


Changes:

=====================================
gajim/data/style/gajim.css
=====================================
@@ -631,12 +631,14 @@ .search-view-header label {
 
 /* MessageActionsBox */
 .message-actions-box { margin: 2px 13px 8px 8px; }
-.message-actions-box button:not(:hover) {
+.message-actions-box > box > box > button:not(:hover),
+.message-actions-box > box > box > menubutton > button:not(:hover) {
     background: transparent;
     border: 1px solid transparent;
     box-shadow: none;
 }
-.message-actions-box button:hover {
+.message-actions-box > box > box > button:hover,
+.message-actions-box > box > box > menubutton > button:hover {
     border: 1px solid transparent;
     border-radius: 8px;
 }


=====================================
gajim/gtk/voice_message_recorder_widget.py
=====================================
@@ -159,8 +159,8 @@ def _is_audio_input_device_found(self) -> bool:
         if not 
self._voice_message_recorder.audio_input_device_exists(audio_device):
             log.error('Audio device "%s" not found', audio_device)
             return False
-        else:
-            return True
+
+        return True
 
     def _is_audio_input_device_blacklisted(self) -> bool:
         audio_device = app.settings.get("audio_input_device")



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/compare/22b75bedd179b4997642bf77020a98c6078b09fb...9efaf6dba04b9825c989245143974ed0954a0a16

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/compare/22b75bedd179b4997642bf77020a98c6078b09fb...9efaf6dba04b9825c989245143974ed0954a0a16
You're receiving this email because of your account on dev.gajim.org.


_______________________________________________
Commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to