-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- β¨ Allow recursivity for input. - β¨ Add listen when files added in inputs. - β¨ Add live refresh in UI. - π UI improvments. - π New app icon. - π Clean and split CSS files (optimising). - π©Ή change RwLock to async, adapt code for it. - β¬οΈ Dependencies upgrades.
- Loading branch information
Showing
26 changed files
with
928 additions
and
459 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/** @format */ | ||
|
||
#ai_prompt_page #ai_prompt { | ||
white-space: pre-wrap; | ||
} |
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,118 @@ | ||
/** @format */ | ||
|
||
body#index { | ||
margin: 0; | ||
padding: 0.5em; | ||
width: calc(100vw - 2 * 0.5em); | ||
height: calc(100vh - 2 * 0.5em); | ||
overflow: hidden; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: flex-start; | ||
align-items: center; | ||
} | ||
|
||
body#index nav, | ||
body#index #move-bar, | ||
body#index #current-path { | ||
width: 95vw; | ||
margin: 0; | ||
text-align: center; | ||
z-index: 50; | ||
} | ||
|
||
body#index nav .spacer { | ||
margin: 0 1.5vw; | ||
color: #aaa; | ||
font-size: 0.5em; | ||
} | ||
|
||
body#index nav button, | ||
body#index #move-bar button, | ||
body#index #current-path { | ||
border: 1px solid rgba(0, 0, 0, 0); | ||
border-radius: 0.5vw; | ||
padding: 0.3vw; | ||
margin: 0.2em 0.1em; | ||
opacity: 0.75; | ||
} | ||
|
||
body#index nav button:disabled, | ||
body#index #move-bar button:disabled, | ||
body#index #current-path:disabled { | ||
opacity: 0.1; | ||
} | ||
|
||
body#index nav button:hover:not(:disabled), | ||
body#index #move-bar button:hover:not(:disabled), | ||
body#index #current-path:hover:not(:disabled) { | ||
border: 1px solid rgba(0, 0, 0, 1); | ||
opacity: 1; | ||
} | ||
|
||
body#index nav button:hover, | ||
body#index #move-bar button:hover { | ||
cursor: pointer; | ||
} | ||
|
||
body#index #position_counter { | ||
font-family: monospace, consolas; | ||
} | ||
|
||
#index #previous, | ||
#index #next { | ||
position: absolute; | ||
z-index: 20; | ||
top: 45vh; | ||
height: 10vh; | ||
min-width: 3em; | ||
cursor: pointer; | ||
padding: 0; | ||
text-align: center; | ||
} | ||
|
||
#index #previous { | ||
left: 1vw; | ||
} | ||
|
||
#index #next { | ||
right: 1vw; | ||
} | ||
|
||
#index #preview_container { | ||
width: 100%; | ||
height: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
#index #preview_container #preview { | ||
max-width: 95%; | ||
max-height: 75vh; | ||
} | ||
|
||
/* --------------------------------------------------- */ | ||
|
||
#index #ai_prompt #ai_content { | ||
visibility: hidden; | ||
background-color: black; | ||
opacity: 0.9; | ||
color: #fff; | ||
border-radius: 1em; | ||
padding: 1em; | ||
|
||
position: fixed; | ||
top: 10vh; | ||
left: 10vw; | ||
width: 80vw; | ||
height: 80vh; | ||
z-index: 100; | ||
|
||
white-space: pre-wrap; | ||
} | ||
|
||
#index #ai_prompt:hover #ai_content { | ||
visibility: visible; | ||
} |
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.