-
-
Notifications
You must be signed in to change notification settings - Fork 775
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
Town Square MVP #5744
Merged
Merged
Town Square MVP #5744
Changes from 42 commits
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
05196a6
town square initial commit
owocki 17131eb
feed is working
owocki e6d96b1
adds commenting/liking functionality
owocki 8100c41
make fix
owocki 0763287
resets migrations + also starts to lay the groundwork for offers
owocki a4141f8
show offers on townsquare
owocki 89a6f95
fix for activity stream
owocki 334033f
offers
owocki 37ab937
timers
owocki 957aa1a
UI for town square/ actions
owocki 5883c12
adds flag feature + also limits text box input
owocki f3f721b
a few small fixes
owocki 1272622
make fix
owocki 69d9f7f
responsiveness
owocki 8535a5c
town square emails now hooked up"
owocki bb702cc
action views
owocki c684e3f
preview offer button
owocki d015367
activity feed links
owocki 81c6891
comment emails
owocki 969e374
make fix
owocki 8f4aadf
merge conflicts
owocki e13b4e1
live updates on town square
owocki 247e83f
make fix
owocki f8fa9b2
special announcements
owocki 437e19b
support for activity feed view counts
owocki a2f4aef
cleanup
owocki d054a6a
random QA fixes
owocki 545419a
javascript updates on activity
owocki a924c99
unfurl links for town square
owocki 12764a4
make fix
owocki cb44ead
Merge branch 'stable' into kevin/townsquare
owocki 5fb1259
make fix
owocki e1e3490
html cleanup
owocki dfe444d
submit actions via the web
owocki 3288bbb
code
owocki 748d396
Merge branch 'master' into kevin/townsquare
owocki 52b6426
Merge branch 'master' into kevin/townsquare
owocki a54f11e
activity feed on grants profile
owocki 8a5f911
ability to write on each others walls, flag profiles
owocki 25141ea
activity tabs on kudos
owocki ded9e88
staff can INSTANTly remove an item by flagging it
owocki abd3563
DL code review
owocki 39564e0
wall posts
owocki eec30f9
typo
owocki 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 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,171 @@ | ||
|
||
.announce-bot { | ||
margin-top: 10px; | ||
text-align: center; | ||
} | ||
|
||
.announce-bot img { | ||
width: 200px; | ||
max-width: 200px; | ||
} | ||
|
||
.announce-bot2 img { | ||
width: 250px; | ||
max-width: 250px; | ||
} | ||
|
||
.announce-bot3 img { | ||
width: 250px; | ||
max-width: 250px; | ||
} | ||
|
||
.announce-bot4 img { | ||
width: 250px; | ||
max-width: 250px; | ||
} | ||
|
||
.announce { | ||
text-align: center; | ||
border-radius: 5px; | ||
background-color: #fdedee; | ||
padding: 3px; | ||
position: relative; | ||
margin-top: 25px; | ||
margin-bottom: 25px; | ||
margin-left: auto; | ||
margin-right: auto; | ||
width: 90%; | ||
} | ||
|
||
.announce:after { | ||
content: ''; | ||
position: absolute; | ||
top: 0; | ||
left: 50%; | ||
width: 0; | ||
height: 0; | ||
border: 20px solid transparent; | ||
border-bottom-color: #fdedee; | ||
border-top: 0; | ||
border-left: 0; | ||
margin-left: -10px; | ||
margin-top: -20px; | ||
} | ||
|
||
.announce a { | ||
color: black; | ||
} | ||
.announce a.btn { | ||
background-color: #f2c3c4; | ||
} | ||
.announce a.decline { | ||
font-style: italic; | ||
} | ||
|
||
.announce h4 { | ||
border-bottom: 3px solid #fdedee; | ||
} | ||
|
||
.announce5 h4 { | ||
border-bottom: 3px solid #def390 !important; | ||
} | ||
|
||
.announce5:after { | ||
border-bottom-color: #def390 !important; | ||
} | ||
|
||
.announce5 { | ||
background-color: #def390 !important; | ||
} | ||
|
||
.announce5 a.btn { | ||
background-color: #cee370 !important; | ||
} | ||
|
||
.announce4 h4 { | ||
border-bottom: 3px solid #fce5ac !important; | ||
} | ||
|
||
.announce4:after { | ||
border-bottom-color: #fce5ac !important; | ||
} | ||
|
||
.announce4 { | ||
background-color: #fce5ac !important; | ||
} | ||
|
||
.announce4 a.btn { | ||
background-color: #dcc58c !important; | ||
} | ||
|
||
.announce3 h4 { | ||
border-bottom: 3px solid #d0f9f4 !important; | ||
} | ||
|
||
.announce3:after { | ||
border-bottom-color: #d0f9f4 !important; | ||
} | ||
|
||
.announce3 { | ||
background-color: #d0f9f4 !important; | ||
} | ||
|
||
.announce3 a.btn { | ||
background-color: #b0d9d4 !important; | ||
} | ||
|
||
.announce2 h4 { | ||
border-bottom: 3px solid #a4affc !important; | ||
} | ||
|
||
.announce2:after { | ||
border-bottom-color: #a4affc !important; | ||
} | ||
|
||
.announce2 { | ||
background-color: #a4affc !important; | ||
} | ||
|
||
.announce2 a.btn { | ||
background-color: #849ffc !important; | ||
} | ||
|
||
.announce6 h4 { | ||
border-bottom: 3px solid #fde9ed !important; | ||
} | ||
|
||
.announce6:after { | ||
border-bottom-color: #fde9ed !important; | ||
} | ||
|
||
.announce6 { | ||
background-color: #fde9ed !important; | ||
} | ||
|
||
.announce6 a.btn { | ||
background-color: #ddb9bd !important; | ||
} | ||
|
||
#announce { | ||
width: 9%; | ||
display: block; | ||
background-color: #d9d8e7; | ||
border-radius: 5px; | ||
text-align: center; | ||
margin-top: 5px; | ||
padding-top: 0px; | ||
} | ||
|
||
#announce img { | ||
margin: 0px auto; | ||
margin-top: -150px; | ||
margin-bottom: -50px; | ||
width: 200px; | ||
height: 200px; | ||
} | ||
|
||
.announce a.btn:hover { | ||
color: black; | ||
font-weight: bold; | ||
background-color: #f5d3d4; | ||
} |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
.grant_details .box { | ||
.grant_details span.box { | ||
width: 20px; | ||
height: 20px; | ||
margin-right: 10px; | ||
|
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.
typo? "inex"
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.
fixed