* Remove Connect
* Remove more Connect specs
* Remove a lot more Connect code
* 🚮
* It all has to go
* Explicitly add httpclient
* Update application layout
* Remove messages association from User
* Start fixing specs
* reintroduce util function and refactor references
* Remove Connect Cypress test
* Fix more specs
* Remove Connect from listings
* Ignore contact_via_connect column on listings
* Remove contact_via_connect usages
* Ignore mod_chat_channel_id on tags
* Drop Connect tables
* Remove email_connect_messages from user notification settings
* Re-add httpclient 2.8.3
This was mistakenly removed as a merge conflict
* Don't need to exclude removed chat channel file
* Remove unneeded style for chat channels
* Remove unneeded channel list prop type
* Remove chat channels index/connect-link from getPageEntries
* Re-add comment from httpclient in Gemfile
* Remove connect references from mailers
Tag Moderators no longer have a chat channel
No longer will users be notified about new messages (there won't be
any)
No longer will users be notified about channel invites (you can't
invite anyone anymore)
* Don't configure Pusher and remove PUSHER_* from .env_sample
since it's removed from gemfile, the Pusher constant will not resolve, if this is
configured in the environment variables we'll fail to boot.
Co-authored-by: Suzanne Aitchison <suzanne@forem.com>
Co-authored-by: Dan Uber <dan@forem.com>
105 lines
1.6 KiB
SCSS
105 lines
1.6 KiB
SCSS
@import 'config/import';
|
|
|
|
@import 'variables';
|
|
@import 'mixins';
|
|
|
|
#audiocontent {
|
|
display: none;
|
|
}
|
|
|
|
*:focus {
|
|
&:active {
|
|
outline: 0;
|
|
}
|
|
}
|
|
|
|
*:focus:not(.focus-visible) {
|
|
outline: none;
|
|
}
|
|
|
|
.modal-open {
|
|
margin: 0;
|
|
overflow: hidden;
|
|
overflow-y: hidden;
|
|
height: 90vh;
|
|
}
|
|
|
|
div {
|
|
&.field,
|
|
&.actions {
|
|
margin-bottom: 5px;
|
|
}
|
|
}
|
|
|
|
#instantclick {
|
|
display: none;
|
|
}
|
|
|
|
.partner-image-dark-mode {
|
|
display: none !important;
|
|
}
|
|
|
|
body.dark-theme {
|
|
.on-page-nav-butt img,
|
|
.icon-img,
|
|
.reaction-button:not(.reacted) img,
|
|
.image-upload-button button,
|
|
.icon-image,
|
|
.dev-badge,
|
|
.message__actions img {
|
|
-webkit-filter: invert(95%);
|
|
filter: invert(95%);
|
|
}
|
|
.ltag__tag {
|
|
border-color: white !important;
|
|
box-shadow: 3px 3px 0px #fff !important;
|
|
}
|
|
.partner-image-dark-mode {
|
|
display: block !important;
|
|
}
|
|
.partner-image-light-mode {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
.broadcast-wrapper {
|
|
box-sizing: border-box;
|
|
display: none;
|
|
padding: var(--su-2) var(--su-4);
|
|
position: fixed;
|
|
text-align: center;
|
|
width: 100%;
|
|
z-index: var(--z-sticky);
|
|
|
|
.static-header & {
|
|
position: relative;
|
|
}
|
|
}
|
|
|
|
.broadcast-visible {
|
|
display: flex;
|
|
}
|
|
|
|
.broadcast-data {
|
|
flex-grow: 1;
|
|
align-self: center;
|
|
}
|
|
|
|
.trusted-visible-block {
|
|
display: none !important;
|
|
}
|
|
|
|
body.trusted-status-true .trusted-visible-block {
|
|
display: flex !important;
|
|
}
|
|
|
|
// The .admin-help-button class is included in this file since it
|
|
// is referenced in both the admin and application layout.
|
|
|
|
.admin-help-button {
|
|
margin-bottom: env(safe-area-inset-bottom);
|
|
|
|
@media (max-width: $breakpoint-m) {
|
|
bottom: calc(var(--header-height) + var(--su-3));
|
|
}
|
|
}
|