summaryrefslogtreecommitdiff
path: root/src/themes/style.css
diff options
context:
space:
mode:
authorMatthew Fennell <matthew@fennell.dev>2025-12-27 12:40:20 +0000
committerMatthew Fennell <matthew@fennell.dev>2025-12-27 12:40:20 +0000
commit5d8e439bc597159e3c9f0a8b65c0ae869dead3a8 (patch)
treeed28aefed8add0da1c55c08fdf80b23c4346e0dc /src/themes/style.css
Import Upstream version 43.0upstream/latest
Diffstat (limited to 'src/themes/style.css')
-rw-r--r--src/themes/style.css58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/themes/style.css b/src/themes/style.css
new file mode 100644
index 0000000..a9096b3
--- /dev/null
+++ b/src/themes/style.css
@@ -0,0 +1,58 @@
+@import url("resource:///org/gnome/todo/themes/_omniarea.css");
+@import url("resource:///org/gnome/todo/themes/_taskrow.css");
+@import url("resource:///org/gnome/todo/themes/_widgets.css");
+
+tasklistview list:drop(active) {
+ border: none;
+}
+
+row.thumbnail {
+ border: solid 1px @borders;
+ box-shadow: 0px 0px 3px alpha(@borders, 0.8);
+ border-radius: 16px;
+}
+
+grid-item.thumbnail {
+ padding: 6px;
+ font-size: 10px;
+}
+
+grid-item image {
+ margin: 12px 24px;
+ font-size: 10px;
+ border: solid 1px @borders;
+ border-radius: 4px;
+ box-shadow: 0px 0px 4px alpha(@borders, 0.8);
+}
+
+grid-item {
+ background-color: transparent;
+}
+
+grid-item.light {
+ color: #000003;
+}
+
+grid-item.dark {
+ color: #eeeeec;
+}
+
+arrow-frame {
+ border: solid 1px;
+ border-bottom-width: 0px;
+ border-top-width: 0px;
+ background-color: @theme_bg_color;
+ border-color: @borders;
+}
+
+arrow-frame:dir(ltr) {
+ border-right-width: 0px;
+}
+
+arrow-frame:dir(rtl) {
+ border-left-width: 0px;
+}
+
+label.main-title {
+ font-size: 28px;
+}