This commit is contained in:
Jordan Vidrine
2025-02-24 18:39:00 -06:00
parent 478926952e
commit bb70c950cd
4 changed files with 52 additions and 10 deletions
+1
View File
@@ -6,6 +6,7 @@
@import "search-banner"; @import "search-banner";
@import "nav-pills"; @import "nav-pills";
@import "buttons"; @import "buttons";
@import "chat";
.list-controls .combo-box .combo-box-header, .list-controls .combo-box .combo-box-header,
.select-kit.is-expanded .select-kit-body, .select-kit.is-expanded .select-kit-body,
+10
View File
@@ -0,0 +1,10 @@
.c-navbar-container {
background-color: light-dark(#ffffff, #000000);
border-top-right-radius: var(--d-border-radius-large);
border-top-left-radius: var(--d-border-radius-large);
}
.chat-message-container,
.chat-transcript {
background: transparent;
}
+3
View File
@@ -1,3 +1,6 @@
.d-header { .d-header {
box-shadow: none; box-shadow: none;
} }
.desktop-view .navigation-topics .d-header {
background: transparent;
}
+38 -10
View File
@@ -1,10 +1,10 @@
#main-outlet-wrapper #main-outlet { body:not(.archetype-regular, .has-full-page-chat)
margin-top: 20px; #main-outlet-wrapper
#main-outlet {
height: 85vh; height: 85vh;
overflow: scroll; overflow: scroll;
padding: 16px 24px; padding: 16px 24px;
width: calc(100% - 48px); border-radius: var(--d-border-radius-large);
max-width: 1000px;
background: radial-gradient( background: radial-gradient(
600px 600px at 50% 75%, 600px 600px at 50% 75%,
rgba(188, 241, 238, 0.2), rgba(188, 241, 238, 0.2),
@@ -16,15 +16,43 @@
rgba(255, 255, 255, 0) rgba(255, 255, 255, 0)
); );
background-color: light-dark(#ffffff, #000000); background-color: light-dark(#ffffff, #000000);
}
#main-outlet-wrapper #main-outlet {
border-radius: var(--d-border-radius-large); border-radius: var(--d-border-radius-large);
border: 1px solid var(--primary-low); // padding: 0 24px;
box-shadow: 0 10px 24px 4px #e2e8f8, 0 0 0 2px #e2e8f8; box-shadow: 0 10px 24px 4px #e2e8f8, 0 0 0 3px #e2e8f8,
0 0 0 1px var(--primary-low);
width: calc(100% - 48px);
max-width: 1000px !important;
background: radial-gradient(
600px 600px at 50% 75%,
rgba(188, 241, 238, 0.2),
rgba(255, 255, 255, 0.2)
),
radial-gradient(
600px 600px at 75% 50%,
rgba(162, 165, 225, 0.2),
rgba(255, 255, 255, 0)
);
background-color: light-dark(#ffffff, #000000);
} }
.archetype-regular #main-outlet-wrapper #main-outlet { #topic-title {
background: light-dark(#ffffff, #000000); z-index: 999;
margin-bottom: 1em;
padding: 0.5em 24px;
position: sticky;
top: 0;
background-image: linear-gradient(
to right,
rgba(255, 255, 255, 1) 50%,
rgba(255, 255, 255, 0) 100%
);
} }
body.has-full-page-chat #main-outlet-wrapper #main-outlet { .container.posts,
max-width: 1000px; .more-topics__container,
#topic-footer-buttons {
padding: 0 24px;
} }