Просмотр исходного кода

Feedback correction completed.

Shu Katabe 3 лет назад
Родитель
Сommit
6c31a92ddc

+ 3 - 1
packages/app/src/components/PageList/PageList.tsx

@@ -1,8 +1,10 @@
 import React from 'react';
 import React from 'react';
+
 import { useTranslation } from 'react-i18next';
 import { useTranslation } from 'react-i18next';
 
 
 import { IPageWithMeta } from '~/interfaces/page';
 import { IPageWithMeta } from '~/interfaces/page';
 import { OnDeletedFunction, OnPutBackedFunction } from '~/interfaces/ui';
 import { OnDeletedFunction, OnPutBackedFunction } from '~/interfaces/ui';
+
 import { ForceHideMenuItems } from '../Common/Dropdown/PageItemControl';
 import { ForceHideMenuItems } from '../Common/Dropdown/PageItemControl';
 
 
 import { PageListItemL } from './PageListItemL';
 import { PageListItemL } from './PageListItemL';
@@ -53,7 +55,7 @@ const PageList = (props: Props): JSX.Element => {
 
 
   return (
   return (
     <div className="page-list">
     <div className="page-list">
-      <ul className="page-list-ul list-group-flush">
+      <ul className="page-list-ul list-group list-group-flush">
         {pageList}
         {pageList}
       </ul>
       </ul>
     </div>
     </div>

+ 1 - 2
packages/app/src/styles/theme/_apply-colors-dark.scss

@@ -219,14 +219,13 @@ ul.pagination {
 .page-list {
 .page-list {
   .page-list-ul {
   .page-list-ul {
     > li {
     > li {
-      background-color: transparent;
       > span.page-list-meta {
       > span.page-list-meta {
         color: darken($color-global, 10%);
         color: darken($color-global, 10%);
       }
       }
     }
     }
   }
   }
 
 
-  // List group
+  // on serch
   .list-group-item {
   .list-group-item {
     &.active {
     &.active {
       background-color: lighten($bgcolor-global, 9%) !important;
       background-color: lighten($bgcolor-global, 9%) !important;

+ 2 - 5
packages/app/src/styles/theme/_apply-colors.scss

@@ -79,7 +79,6 @@ pre:not(.hljs):not(.CodeMirror-line) {
 
 
 // Dropdown
 // Dropdown
 .grw-personal-dropdown {
 .grw-personal-dropdown {
-
   .grw-sidebar-mode-icon svg {
   .grw-sidebar-mode-icon svg {
     fill: $secondary;
     fill: $secondary;
   }
   }
@@ -480,15 +479,13 @@ ul.pagination {
   .list-group {
   .list-group {
     .list-group-item {
     .list-group-item {
       a {
       a {
-        color: $color-global;
         svg {
         svg {
-          fill: $color-global;
+          fill: $link-color;
         }
         }
 
 
         @include hover() {
         @include hover() {
-          color: $color-global;
           svg {
           svg {
-            fill: $color-global;
+            fill: $link-color;
           }
           }
         }
         }
       }
       }