-
Notifications
You must be signed in to change notification settings - Fork 0
Us/7 : Creating Talk Page #5
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
Open
capelliludivine
wants to merge
19
commits into
master
Choose a base branch
from
us/7
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 all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
d1a2259
Add FormTwo
9838cea
Indentation to FormTwo
34eb985
To correct
c6ced8c
image speaker-ine changement
a6611ed
add formData on FormTwo
3e699e1
Add FormData on FormTwo
a35d8c2
fix(app): Fix speaker preview
AamuLumi c6ae99a
merge(): Merge conflicts
AamuLumi 55cdd6e
fix(app): Fix bad speaker image
AamuLumi eb2e767
Add URL speaker
cdf743f
Merge branch 'us/7' of https://github.com/kb-dev/talkien-web into us/7
127cd46
Change button name
e2d96bc
Correct Error on us/7
f2e2913
delete useless function
d355690
changes
8ef1075
changes
7d60674
Correct bug on TalkForm
3933680
Resizing TalkForm on TalkCreationPage and Solving bugs on input
350f946
Add SpeakerBlock and management on button remove
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
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -11,7 +11,8 @@ | |
| } | ||
| } | ||
|
|
||
| .add-button { | ||
| .add-button, .delete-button { | ||
| width: auto; | ||
| background-color: white; | ||
| } | ||
| } | ||
This file contains hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -120,9 +120,7 @@ | |
| white-space: nowrap; | ||
| } | ||
|
|
||
| .input-component { | ||
| width: 300px; | ||
| } | ||
|
|
||
|
|
||
| .table-cell { | ||
| .input-component { | ||
|
|
||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,67 +1,75 @@ | ||
| .select { | ||
| position: relative; | ||
| user-select: none; | ||
| position: relative; | ||
| user-select: none; | ||
|
|
||
| &-clickable-view { | ||
| cursor: pointer; | ||
| padding: 7px 12px; | ||
| padding-right: 40px; | ||
| border: 1px solid var(--input-border-color); | ||
| border-radius: 2px; | ||
| box-sizing: border-box; | ||
| position: relative; | ||
| svg { | ||
| .internal-path { | ||
| fill: white; | ||
| } | ||
| } | ||
|
|
||
| &.with-dropdown { | ||
| border-radius: 2px 2px 0 0; | ||
| } | ||
| &-clickable-view { | ||
| cursor: pointer; | ||
| padding: 7px 12px; | ||
| padding-right: 40px; | ||
| border: 2px solid #f0f0f0; | ||
| border-top: 0px; | ||
| border-left: 0px; | ||
| border-right: 0px; | ||
| box-sizing: border-box; | ||
| position: relative; | ||
|
|
||
| &:focus { | ||
| outline-color: var(--main-color); | ||
| } | ||
| &.with-dropdown { | ||
| border-radius: 2px 2px 0 0; | ||
| } | ||
|
|
||
| .svg-icon { | ||
| position: absolute; | ||
| right: 8px; | ||
| margin: 0; | ||
| width: 16px; | ||
| height: 16px; | ||
| top: 6px; | ||
| } | ||
| } | ||
| &:focus { | ||
| outline-color: var(--main-color); | ||
| } | ||
|
|
||
| @keyframes selectDropdownAppear { | ||
| 0% { | ||
| opacity: 0; | ||
| } | ||
| .svg-icon { | ||
| position: absolute; | ||
| right: 8px; | ||
| margin: 0; | ||
| width: 16px; | ||
| height: 16px; | ||
| top: 6px; | ||
| } | ||
| } | ||
|
|
||
| 100% { | ||
| opacity: 1; | ||
| } | ||
| } | ||
| @keyframes selectDropdownAppear { | ||
| 0% { | ||
| opacity: 0; | ||
| } | ||
|
|
||
| .select-dropdown { | ||
| position: absolute; | ||
| width: 100%; | ||
| border-radius: 0 0 2px 2px; | ||
| z-index: 10; | ||
| max-height: 0; | ||
| animation: selectDropdownAppear 0.25s ease-in-out forwards; | ||
| 100% { | ||
| opacity: 1; | ||
| } | ||
| } | ||
|
|
||
| .option { | ||
| padding: 8px; | ||
| width: 100%; | ||
| box-sizing: border-box; | ||
| background-color: var(--select-option-background-color); | ||
| cursor: pointer; | ||
| transition: var(--t-fastest-ease-in-out); | ||
| .select-dropdown { | ||
| position: absolute; | ||
| width: 100%; | ||
| border-radius: 0 0 2px 2px; | ||
| z-index: 10; | ||
| max-height: 0; | ||
| animation: selectDropdownAppear 0.25s ease-in-out forwards; | ||
|
|
||
| &:hover { | ||
| background-color: var(--select-option-hover-background-color); | ||
| } | ||
| .option { | ||
| padding: 8px; | ||
| width: 100%; | ||
| box-sizing: border-box; | ||
| background-color: #2f2429; | ||
| cursor: pointer; | ||
| transition: all 1s ease; | ||
|
|
||
| &:last-child { | ||
| border-radius: 0 0 2px 2px; | ||
| } | ||
| } | ||
| } | ||
| &:hover { | ||
| background-color: #2f2429; | ||
| } | ||
|
|
||
| &:last-child { | ||
| border-radius: 0 0 2px 2px; | ||
| } | ||
| } | ||
| } | ||
| } |
This file contains hidden or 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 hidden or 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,11 +1,12 @@ | ||
| .textarea { | ||
| border-radius: 8px; | ||
| border: none; | ||
| background-color: var(--input-background-color); | ||
| border: 1px solid var(--input-border-color); | ||
| color: var(--input-font-color); | ||
| color: white; | ||
| border-radius: 2px; | ||
| font-family: 'Roboto'; | ||
| padding: 7px 12px; | ||
| box-sizing: border-box; | ||
| border: solid 2px #f0f0f0; | ||
| background-color: rgba(0, 0, 0, 0.5); | ||
|
|
||
| } |
This file contains hidden or 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.
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.
Une raison pour rajouter un return par défaut ?
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.
Si on ne le met pas il y a une erreur