-
Notifications
You must be signed in to change notification settings - Fork 410
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: reworked navbar according to new design (#3668)
- Loading branch information
1 parent
7733051
commit 29999ba
Showing
40 changed files
with
1,449 additions
and
339 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
dokka-subprojects/plugin-base-frontend/src/main/components/assets/searchIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
4 changes: 2 additions & 2 deletions
4
...-base-frontend/src/main/ui-kit/index.scss → ...d/src/main/ui-kit/filter-section/index.ts
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/*! | ||
/* | ||
* Copyright 2014-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. | ||
*/ | ||
|
||
@import 'tabs/styles'; | ||
import './styles.scss'; |
23 changes: 23 additions & 0 deletions
23
dokka-subprojects/plugin-base-frontend/src/main/ui-kit/filter-section/styles.scss
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,23 @@ | ||
/*! | ||
* Copyright 2014-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. | ||
*/ | ||
@import '../tokens/index'; | ||
|
||
.filter-section { | ||
z-index: 0; | ||
|
||
display: flex; | ||
align-items: center; | ||
flex-wrap: wrap; | ||
|
||
margin-right: 12px; | ||
gap: 2px; | ||
|
||
@media (width <= $breakpoint-desktop-min) { | ||
display: none; | ||
} | ||
} | ||
|
||
.no-js .filter-section { | ||
display: none; | ||
} |
17 changes: 17 additions & 0 deletions
17
dokka-subprojects/plugin-base-frontend/src/main/ui-kit/global.scss
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 @@ | ||
/*! | ||
* Copyright 2014-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. | ||
*/ | ||
@import 'tokens/index'; | ||
|
||
:root { | ||
--color-background: var(--color-background-page); | ||
} | ||
|
||
.theme-dark { | ||
--color-background: var(--color-background-page-dt); | ||
} | ||
|
||
body, | ||
table { | ||
background-color: var(--color-background); | ||
} |
16 changes: 16 additions & 0 deletions
16
dokka-subprojects/plugin-base-frontend/src/main/ui-kit/helpers.scss
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,16 @@ | ||
/*! | ||
* Copyright 2014-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. | ||
*/ | ||
@import 'tokens/index'; | ||
|
||
.ui-kit_desktop-only { | ||
@media (width < $breakpoint-desktop-min) { | ||
display: none; | ||
} | ||
} | ||
|
||
.ui-kit_mobile-only { | ||
@media (width >= $breakpoint-desktop-min) { | ||
display: none; | ||
} | ||
} |
11 changes: 10 additions & 1 deletion
11
dokka-subprojects/plugin-base-frontend/src/main/ui-kit/index.ts
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 |
---|---|---|
@@ -1,6 +1,15 @@ | ||
/* | ||
* Copyright 2014-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. | ||
*/ | ||
import * as filterSection from './filter-section/index'; | ||
import * as libraryName from './library-name/index'; | ||
import * as libraryVersion from './library-version/index'; | ||
import * as navbar from './navbar/index'; | ||
import * as navbarButton from './navbar-button/index'; | ||
import * as platformTag from './platform-tag/index'; | ||
import * as platformTags from './platform-tags/index'; | ||
import * as tabs from './tabs/index'; | ||
import './helpers.scss'; | ||
import './global.scss'; | ||
|
||
export { tabs }; | ||
export { filterSection, libraryName, libraryVersion, navbar, navbarButton, platformTag, platformTags, tabs }; |
5 changes: 5 additions & 0 deletions
5
dokka-subprojects/plugin-base-frontend/src/main/ui-kit/library-name/index.ts
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 @@ | ||
/* | ||
* Copyright 2014-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. | ||
*/ | ||
|
||
import './styles.scss'; |
39 changes: 39 additions & 0 deletions
39
dokka-subprojects/plugin-base-frontend/src/main/ui-kit/library-name/styles.scss
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,39 @@ | ||
/*! | ||
* Copyright 2014-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. | ||
*/ | ||
@import '../tokens/index'; | ||
|
||
:root { | ||
--dokka-logo-height: 28px; | ||
--dokka-logo-width: 28px; | ||
} | ||
|
||
.library-name--link { | ||
display: flex; | ||
align-items: center; | ||
|
||
margin-right: var(--size-s2); | ||
|
||
white-space: nowrap; | ||
|
||
color: var(--color-text-dt); | ||
|
||
font: var(--font-h4); | ||
|
||
@media (width <= $breakpoint-desktop-min) { | ||
height: 52px; | ||
|
||
margin-left: 12px; | ||
} | ||
} | ||
|
||
.library-name--link::before { | ||
width: var(--dokka-logo-height); | ||
height: var(--dokka-logo-width); | ||
margin-right: var(--size-s2); | ||
|
||
content: ''; | ||
|
||
background: var(--dokka-logo-image-url) center no-repeat; | ||
background-size: var(--dokka-logo-height) var(--dokka-logo-width); | ||
} |
5 changes: 5 additions & 0 deletions
5
dokka-subprojects/plugin-base-frontend/src/main/ui-kit/library-version/index.ts
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 @@ | ||
/* | ||
* Copyright 2014-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. | ||
*/ | ||
|
||
import './styles.scss'; |
20 changes: 20 additions & 0 deletions
20
dokka-subprojects/plugin-base-frontend/src/main/ui-kit/library-version/styles.scss
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 @@ | ||
/*! | ||
* Copyright 2014-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. | ||
*/ | ||
|
||
@import '../tokens/index'; | ||
|
||
.library-version { | ||
color: var(--color-text-dt); | ||
|
||
font: var(--font-text-s); | ||
|
||
@media (width <= $breakpoint-desktop-min) { | ||
display: flex; | ||
align-items: center; | ||
|
||
height: 52px; | ||
|
||
background-color: var(--color-text); | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
...ubprojects/plugin-base-frontend/src/main/ui-kit/navbar-button/assets/burger.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions
8
...ubprojects/plugin-base-frontend/src/main/ui-kit/navbar-button/assets/filter.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions
3
...projects/plugin-base-frontend/src/main/ui-kit/navbar-button/assets/homepage.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions
3
...ects/plugin-base-frontend/src/main/ui-kit/navbar-button/assets/theme-toggle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions
5
dokka-subprojects/plugin-base-frontend/src/main/ui-kit/navbar-button/index.ts
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 @@ | ||
/* | ||
* Copyright 2014-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. | ||
*/ | ||
|
||
import './styles.scss'; |
80 changes: 80 additions & 0 deletions
80
dokka-subprojects/plugin-base-frontend/src/main/ui-kit/navbar-button/styles.scss
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,80 @@ | ||
/*! | ||
* Copyright 2014-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. | ||
*/ | ||
|
||
@import '../tokens/index'; | ||
|
||
.navigation-controls { | ||
display: flex; | ||
align-items: center; | ||
gap: var(--size-s1); | ||
|
||
margin-left: auto; | ||
|
||
@media (width <= $breakpoint-desktop-min) { | ||
flex-grow: 1; | ||
justify-content: flex-end; | ||
|
||
background-color: var(--color-text); | ||
gap: 0; | ||
} | ||
} | ||
|
||
.no-js .navigation-controls { | ||
display: none; | ||
} | ||
|
||
.navigation-controls--btn { | ||
display: inline-flex; | ||
align-items: center; | ||
justify-content: center; | ||
|
||
width: 40px; | ||
height: 40px; | ||
padding: 0; | ||
|
||
cursor: pointer; | ||
transition: var(--hover-transition); | ||
|
||
border: none; | ||
border-radius: var(--size-s1); | ||
background-color: inherit; | ||
background-repeat: no-repeat; | ||
background-position: 50% 50%; | ||
background-size: 24px 24px; | ||
|
||
font-size: 0; | ||
line-height: 0; | ||
will-change: background-color; | ||
|
||
&:hover { | ||
background-color: var(--color-w10); | ||
} | ||
|
||
@media (width <= $breakpoint-desktop-min) { | ||
width: 52px; | ||
height: 52px; | ||
} | ||
} | ||
|
||
.navigation-controls--break { | ||
flex-basis: 100%; | ||
} | ||
|
||
.navigation-controls--btn_theme { | ||
background-image: url('./assets/theme-toggle.svg'); | ||
} | ||
|
||
.navigation-controls--btn_homepage { | ||
background-image: url('./assets/homepage.svg'); | ||
} | ||
|
||
.navigation-controls--btn_menu { | ||
margin-left: auto; | ||
|
||
background-image: url('./assets/burger.svg'); | ||
} | ||
|
||
.navigation-controls--btn_filter { | ||
background-image: url('./assets/filter.svg'); | ||
} |
5 changes: 5 additions & 0 deletions
5
dokka-subprojects/plugin-base-frontend/src/main/ui-kit/navbar/index.ts
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 @@ | ||
/* | ||
* Copyright 2014-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. | ||
*/ | ||
|
||
import './styles.scss'; |
29 changes: 29 additions & 0 deletions
29
dokka-subprojects/plugin-base-frontend/src/main/ui-kit/navbar/styles.scss
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 @@ | ||
/*! | ||
* Copyright 2014-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. | ||
*/ | ||
@import '../tokens/index'; | ||
|
||
.navigation { | ||
z-index: 4; | ||
|
||
display: flex; | ||
align-items: center; | ||
flex-wrap: wrap; | ||
justify-content: flex-start; | ||
|
||
box-sizing: border-box; | ||
height: var(--size-l1); | ||
padding: 12px var(--size-m1); | ||
|
||
color: var(--color-text-dt); | ||
background-color: var(--color-background-nav); | ||
|
||
@media (width <= $breakpoint-desktop-min) { | ||
height: auto; | ||
padding: 0; | ||
} | ||
|
||
.theme-dark & { | ||
background-color: var(--color-background-nav-dt); | ||
} | ||
} |
5 changes: 5 additions & 0 deletions
5
dokka-subprojects/plugin-base-frontend/src/main/ui-kit/platform-tag/index.ts
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 @@ | ||
/* | ||
* Copyright 2014-2024 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. | ||
*/ | ||
|
||
import './styles.scss'; |
Oops, something went wrong.