From 68fd4d706ab146b5062db7f44477ce11e586673d Mon Sep 17 00:00:00 2001 From: dev Date: Sat, 27 Jun 2026 15:08:10 +0200 Subject: style: use pink outline (btn-outline-pink) for topic buttons on /topics and /popular/topics --- resources/views/layouts/app.blade.php | 10 ++++++++++ resources/views/topicindex.blade.php | 2 +- resources/views/topicpopular.blade.php | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) (limited to 'resources/views') diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php index 0f2851d..975821b 100644 --- a/resources/views/layouts/app.blade.php +++ b/resources/views/layouts/app.blade.php @@ -122,6 +122,16 @@ background-color: var(--cinema-cyan); border-color: var(--cinema-cyan); } + .btn-outline-pink { + color: var(--cinema-pink); + border-color: var(--cinema-pink); + } + .btn-outline-pink:hover, .btn-outline-pink:focus { + color: #fff; + background-color: var(--cinema-pink); + border-color: var(--cinema-pink); + box-shadow: 0 0 15px rgba(255, 46, 99, 0.3); + } .btn-primary { background-color: var(--cinema-pink); color: #fff; diff --git a/resources/views/topicindex.blade.php b/resources/views/topicindex.blade.php index 274d0fc..d5cf223 100644 --- a/resources/views/topicindex.blade.php +++ b/resources/views/topicindex.blade.php @@ -38,7 +38,7 @@ html { @php ($curLetter = $firstLetter) @endif - {{ ucwords($topic->name) }} + {{ ucwords($topic->name) }} @endif @endforeach diff --git a/resources/views/topicpopular.blade.php b/resources/views/topicpopular.blade.php index 59ade5b..b8f0224 100644 --- a/resources/views/topicpopular.blade.php +++ b/resources/views/topicpopular.blade.php @@ -34,7 +34,7 @@ html {
@foreach ($topics as $topic) @if ( "" != $topic->name ) - {{ ucwords($topic->name) }} ({{ $topic->count }} Articles) + {{ ucwords($topic->name) }} ({{ $topic->count }} Articles) @endif @endforeach
-- cgit v1.2.3