-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
who is J(A)SON and why is everybody talking about him #1
Open
SONGOKOMETA
wants to merge
11
commits into
master
Choose a base branch
from
Post
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
713317b
who is J(A)SON and why is everybody talking about him
SONGOKOMETA 7af7711
postownik -> post.svelte, readded authentication
SONGOKOMETA 0e5eace
Changed backgroundlayer margins, added magic buttons
SONGOKOMETA 26583ee
rand()
SONGOKOMETA 8c1718f
small name changes
SONGOKOMETA c7a017b
added status change list, changed class names in main
SONGOKOMETA e47fc59
names gone, grey coloring for disabled attrib
SONGOKOMETA 00df502
added tag thingy, tag and status are in one line
SONGOKOMETA 8e822f0
added dummy dropzone
SONGOKOMETA eb7712a
fixed css, changed status
SONGOKOMETA 7f11f51
complete visual overhaul
SONGOKOMETA File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
<script> | ||
import List from './Panels/List.svelte'; | ||
import { authenticated } from './store.js'; | ||
$: console.log($authenticated); | ||
import Postownik from './Panels/Postownik.svelte'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Tu już ci mówiłem, żeby nazwać to |
||
</script> | ||
|
||
{#if $authenticated} | ||
<List /> | ||
{/if} | ||
<Postownik /> | ||
|
||
<style> | ||
</style> |
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,72 @@ | ||
<script> | ||
</script> | ||
|
||
<div class="postownik__backgroundlayer"> | ||
<div class="postownik__content"> | ||
<div class="postownik__content--main"> | ||
<h3>Postownik</h3> | ||
</div> | ||
<div class="postownik__content--title"> | ||
<input class="postownik--title" type="text" placeholder="lorem" /> | ||
</div> | ||
<div class="postownik__content--textarea"> | ||
<textarea | ||
class="postownik--textarea" | ||
wrap="hard" | ||
rows="15" | ||
cols="55" | ||
placeholder="ipsum" | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<style> | ||
h3 { | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
.postownik__backgroundlayer { | ||
margin: 10px 200px; | ||
} | ||
|
||
.postownik__content { | ||
width: 600px; | ||
color: var(--light); | ||
} | ||
|
||
.postownik__content--main, | ||
.postownik__content--title, | ||
.postownik__content--textarea { | ||
width: 100%; | ||
cursor: default; | ||
margin:5px 0; | ||
} | ||
.postownik--title { | ||
position: static; | ||
outline: none; | ||
resize: none; | ||
font-family: inherit; | ||
width: 250px; | ||
padding:4px; | ||
border: 1px solid var(--grey); | ||
border-radius: 0; | ||
cursor: inherit; | ||
background-color: var(--light); | ||
color:black; | ||
} | ||
|
||
.postownik--textarea { | ||
position: static; | ||
box-shadow: inherit; | ||
line-height: 1.5; | ||
border: 1px solid var(--grey); | ||
outline: none; | ||
resize: none; | ||
width: 100%; | ||
padding:4px; | ||
font-family: inherit; | ||
background-color: var(--light); | ||
} | ||
</style> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Obaj edytowaliście
App.svelte
xD będzie konflikt. A ta autentykacja będzie musiała się odbywać w głównym pliku więc nie ma sensu tego wyrzucać. Chociaż tutaj oczywiście wrzuciłem to dla przykładu żeby dać hint gdzie to się powinno dziać, ale będzie to wyglądać trochę poważniej xD