From d33fb8dfaa2c971f8bbfcf297afe728f3dd81d5d Mon Sep 17 00:00:00 2001 From: RyzenFromFire Date: Tue, 13 Feb 2024 21:28:46 -0500 Subject: [PATCH] minor fixes --- manifest.json | 2 +- theme.css | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/manifest.json b/manifest.json index e85f41d..ae7d7d3 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "name": "Phoenix", - "version": "2.1.17", + "version": "2.1.18", "minAppVersion": "1.0.0", "author": "RyzenFromFire", "authorUrl": "https://github.com/RyzenFromFire" diff --git a/theme.css b/theme.css index 356b2c3..c4b1b08 100644 --- a/theme.css +++ b/theme.css @@ -1155,9 +1155,10 @@ body { } /* fix for Obsidian 1.5 indent change */ -/* removes additional indent from checkbox and bullet point lines */ +/* removes additional indent from checkbox, bullet point, and enumeration lines */ -.cm-formatting-list-ul { +.cm-formatting-list-ul, +.cm-formatting-list-ol { padding-inline-start: 0; } @@ -1181,3 +1182,8 @@ body { } /* end fixes for "editing unordered list bullet point causes 4px padding decrease" */ +/* reduce image border radius */ +body { + --img-border-radius: 2px !important; +} +