Skip to content

Commit

Permalink
首页话题列表
Browse files Browse the repository at this point in the history
  • Loading branch information
summerblue committed Mar 7, 2022
1 parent 8c9253e commit 82b62f5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions public/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -20514,27 +20514,27 @@ body {
}

/* Topic Index Page */
.topics-index-page .topic-list .nav > li > a, .categories-show-page .topic-list .nav > li > a {
.topics-index-page .topic-list .nav > li > a, .categories-show-page .topic-list .nav > li > a, .root-page .topic-list .nav > li > a {
position: relative;
display: block;
padding: 5px 14px;
font-size: 0.9em;
}
.topics-index-page .topic-list a, .categories-show-page .topic-list a {
.topics-index-page .topic-list a, .categories-show-page .topic-list a, .root-page .topic-list a {
color: #444444;
text-decoration: none;
}
.topics-index-page .topic-list .meta, .categories-show-page .topic-list .meta {
.topics-index-page .topic-list .meta, .categories-show-page .topic-list .meta, .root-page .topic-list .meta {
font-size: 0.9em;
color: #b3b3b3;
}
.topics-index-page .topic-list .meta a, .categories-show-page .topic-list .meta a {
.topics-index-page .topic-list .meta a, .categories-show-page .topic-list .meta a, .root-page .topic-list .meta a {
color: #b3b3b3;
}
.topics-index-page .topic-list .badge, .categories-show-page .topic-list .badge {
.topics-index-page .topic-list .badge, .categories-show-page .topic-list .badge, .root-page .topic-list .badge {
background-color: #d8d8d8 !important;
}
.topics-index-page .topic-list hr, .categories-show-page .topic-list hr {
.topics-index-page .topic-list hr, .categories-show-page .topic-list hr, .root-page .topic-list hr {
margin-top: 12px;
margin-bottom: 12px;
border: 0;
Expand Down
2 changes: 1 addition & 1 deletion public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"/js/app.js": "/js/app.js?id=50991537ade597bb0c683d960e912178",
"/css/app.css": "/css/app.css?id=e15b6631a842d3dc5ba74f3e8b8ba30f",
"/css/app.css": "/css/app.css?id=dce27180931d496f8d23f5aa37a07071",
"/js/hotkeys.js": "/js/hotkeys.js?id=60b95061e721b635da02b5cc7792204b",
"/js/module.js": "/js/module.js?id=1f0206730b87684b7ad654a458319014",
"/js/simditor.js": "/js/simditor.js?id=e19ffe3d664de3d4228a9bd3573b4a6b",
Expand Down
2 changes: 1 addition & 1 deletion resources/sass/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ body {
}

/* Topic Index Page */
.topics-index-page, .categories-show-page {
.topics-index-page, .categories-show-page, .root-page {
.topic-list {
.nav>li>a {
position: relative;
Expand Down
2 changes: 1 addition & 1 deletion routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

use Illuminate\Support\Facades\Route;

Route::get('/', 'PagesController@root')->name('root');
Route::get('/', 'TopicsController@index')->name('root');

// 用户身份验证相关的路由
Route::get('login', 'Auth\LoginController@showLoginForm')->name('login');
Expand Down

0 comments on commit 82b62f5

Please sign in to comment.