-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
14fb076
commit 30e8193
Showing
7 changed files
with
149 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import React from 'react'; | ||
import clsx from 'clsx'; | ||
import {translate} from '@docusaurus/Translate'; | ||
import IconClose from '@theme/Icon/Close'; | ||
import styles from './styles.module.css'; | ||
export default function AnnouncementBarCloseButton(props) { | ||
return ( | ||
<button | ||
type="button" | ||
aria-label={translate({ | ||
id: 'theme.AnnouncementBar.closeButtonAriaLabel', | ||
message: 'Close', | ||
description: 'The ARIA label for close button of announcement bar', | ||
})} | ||
{...props} | ||
className={clsx('clean-btn close', styles.closeButton, props.className)}> | ||
<IconClose width={14} height={14} strokeWidth={3.1} /> | ||
</button> | ||
); | ||
} |
5 changes: 5 additions & 0 deletions
5
website/src/theme/AnnouncementBar/CloseButton/styles.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
.closeButton { | ||
padding: 0; | ||
line-height: 0; | ||
@apply text-white opacity-100; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import React from 'react'; | ||
import clsx from 'clsx'; | ||
import {useThemeConfig} from '@docusaurus/theme-common'; | ||
import styles from './styles.module.css'; | ||
export default function AnnouncementBarContent(props) { | ||
const {announcementBar} = useThemeConfig(); | ||
const {content} = announcementBar; | ||
return ( | ||
<div | ||
{...props} | ||
className={clsx(styles.content, props.className)} | ||
// Developer provided the HTML, so assume it's safe. | ||
// eslint-disable-next-line react/no-danger | ||
dangerouslySetInnerHTML={{__html: content}} | ||
/> | ||
); | ||
} |
10 changes: 10 additions & 0 deletions
10
website/src/theme/AnnouncementBar/Content/styles.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
.content { | ||
font-size: 85%; | ||
text-align: center; | ||
padding: 5px 0; | ||
} | ||
|
||
.content a { | ||
color: inherit; | ||
text-decoration: underline; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import React from 'react'; | ||
import {useThemeConfig} from '@docusaurus/theme-common'; | ||
import {useAnnouncementBar} from '@docusaurus/theme-common/internal'; | ||
import AnnouncementBarCloseButton from '@theme/AnnouncementBar/CloseButton'; | ||
import AnnouncementBarContent from '@theme/AnnouncementBar/Content'; | ||
import styles from './styles.module.css'; | ||
export default function AnnouncementBar() { | ||
const {announcementBar} = useThemeConfig(); | ||
const {isActive, close} = useAnnouncementBar(); | ||
if (!isActive) { | ||
return null; | ||
} | ||
const {backgroundColor, textColor, isCloseable} = announcementBar; | ||
return ( | ||
<div | ||
className={`${styles.announcementBar} kmmbridge_old_bar`} | ||
style={{backgroundColor, color: textColor}} | ||
role="banner"> | ||
{isCloseable && <div className={styles.announcementBarPlaceholder} />} | ||
<AnnouncementBarContent className={styles.announcementBarContent} /> | ||
{isCloseable && ( | ||
<AnnouncementBarCloseButton | ||
onClick={close} | ||
className={styles.announcementBarClose} | ||
/> | ||
)} | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
:root { | ||
--docusaurus-announcement-bar-height: auto; | ||
} | ||
|
||
.announcementBar { | ||
@apply py-4; | ||
background: repeating-linear-gradient( | ||
45deg, | ||
#ff3333, | ||
#ff3333 10px, | ||
#cc3333 10px, | ||
#cc3333 20px | ||
); | ||
@apply text-2xl font-bold text-white; | ||
text-shadow: 1px 1px 7px #000; | ||
display: flex; | ||
align-items: center; | ||
|
||
/* | ||
Unfortunately we can't make announcement bar render above the navbar | ||
IE need to use border-bottom instead of shadow | ||
See https://github.com/facebookincubator/infima/issues/275 | ||
box-shadow: var(--ifm-global-shadow-lw); | ||
z-index: calc(var(--ifm-z-index-fixed) + 1); | ||
*/ | ||
border-bottom: 1px solid var(--ifm-color-emphasis-100); | ||
} | ||
|
||
html[data-announcement-bar-initially-dismissed='true'] .announcementBar { | ||
display: none; | ||
} | ||
|
||
.announcementBarPlaceholder { | ||
flex: 0 0 10px; | ||
} | ||
|
||
.announcementBarClose { | ||
flex: 0 0 30px; | ||
align-self: stretch; | ||
} | ||
|
||
.announcementBarContent { | ||
flex: 1 1 auto; | ||
} | ||
|
||
@media print { | ||
.announcementBar { | ||
display: none; | ||
} | ||
} | ||
|
||
@media (min-width: 997px) { | ||
:root { | ||
--docusaurus-announcement-bar-height: 30px; | ||
} | ||
|
||
.announcementBarPlaceholder, | ||
.announcementBarClose { | ||
flex-basis: 50px; | ||
} | ||
} |