aboutsummaryrefslogtreecommitdiff
path: root/main/data/theme.css
diff options
context:
space:
mode:
authorfiaxh <git@mx.ax.lt>2017-09-05 23:53:18 +0200
committerfiaxh <git@mx.ax.lt>2017-09-06 00:15:18 +0200
commit8944029128e3d0f9e32b61e00e880d92fceabb31 (patch)
tree8cf872969d3349c61278b19273e76c65036c429d /main/data/theme.css
parent312372350e24d1ebd8afbb0029fac04f2b64eb83 (diff)
downloaddino-8944029128e3d0f9e32b61e00e880d92fceabb31.tar.gz
dino-8944029128e3d0f9e32b61e00e880d92fceabb31.zip
Move encryption menu into ChatInput, PGP support for MUCs
Diffstat (limited to 'main/data/theme.css')
-rw-r--r--main/data/theme.css45
1 files changed, 45 insertions, 0 deletions
diff --git a/main/data/theme.css b/main/data/theme.css
new file mode 100644
index 00000000..d2723d54
--- /dev/null
+++ b/main/data/theme.css
@@ -0,0 +1,45 @@
+/**
+ * This theme file is applied after the operating system theme
+ * It provides sane defaults for things that are very Dino-specific.
+ */
+
+window.dino-main headerbar.dino-left label.title {
+ opacity: 0;
+ font-size: 0;
+ color: transparent;
+}
+
+window.dino-main .dino-chatinput frame box {
+ background: @theme_base_color;
+}
+
+window.dino-main .dino-chatinput frame box:backdrop {
+ background: @theme_unfocused_base_color;
+}
+
+window.dino-main button.dino-chatinput-button {
+ border: none;
+ background: transparent;
+ box-shadow: none;
+ min-height: 0;
+ padding: 7px 5px;
+ color: alpha(@theme_fg_color, 0.6);
+ outline: none;
+}
+
+window.dino-main button.dino-chatinput-button:hover {
+ color: @theme_selected_bg_color;
+}
+
+window.dino-main button.dino-chatinput-button:backdrop {
+ color: alpha(@theme_unfocused_fg_color, 0.6);
+}
+
+window.dino-main button.dino-chatinput-button:active,
+window.dino-main button.dino-chatinput-button:checked {
+ color: alpha(@theme_selected_bg_color, 0.8);
+}
+
+window.dino-main button.dino-chatinput-button:checked:backdrop {
+ color: alpha(@theme_unfocused_selected_bg_color, 0.8);
+}