yuken 3 лет назад
Родитель
Сommit
03a76b2515

+ 133 - 127
packages/app/src/components/Navbar/GrowiSubNavigation.module.scss

@@ -1,141 +1,164 @@
 @use '~/styles/variables' as var;
 @use '~/styles/bootstrap/init' as bs;
+@use '~/styles/mixins';
 
-
+// https://github.com/css-modules/css-modules/issues/295#issuecomment-404873976
+// workaround to use '&' in global scope
 .grw-subnav {
-  min-height: var.$grw-subnav-min-height;
-  padding-top: 8px;
-  padding-bottom: 8px;
+  :grobal {
+    min-height: var.$grw-subnav-min-height;
+    padding-top: 8px;
+    padding-bottom: 8px;
 
-  @include bs.media-breakpoint-up(md) {
-    min-height: var.$grw-subnav-min-height-md;
-  }
+    @include bs.media-breakpoint-up(md) {
+      min-height: var.$grw-subnav-min-height-md;
+    }
 
-  &:hover {
-    .btn-copy,
-    .btn-edit,
-    .btn-edit-tags {
-      // change button opacity
-      opacity: unset;
+    .grw-drawer-toggler {
+      width: 50px;
+      height: 50px;
+      font-size: 24px;
     }
-  }
 
-  .grw-drawer-toggler {
-    width: 50px;
-    height: 50px;
-    font-size: 24px;
-  }
+    h1 {
+      @include mixins.variable-font-size(32px);
+      line-height: 1.4em;
+    }
 
-  h1 {
-    @include bs.variable-font-size(32px);
-    line-height: 1.4em;
-  }
+    .grw-taglabels-container {
+      margin-bottom: 0.5rem;
+    }
 
-  .grw-taglabels-container {
-    margin-bottom: 0.5rem;
-  }
+    .grw-page-path-nav {
+      .separator {
+        margin-right: 0.2em;
+        margin-left: 0.2em;
+      }
+    }
 
-  .grw-page-path-nav {
-    .separator {
-      margin-right: 0.2em;
-      margin-left: 0.2em;
+    .btn-subscribe {
+      height: 40px;
+      font-size: 20px;
     }
-  }
 
-  .btn-subscribe {
-    height: 40px;
-    font-size: 20px;
-  }
+    .btn-like,
+    .btn-bookmark,
+    .btn-seen-user {
+      height: 40px;
+      padding-right: 6px;
+      padding-left: 8px;
+      font-size: 20px;
+      svg {
+        width: 20px;
+        height: 20px;
+      }
+    }
+    .total-likes,
+    .total-bookmarks {
+      display: flex;
+      align-items: flex-end;
+      padding-right: 8px;
+      padding-left: 6px;
+      font-size: 14px;
+      font-weight: bs.$font-weight-bold;
+    }
+    .seen-user-count {
+      padding-right: 6px;
+      padding-left: 6px;
+      font-size: 14px;
+      font-weight: bs.$font-weight-bold;
+      vertical-align: bottom;
+    }
 
-  .btn-like,
-  .btn-bookmark,
-  .btn-seen-user {
-    height: 40px;
-    padding-right: 6px;
-    padding-left: 8px;
-    font-size: 20px;
-    svg {
-      width: 20px;
-      height: 20px;
+    .btn-page-item-control {
+      height: 40px;
+      font-size: 16px;
     }
-  }
-  .total-likes,
-  .total-bookmarks {
-    display: flex;
-    align-items: flex-end;
-    padding-right: 8px;
-    padding-left: 6px;
-    font-size: 14px;
-    font-weight: $font-weight-bold;
-  }
-  .seen-user-count {
-    padding-right: 6px;
-    padding-left: 6px;
-    font-size: 14px;
-    font-weight: $font-weight-bold;
-    vertical-align: bottom;
-  }
 
-  .btn-page-item-control {
-    height: 40px;
-    font-size: 16px;
-  }
+    ul.authors {
+      li {
+        font-size: 12px;
+        list-style: none;
+      }
 
-  ul.authors {
-    li {
-      font-size: 12px;
-      list-style: none;
-    }
+      .text-date {
+        font-size: 11px;
+      }
 
-    .text-date {
-      font-size: 11px;
-    }
+      .picture {
+        width: 22px;
+        height: 22px;
+        border: 1px solid bs.$gray-300;
 
-    .picture {
-      width: 22px;
-      height: 22px;
-      border: 1px solid $gray-300;
+        &.picture-xs {
+          width: 14px;
+          height: 14px;
+        }
+      }
 
-      &.picture-xs {
-        width: 14px;
-        height: 14px;
+      .user-list-popover {
+        max-width: 200px;
+
+        .user-list-content {
+          direction: rtl;
+
+          .liker-user-count,
+          .seen-user-count {
+            font-size: 12px;
+            font-weight: bolder;
+          }
+        }
+        .cls-1 {
+          isolation: isolate;
+        }
       }
     }
   }
 
-  /*
-   * Compact Mode
-   */
-  &.grw-subnav-compact {
-    min-height: 70px;
-
-    @include bs.media-breakpoint-up(md) {
-      min-height: 90px;
+  &:global {
+    &:hover {
+      .btn-copy,
+      .btn-edit,
+      .btn-edit-tags {
+        // change button opacity
+        opacity: unset;
+      }
     }
 
-    .btn-like,
-    .btn-bookmark,
-    .btn-subscribe {
-      width: 32px;
-      height: 32px;
-      padding: 4px;
-      font-size: 16px;
-    }
-    .btn-seen-user {
-      width: 48px;
-      height: 32px;
-      padding: 4px;
-      font-size: 16px;
+    /*
+     * Compact Mode
+     */
+    &.grw-subnav-compact {
+      min-height: 70px;
 
-      svg {
-        width: 16px;
-        height: 16px;
+      @include bs.media-breakpoint-up(md) {
+        min-height: 90px;
+      }
+
+      .btn-like,
+      .btn-bookmark,
+      .btn-subscribe {
+        width: 32px;
+        height: 32px;
+        padding: 4px;
+        font-size: 16px;
+      }
+      .btn-seen-user {
+        width: 48px;
+        height: 32px;
+        padding: 4px;
+        font-size: 16px;
+
+        svg {
+          width: 16px;
+          height: 16px;
+        }
+      }
+      .btn-page-item-control {
+        width: 32px;
+        height: 32px;
+        font-size: 12px;
       }
-    }
-    .btn-page-item-control {
-      width: 32px;
-      height: 32px;
-      font-size: 12px;
     }
   }
 }
@@ -174,20 +197,3 @@ $easeInOutCubic: cubic-bezier(0.65, 0, 0.35, 1);
     }
   }
 }
-
-.user-list-popover {
-  max-width: 200px;
-
-  .user-list-content {
-    direction: rtl;
-
-    .liker-user-count,
-    .seen-user-count {
-      font-size: 12px;
-      font-weight: bolder;
-    }
-  }
-  .cls-1 {
-    isolation: isolate;
-  }
-}

+ 3 - 1
packages/app/src/components/Navbar/GrowiSubNavigation.tsx

@@ -12,6 +12,8 @@ import PagePathNav from '../PagePathNav';
 import AuthorInfo from './AuthorInfo';
 import DrawerToggler from './DrawerToggler';
 
+import styles from './GrowiSubNavigation.module.scss';
+
 
 type Props = {
   page: Partial<IPageHasId>,
@@ -57,7 +59,7 @@ export const GrowiSubNavigation = (props: Props): JSX.Element => {
 
   return (
     <div className={
-      'grw-subnav d-flex align-items-center justify-content-between'
+      `grw-subnav ${styles['grw-subnav']} d-flex align-items-center justify-content-between`
       + ` ${additionalClasses.join(' ')}`
       + ` ${isCompactMode ? 'grw-subnav-compact d-print-none' : ''}`}
     >

+ 3 - 1
packages/app/src/components/Navbar/PageEditorModeManager.jsx

@@ -7,6 +7,8 @@ import { UncontrolledTooltip } from 'reactstrap';
 import { useCurrentUser, useHackmdUri } from '~/stores/context';
 import { EditorMode, useIsDeviceSmallerThanMd } from '~/stores/ui';
 
+import styles from './PageEditorModeManager.module.scss';
+
 /* eslint-disable react/prop-types */
 const PageEditorModeButtonWrapper = React.memo(({
   editorMode, isBtnDisabled, onClick, targetMode, icon, label, id,
@@ -63,7 +65,7 @@ function PageEditorModeManager(props) {
   return (
     <>
       <div
-        className="btn-group grw-page-editor-mode-manager"
+        className={`btn-group grw-page-editor-mode-manager ${styles['grw-subnav']}`}
         role="group"
         aria-label="page-editor-mode-manager"
         id="grw-page-editor-mode-manager"

+ 6 - 3
packages/app/src/styles/molecules/page-editor-mode-manager.scss → packages/app/src/components/Navbar/PageEditorModeManager.module.scss

@@ -1,15 +1,18 @@
 // @mixin page-editor-mode-manager($textColor, $borderColor, $bgColorHoverAndActive, $bgColor: white) {
+@use '~/styles/bootstrap/init' as bs;
+@use '~/styles/mixins';
+
 .grw-page-editor-mode-manager .btn {
   width: 70px;
   white-space: nowrap;
 
-  @include border-vertical('before', 70%, 1, true);
+  @include mixins.border-vertical('before', 70%, 1, true);
 
   &.view-button,
   &.edit-button {
     line-height: 1.2rem;
     .grw-page-editor-mode-manager-icon {
-      @include media-breakpoint-down(sm) {
+      @include bs.media-breakpoint-down(sm) {
         font-size: 1.2rem;
       }
     }
@@ -17,7 +20,7 @@
   &.hackmd-button {
     line-height: 1.2rem;
     .grw-page-editor-mode-manager-icon {
-      @include media-breakpoint-down(sm) {
+      @include bs.media-breakpoint-down(sm) {
         font-size: 1.2rem;
       }
     }

+ 0 - 189
packages/app/src/styles/_subnav.scss

@@ -1,189 +0,0 @@
-.grw-subnav {
-  min-height: $grw-subnav-min-height;
-  padding-top: 8px;
-  padding-bottom: 8px;
-
-  @include media-breakpoint-up(md) {
-    min-height: $grw-subnav-min-height-md;
-  }
-
-  &:hover {
-    .btn-copy,
-    .btn-edit,
-    .btn-edit-tags {
-      // change button opacity
-      opacity: unset;
-    }
-  }
-
-  .grw-drawer-toggler {
-    width: 50px;
-    height: 50px;
-    font-size: 24px;
-  }
-
-  h1 {
-    @include variable-font-size(32px);
-    line-height: 1.4em;
-  }
-
-  .grw-taglabels-container {
-    margin-bottom: 0.5rem;
-  }
-
-  .grw-page-path-nav {
-    .separator {
-      margin-right: 0.2em;
-      margin-left: 0.2em;
-    }
-  }
-
-  .btn-subscribe {
-    height: 40px;
-    font-size: 20px;
-  }
-
-  .btn-like,
-  .btn-bookmark,
-  .btn-seen-user {
-    height: 40px;
-    padding-right: 6px;
-    padding-left: 8px;
-    font-size: 20px;
-    svg {
-      width: 20px;
-      height: 20px;
-    }
-  }
-  .total-likes,
-  .total-bookmarks {
-    display: flex;
-    align-items: flex-end;
-    padding-right: 8px;
-    padding-left: 6px;
-    font-size: 14px;
-    font-weight: $font-weight-bold;
-  }
-  .seen-user-count {
-    padding-right: 6px;
-    padding-left: 6px;
-    font-size: 14px;
-    font-weight: $font-weight-bold;
-    vertical-align: bottom;
-  }
-
-  .btn-page-item-control {
-    height: 40px;
-    font-size: 16px;
-  }
-
-  ul.authors {
-    li {
-      font-size: 12px;
-      list-style: none;
-    }
-
-    .text-date {
-      font-size: 11px;
-    }
-
-    .picture {
-      width: 22px;
-      height: 22px;
-      border: 1px solid $gray-300;
-
-      &.picture-xs {
-        width: 14px;
-        height: 14px;
-      }
-    }
-  }
-
-  /*
-   * Compact Mode
-   */
-  &.grw-subnav-compact {
-    min-height: 70px;
-
-    @include media-breakpoint-up(md) {
-      min-height: 90px;
-    }
-
-    .btn-like,
-    .btn-bookmark,
-    .btn-subscribe {
-      width: 32px;
-      height: 32px;
-      padding: 4px;
-      font-size: 16px;
-    }
-    .btn-seen-user {
-      width: 48px;
-      height: 32px;
-      padding: 4px;
-      font-size: 16px;
-
-      svg {
-        width: 16px;
-        height: 16px;
-      }
-    }
-    .btn-page-item-control {
-      width: 32px;
-      height: 32px;
-      font-size: 12px;
-    }
-  }
-}
-
-/*
- * shadow
- */
-.grw-subnav-append-shadow-container {
-  .grw-subnav {
-    box-shadow: 0px 0px 6px 3px rgba(black, 0.15);
-  }
-}
-
-/*
- * Fixed ver
- */
-$easeInOutCubic: cubic-bezier(0.65, 0, 0.35, 1);
-
-.grw-subnav-fixed-container {
-  top: $grw-navbar-border-width;
-  z-index: $zindex-sticky - 5;
-}
-
-/*
- * Switching show/hide
- */
-.grw-subnav-switcher {
-  .grw-subnav-fixed-container {
-    transition: transform 150ms $easeInOutCubic;
-  }
-
-  &.grw-subnav-switcher-hidden {
-    .grw-subnav-fixed-container {
-      transition: unset;
-      transform: translateY(-100%);
-    }
-  }
-}
-
-.user-list-popover {
-  max-width: 200px;
-
-  .user-list-content {
-    direction: rtl;
-
-    .liker-user-count,
-    .seen-user-count {
-      font-size: 12px;
-      font-weight: bolder;
-    }
-  }
-  .cls-1 {
-    isolation: isolate;
-  }
-}