From 021aec414de22c0c1bcb3460c048fff6f88d2890 Mon Sep 17 00:00:00 2001 From: Leslin Date: Mon, 27 May 2024 00:23:17 +0530 Subject: [PATCH 1/2] discuss page contents space fix --- app/Views/discuss.php | 23 +++++++++-------------- public/assets/css/ci-theme.css | 31 +++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+), 14 deletions(-) diff --git a/app/Views/discuss.php b/app/Views/discuss.php index d6a729e..aaa2a54 100644 --- a/app/Views/discuss.php +++ b/app/Views/discuss.php @@ -28,7 +28,7 @@
Forum

- Our forum has been setup using MyBB, with five main categories:
+ Our forum has been setup using MyBB (MyBulletinBoard), with five main categories:

- The forum is where you can ask for help or discuss issues you are having with framework.
- Visit The Forum + The forum is where you can ask for help or discuss issues you are having with framework.

-

-
+ Visit The Forum +
@@ -56,10 +55,7 @@ class="link-primary" target="_blank">signup for it :)

-

- Slack -

-

+ Visit Slack Channel
@@ -76,11 +72,10 @@ class="link-primary" target="_blank">signup for it :)

GitHub issues are also used for tracking planned and approved enhancements, often tied in to specific releases.

-

- CodeIgniter 3 - CodeIgniter 4 -

-

+ + CodeIgniter 3 + CodeIgniter 4 +
diff --git a/public/assets/css/ci-theme.css b/public/assets/css/ci-theme.css index 6dfc161..7e17c52 100644 --- a/public/assets/css/ci-theme.css +++ b/public/assets/css/ci-theme.css @@ -2124,3 +2124,34 @@ html.dark-theme #discuss-icon-holder { html.dark-theme #discuss-icon { fill: rgba(221, 72, 20, 0.9); } + +.inner-page-text-box { + padding: 32px; +} + +.cta-btn { + margin: 0; + float: none; + display: inline-block; +} + +.cta-btn:not(:first-of-type) { + margin-left: 1rem; +} + +ul li { + margin-top: 1rem; + line-height: 1.5em; +} + +.warning { + padding: 10px 32px; +} + +p { + line-height: 1.5em; +} + +.inner-page-text-box { + margin: 32px auto; +} From ea63fb05791a52b19d60b1765ff815743b49b8f0 Mon Sep 17 00:00:00 2001 From: kenjis Date: Sat, 8 Jun 2024 10:54:56 +0900 Subject: [PATCH 2/2] fix: line-height --- public/assets/css/ci-theme.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/assets/css/ci-theme.css b/public/assets/css/ci-theme.css index 7e17c52..d8d6a8f 100644 --- a/public/assets/css/ci-theme.css +++ b/public/assets/css/ci-theme.css @@ -2141,7 +2141,7 @@ html.dark-theme #discuss-icon { ul li { margin-top: 1rem; - line-height: 1.5em; + line-height: 1em; } .warning {