Mao 4 سال پیش
والد
کامیت
e3c1012fdd
2فایلهای تغییر یافته به همراه4 افزوده شده و 2 حذف شده
  1. 1 1
      packages/app/src/styles/_override-bootstrap.scss
  2. 3 1
      packages/app/src/styles/theme/_apply-colors.scss

+ 1 - 1
packages/app/src/styles/_override-bootstrap.scss

@@ -154,7 +154,7 @@
   // label
   // label
 
 
   label {
   label {
-    // search control include path btn
+    // add with-no-font-weight class in case you do not want to apply font-weight 700 to label
     :not(.with-no-font-weight) {
     :not(.with-no-font-weight) {
       font-weight: 700;
       font-weight: 700;
     }
     }

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

@@ -631,7 +631,9 @@ body.pathname-sidebar {
 .page-list-meta {
 .page-list-meta {
   color: $color-search-item-pagelist-meta;
   color: $color-search-item-pagelist-meta;
   svg {
   svg {
-    fill: $color-search-item-pagelist-meta;
+    // !important because by default when hover occurs , svg in anchor tag gets 'fill' styling.
+    // In page-list-meta, such styling not needed.
+    fill: $color-search-item-pagelist-meta !important;
   }
   }
 }
 }