-
Notifications
You must be signed in to change notification settings - Fork 703
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Prime Flow to Layout Editor v2 (#2521)
* Port over theme changes * Add light theme and prime check * Add SideNav dropdown * Add WelcomeToPrime window * Add translations * Render WelcomeToPrime * Style WelcomeToPrime * Fix migration * Finetune theme colors and add theme toggle * Add prime socket * Fix reactivity to prime check and add design tweaks * Fix icon in prime themes * Add magic link and fix add tab function * Address Code Review, move prime checks to login/logout
- Loading branch information
1 parent
40353b6
commit 6c000e1
Showing
37 changed files
with
606 additions
and
174 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
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
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,49 @@ | ||
@import '../styles/index'; | ||
|
||
.titlebar { | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
height: 30px; | ||
flex: 0 0 30px; | ||
background: var(--titlebar); | ||
-webkit-app-region: drag; | ||
} | ||
|
||
.titlebar-icon { | ||
padding-left: 16px; | ||
width: 32px; | ||
} | ||
|
||
.titlebar svg { | ||
width: auto; | ||
height: 14px; | ||
padding: 3px; | ||
margin-left: 2px; | ||
margin-right: 8px; | ||
margin-bottom: 8px; | ||
overflow: visible; | ||
|
||
path { | ||
opacity: 1; | ||
fill: var(--prime); | ||
} | ||
} | ||
|
||
.titlebar-title { | ||
flex-grow: 1; | ||
padding-left: 10px; | ||
color: var(--icon); | ||
} | ||
|
||
.titlebar-actions { | ||
-webkit-app-region: no-drag; | ||
} | ||
|
||
.titlebar-action { | ||
.icon-hover(); | ||
|
||
color: var(--icon); | ||
cursor: pointer; | ||
margin-right: 16px; | ||
} |
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 was deleted.
Oops, something went wrong.
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
Oops, something went wrong.