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

Merge pull request #4118 from weseek/imprv/GW-6905-font-color

change font color
Yuki Takei 4 лет назад
Родитель
Сommit
02c3a5c51c

+ 1 - 1
src/client/js/components/Sidebar/RecentChanges.jsx

@@ -86,7 +86,7 @@ class RecentChanges extends React.Component {
             <div className="mt-2">
             <div className="mt-2">
               { tagElements }
               { tagElements }
             </div>
             </div>
-            <div className="d-flex justify-content-between">
+            <div className="d-flex justify-content-between grw-recent-changes-item-lower">
               <div className="mt-2">
               <div className="mt-2">
                 <span className="footstamp-icon mr-1"><FootstampIcon /></span>
                 <span className="footstamp-icon mr-1"><FootstampIcon /></span>
                 <span className="mr-2 grw-list-counts">{page.seenUsers.length}</span>
                 <span className="mr-2 grw-list-counts">{page.seenUsers.length}</span>

+ 9 - 0
src/client/styles/scss/theme/_apply-colors.scss

@@ -268,6 +268,7 @@ ul.pagination {
     .list-group {
     .list-group {
       .list-group-item {
       .list-group-item {
         background-color: transparent;
         background-color: transparent;
+
         .grw-tag-label {
         .grw-tag-label {
           color: $secondary;
           color: $secondary;
           background-color: $gray-200;
           background-color: $gray-200;
@@ -276,6 +277,14 @@ ul.pagination {
         .icon-lock {
         .icon-lock {
           color: $color-link;
           color: $color-link;
         }
         }
+
+        .grw-recent-changes-item-lower {
+          color: $gray-500;
+
+          svg {
+            fill: $gray-500;
+          }
+        }
       }
       }
     }
     }
   }
   }