-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5071 from fjordllc/main
Release 2022-06-30 04:04:17
- Loading branch information
Showing
99 changed files
with
719 additions
and
582 deletions.
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
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,48 @@ | ||
.a-list-item-badge | ||
+text-block(.625rem, inline-flex $semi-muted-text nowrap 400) | ||
border-radius: .75rem | ||
align-self: flex-start | ||
align-items: center | ||
justify-content: center | ||
position: relative | ||
+size(3.75rem .8125rem) | ||
span | ||
+position(absolute, left 50%, top 50%) | ||
transform: translate(-50%, -50%) scale(.8) | ||
letter-spacing: -.05em | ||
&.is-wip | ||
background-color: $background-semi-shade | ||
color: $semi-muted-text | ||
&.is-unread | ||
background-color: $danger | ||
color: $reversal-text | ||
&.is-serchable | ||
border: solid 1px $muted-text | ||
color: $muted-text | ||
&.is-ended | ||
background-color: #bbbbbb | ||
color: $reversal-text | ||
&.is-report | ||
background-color: #7f6fb7 | ||
color: $reversal-text | ||
&.is-practice | ||
background-color: #79bcc3 | ||
color: $reversal-text | ||
&.is-question | ||
background-color: #de9172 | ||
color: $reversal-text | ||
&.is-page | ||
background-color: #9fc593 | ||
color: $reversal-text | ||
&.is-announcement | ||
background-color: #f7cd5b | ||
color: $default-text | ||
&.is-event | ||
background-color: #ef9da8 | ||
color: $reversal-text | ||
&.is-product | ||
background-color: #909b3c | ||
color: $reversal-text | ||
&.is-user | ||
background-color: #7cbd9c | ||
color: $reversal-text |
71 changes: 8 additions & 63 deletions
71
app/assets/stylesheets/blocks/card-list/_card-list-item-title.sass
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
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 was deleted.
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
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 @@ | ||
.page-filter |
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
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
# frozen_string_literal: true | ||
|
||
class API::UserIconUrlsController < API::BaseController | ||
skip_before_action :require_login_for_api | ||
|
||
def index | ||
@users = User.with_attached_avatar | ||
@users = User.with_attached_avatar.select(:id, :login_name).where(id: ActiveStorage::Attachment.select(:record_id).where(record_type: 'User')) | ||
end | ||
end |
Oops, something went wrong.