From c088333aee99e78bb52e9b4c18238289a7abf020 Mon Sep 17 00:00:00 2001 From: prasad83 Date: Fri, 19 Apr 2024 10:42:06 +0530 Subject: [PATCH 1/2] Padding to textarea for cursor visiblity. --- index.css | 1 + 1 file changed, 1 insertion(+) diff --git a/index.css b/index.css index 4443f61..0d83c36 100644 --- a/index.css +++ b/index.css @@ -108,6 +108,7 @@ textarea { font-size: 11px; width: 99%; background-color: #ffffee; + padding: 4px; } .main { From 260f723b3dc0a275c74eae590b79fae3336db014 Mon Sep 17 00:00:00 2001 From: prasad83 Date: Fri, 19 Apr 2024 11:41:55 +0530 Subject: [PATCH 2/2] Fixed default page URL on topbar. Redirection to Home from topbar will loose index.php making other pages on Home page miss reference. --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index e1313ac..642caf5 100644 --- a/index.php +++ b/index.php @@ -113,7 +113,7 @@ function printToolbar() print "All "; print "Recent "; - print "". DEFAULT_PAGE . ""; + print "". DEFAULT_PAGE . ""; if ( REQUIRE_PASSWORD ) print 'Exit';