This repository was archived by the owner on Jun 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
Merged
Changes from 85 commits
Commits
Show all changes
87 commits
Select commit
Hold shift + click to select a range
83f1607
[ui] make avatar adder and avatar same width
brillout a8ccc01
improve ui
brillout 365d00e
improve ui
brillout 381a990
improve ui
brillout 4b5fb40
improve ui
brillout fc7c164
improve ui
brillout 40af5ee
improve ui
brillout 57e6852
improve ui
brillout d0e426d
improve ui
brillout 6eea7d3
improve ui
brillout 3c3a351
improve ui
brillout 2c40c5b
improve ui
brillout 4f6f561
improve ui
brillout 510d5c7
improve ui
brillout 5a42b4e
improve ui
brillout 5bc6a5c
improve ui
brillout ad94f9c
improve ui
brillout 6b76dab
improve ui
brillout 77f2595
improve ui
brillout 099f0fb
improve ui
brillout c797af8
improve ui
brillout 6ce5d9c
improve ui
brillout 9f8be5e
improve ui
brillout 09290b5
improve ui
brillout 445cb53
improve ui
brillout 02e0a84
improve ui
brillout 1d81664
improve ui
brillout ac97d0b
improve ui
brillout c1655c0
improve ui
brillout b71564f
improve ui
brillout 0168e21
improve ui
brillout 8b340e5
improve ui
brillout 39e9378
improve ui
brillout 1c1d334
improve ui
brillout f7c34b7
improve ui
brillout d4d7354
feedback
lourot 4ee6b25
improve ui
brillout 7203e65
improve ui
brillout 9737c50
improve ui
brillout 37fabba
improve ui
brillout 34eddea
improve ui
brillout 70c6182
improve ui
brillout c81a299
improve ui
brillout 79eb28a
improve ui
brillout 08867de
improve ui
brillout 6bbcd38
improve ui
brillout 6ff8d25
improve ui
brillout 73223be
improve ui
brillout 70be556
improve ui
brillout d719508
improve ui
brillout bed8712
improve ui
brillout 6079d7e
improve ui
brillout ee1f417
improve ui - new ranking calculation
brillout f2df734
improve ui - new ranking calculation
brillout 6aa393e
improve ui - new ranking calculation
brillout 61ad6d4
feedback
lourot b830def
minor link hovering improvement
lourot 9fe8213
feedback
lourot a9baa86
improve ui - new ranking calculation
brillout 574444a
improve ui - new ranking calculation
brillout c975bd8
improve ui -- add collapsible icon
brillout fefc66e
feedback
lourot 57e661f
improve ui
brillout 6a6b265
improve ui
brillout a469869
improve ui
brillout 568601c
improve ui
brillout 9782d1c
improve ui
brillout d2f9297
improve ui
brillout daa1867
feedback
lourot a0af80c
improve ui
brillout 48597cd
improve ui
brillout 390ed1e
improve ui - clean code
brillout 79b4bff
improve ui - clean code
brillout 38d60d5
improve ui - clean code
brillout 131713c
improve ui - clean code
brillout 0e6331f
improve ui - clean code
brillout de5fbaa
improve ui - clean code
brillout b3a998b
improve ui - clean code
brillout cb711b0
improve ui - clean code
brillout 8eeeb7a
improve ui -- updated screenshots
brillout 695fe26
improve ui -- updated screenshots
brillout e616d9a
Cleaned up spelling dictionary.
lourot adfb957
Adapted markdown to screenshot.
lourot 0766a69
Fixed typo.
lourot 6d6dda5
Simplified CSS.
lourot 3314a3c
[ui] minor
brillout 35f0bde
[ui] fallback to org avatar when no repo avatar set for one-liner con…
brillout 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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,8 +1,32 @@ | ||
| .avatar { | ||
| max-width: 100%; | ||
| height: auto; | ||
| display: inline-flex; | ||
| align-items: center; | ||
| justify-content: center; | ||
| } | ||
|
|
||
| .avatar-small { | ||
| float: left; | ||
| width: 50px; | ||
| height: 50px; | ||
| margin-right: .5em; | ||
| margin-bottom: -.5em; | ||
| } | ||
|
|
||
| .avatar-add { | ||
| border-width: medium !important; | ||
| text-align: center; | ||
| opacity: 0.55; | ||
| transition: opacity 0.5s; | ||
| } | ||
| .avatar-add:hover { | ||
| opacity: 1; | ||
| } | ||
| .avatar-add-sign { | ||
| display: inline-block; | ||
| vertical-align: middle; | ||
| background-color: #eee; | ||
| width: 24px; | ||
| margin-top: -5px; | ||
| } |
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 |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| import React from 'react'; | ||
|
|
||
| export default AvatarAdd; | ||
|
|
||
| function AvatarAdd() { | ||
| return ( | ||
| <div className="avatar border border-white rounded avatar-small avatar-add"> | ||
| <span className="avatar-add-sign text-gray">+</span> | ||
| </div> | ||
| ); | ||
| } |
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
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.