-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update dependencies Signed-off-by: Axel Boberg <[email protected]> * Replace electron-packager with @electron/packager Signed-off-by: Axel Boberg <[email protected]> * Add a script for installing plugin dependencies regardless of OS Signed-off-by: Axel Boberg <[email protected]> * Use npm install rather than npm ci Signed-off-by: Axel Boberg <[email protected]> * Fix an issue causing the identity to not be set Signed-off-by: Axel Boberg <[email protected]> * Start tweaking UI to look more modern Signed-off-by: Axel Boberg <[email protected]> * Style tabs Signed-off-by: Axel Boberg <[email protected]> * Style the live switch of the caspar plugin Signed-off-by: Axel Boberg <[email protected]> * Update copy Signed-off-by: Axel Boberg <[email protected]> * Add a grid behind widgets in the edit mode Signed-off-by: Axel Boberg <[email protected]> * Tweak the border radius of popovers Signed-off-by: Axel Boberg <[email protected]> * Tweak the design of the inspector Signed-off-by: Axel Boberg <[email protected]> * Increase the opacity of the editing grid background Signed-off-by: Axel Boberg <[email protected]> * Add a border to the inspector form header Signed-off-by: Axel Boberg <[email protected]> * Set the correct flex-shrink modes for the main header and frame headers Signed-off-by: Axel Boberg <[email protected]> * Update screenshot Signed-off-by: Axel Boberg <[email protected]> * Update readme header Signed-off-by: Axel Boberg <[email protected]> * Add a link to releases Signed-off-by: Axel Boberg <[email protected]> * Delete screenshot Signed-off-by: Axel Boberg <[email protected]> * Add screenshot back Signed-off-by: Axel Boberg <[email protected]> --------- Signed-off-by: Axel Boberg <[email protected]> Signed-off-by: Axel Boberg <[email protected]> Co-authored-by: Axel Boberg <[email protected]>
- Loading branch information
1 parent
28b7311
commit 77b866f
Showing
25 changed files
with
308 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
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,24 @@ | ||
.Grid-background { | ||
position: absolute; | ||
display: flex; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
.Grid-backgroundCol { | ||
position: relative; | ||
display: flex; | ||
width: 100%; | ||
height: 100%; | ||
|
||
flex-direction: column; | ||
} | ||
|
||
.Grid-backgroundRow { | ||
width: 100%; | ||
height: 100%; | ||
|
||
border: 0.5px solid var(--base-color--shade-3pct); | ||
} |
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,22 @@ | ||
import React from 'react' | ||
import './background.css' | ||
|
||
export function GridBackground ({ cols = 1, rows = 1}) { | ||
return ( | ||
<div className='Grid-background'> | ||
{ | ||
Array(cols).fill(undefined).map(i => { | ||
return ( | ||
<div key={i} className='Grid-backgroundCol'> | ||
{ | ||
Array(rows).fill(undefined).map(j => { | ||
return <div key={`${i}:${j}`} className='Grid-backgroundRow' /> | ||
}) | ||
} | ||
</div> | ||
) | ||
}) | ||
} | ||
</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
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 |
---|---|---|
|
@@ -3,6 +3,9 @@ | |
width: 100%; | ||
height: 100%; | ||
|
||
padding: 3px; | ||
box-sizing: border-box; | ||
|
||
flex-grow: 1; | ||
} | ||
|
||
|
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
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.