847 lines
15 KiB
SCSS
847 lines
15 KiB
SCSS
// Login CTA
|
|
#login-message {
|
|
display: none;
|
|
}
|
|
|
|
html.anon {
|
|
body:not(.category-resources) {
|
|
// Display this message on all pages except in Community Resources
|
|
#login-message {
|
|
text-align: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin: 16px 0;
|
|
|
|
a:hover {
|
|
color: var(--secondary-very-high);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Login form
|
|
.login-right-side {
|
|
display: none;
|
|
}
|
|
|
|
// Header image above nav bar
|
|
.outer {
|
|
padding-top: 1.5rem;
|
|
padding-bottom: 1.5rem;
|
|
display: flex;
|
|
justify-content: center;
|
|
background-color: var(--header_background);
|
|
}
|
|
|
|
.top-header-image {
|
|
background-image: url($OrcasHub-Top-Logo);
|
|
}
|
|
|
|
// Hide the default logo in the header bar
|
|
#site-logo,
|
|
.home-logo-wrapper-outlet {
|
|
display: none;
|
|
}
|
|
|
|
// custom search banner customizations
|
|
.custom-search-banner-wrap {
|
|
margin: 0 auto !important;
|
|
max-width: unset;
|
|
color: var(--secondary);
|
|
|
|
h1 {
|
|
line-height: var(--line-height-small);
|
|
|
|
@include breakpoint("large", min-width) {
|
|
font-size: 4em;
|
|
}
|
|
}
|
|
|
|
p {
|
|
margin-top: 0.5em;
|
|
margin-bottom: 2em;
|
|
|
|
@include breakpoint("large", min-width) {
|
|
font-size: var(--font-up-1);
|
|
}
|
|
}
|
|
|
|
.btn {
|
|
height: 100%;
|
|
}
|
|
|
|
.search-menu input[type="text"] {
|
|
border: 1px solid transparent;
|
|
border-radius: 0.25em;
|
|
min-height: 40px;
|
|
|
|
&:focus {
|
|
outline: 3px solid rgba(var(--primary-rgb), 0.35);
|
|
}
|
|
}
|
|
|
|
.widget-link.show-help {
|
|
color: rgba(var(--primary-rgb), 0.75);
|
|
border-radius: 0.5em;
|
|
padding: 0.5em;
|
|
background-color: rgba(var(--secondary-rgb), 0.25);
|
|
|
|
&:hover {
|
|
color: var(--primary);
|
|
}
|
|
}
|
|
|
|
.search-menu .search-input {
|
|
border-color: var(--tertiary-hover);
|
|
outline: 1px solid var(--tertiary-hover);
|
|
}
|
|
|
|
.results {
|
|
top: 43px;
|
|
border-radius: 0.25em;
|
|
}
|
|
|
|
.search-context {
|
|
top: 3.25em;
|
|
right: 1em;
|
|
}
|
|
}
|
|
|
|
.search-input {
|
|
border-radius: 0.25em;
|
|
}
|
|
|
|
.display-search-banner {
|
|
#main-outlet {
|
|
padding-top: 2em;
|
|
}
|
|
}
|
|
|
|
// Ideally the search banner component should be set to use the below-site-header outlet,
|
|
// but this ensures the default works too
|
|
.above-main-container-outlet.search-banner {
|
|
.custom-search-banner-wrap {
|
|
padding: 1em 0 2em;
|
|
color: var(--tertiary);
|
|
|
|
.mobile-view & {
|
|
color: var(--secondary);
|
|
}
|
|
|
|
h1 {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.search-widget {
|
|
margin-top: 2em;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Main customizations
|
|
.alert {
|
|
margin: 1em 0;
|
|
}
|
|
|
|
.topic-list .topic-list-header .topic-list-data,
|
|
.topic-list .topic-list-item .topic-list-data {
|
|
padding: 15px 5px;
|
|
}
|
|
|
|
.navigation-topics .topic-list .topic-list-body .topic-list-data,
|
|
.navigation-topics .topic-list .topic-list-header .topic-list-data {
|
|
flex: unset;
|
|
}
|
|
|
|
.badge-wrapper.box {
|
|
border-radius: 0.25em;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.badge-wrapper.bullet {
|
|
.badge-category-bg {
|
|
border-radius: 0.125em;
|
|
}
|
|
|
|
.badge-category-parent-bg {
|
|
border-top-left-radius: 0.125em;
|
|
border-bottom-left-radius: 0.125em;
|
|
|
|
+ .badge-category-bg {
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
border-top-right-radius: 0.125em;
|
|
border-bottom-right-radius: 0.125em;
|
|
}
|
|
}
|
|
}
|
|
|
|
.discourse-tags {
|
|
gap: 0.5em;
|
|
}
|
|
|
|
.discourse-tag {
|
|
font-size: $font-down-1;
|
|
border-radius: 0.25em;
|
|
padding: 0.15em 0.25em 0.15em 0.35em;
|
|
background-color: var(--primary-low);
|
|
color: var(--primary) !important;
|
|
|
|
&:hover {
|
|
background-color: var(--primary-low-mid);
|
|
color: var(--primary);
|
|
}
|
|
}
|
|
|
|
.discourse-tags .discourse-tag.simple:not(:last-child)::after,
|
|
.list-tags .discourse-tag.simple:not(:last-child)::after,
|
|
.search-category .discourse-tag.simple:not(:last-child)::after {
|
|
content: "";
|
|
margin-left: unset;
|
|
}
|
|
|
|
.topic-list .link-bottom-line .discourse-tag.simple::after,
|
|
.topic-list .link-bottom-line .discourse-tag.box {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.custom-category-boxes {
|
|
.category-box {
|
|
box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px,
|
|
rgba(0, 0, 0, 0) 0px 0px 0px 0px,
|
|
rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
|
|
rgba(0, 0, 0, 0.1) 0px 1px 2px -1px !important;
|
|
}
|
|
|
|
.category-logo {
|
|
height: 100px !important;
|
|
width: 100px !important;
|
|
}
|
|
}
|
|
|
|
|
|
#site-text-logo {
|
|
color: var(--primary);
|
|
}
|
|
|
|
.mobile-view {
|
|
.cm-header-links {
|
|
display: none;
|
|
}
|
|
|
|
.list-controls .nav-pills .drop li:first-of-type {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.not-found-container {
|
|
background-color: var(--secondary);
|
|
}
|
|
|
|
input[type="text"],
|
|
input[type="password"],
|
|
input[type="datetime"],
|
|
input[type="datetime-local"],
|
|
input[type="date"],
|
|
input[type="month"],
|
|
input[type="time"],
|
|
input[type="week"],
|
|
input[type="number"],
|
|
input[type="email"],
|
|
input[type="url"],
|
|
input[type="search"],
|
|
input[type="tel"],
|
|
input[type="color"],
|
|
.select-kit.combo-box .select-kit-header,
|
|
.d-editor-textarea-wrapper,
|
|
div.ac-wrap {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.d-header {
|
|
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
|
|
}
|
|
|
|
.d-header-icons .d-icon {
|
|
border-radius: 100px;
|
|
}
|
|
|
|
.d-header-icons .icon {
|
|
border-radius: 0.25em;
|
|
margin-left: 0.3em;
|
|
border: 1px solid transparent;
|
|
|
|
svg {
|
|
font-size: 1.25em;
|
|
}
|
|
}
|
|
|
|
.d-header-icons .icon img.avatar {
|
|
border-radius: 0.25em;
|
|
}
|
|
|
|
.menu-panel.drop-down {
|
|
margin-top: 1em;
|
|
border-radius: 0.5em;
|
|
border: 1px solid var(--primary-low-mid);
|
|
}
|
|
|
|
.drop-down-mode .d-header-icons .active .icon {
|
|
border: 1px solid transparent;
|
|
|
|
.d-icon {
|
|
color: var(--tertiary);
|
|
}
|
|
}
|
|
|
|
.drop-down-mode .d-header-icons .active .icon:hover {
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.menu-panel .widget-link:hover,
|
|
.menu-panel .widget-link:focus,
|
|
.menu-panel .categories-link:hover,
|
|
.menu-panel .categories-link:focus {
|
|
background-color: rgba(var(--tertiary-rgb), 0.5);
|
|
}
|
|
|
|
.btn:not(.themes-tab, .components-tab),
|
|
.select-kit.dropdown-select-box .dropdown-select-box-header {
|
|
border-radius: .375rem;
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.post-admin-menu.popup-menu {
|
|
.btn.widget-button {
|
|
border-radius: 0;
|
|
}
|
|
}
|
|
|
|
.unread-high-priority-notifications {
|
|
background: var(--quaternary);
|
|
}
|
|
|
|
.timeline-container .topic-timeline .timeline-handle {
|
|
background-color: var(--tertiary);
|
|
}
|
|
|
|
.timeline-container .topic-timeline .timeline-scrollarea {
|
|
border-left-color: var(--tertiary);
|
|
}
|
|
|
|
html {
|
|
body {
|
|
background-color: var(--secondary);
|
|
}
|
|
}
|
|
|
|
html body #main-outlet {
|
|
margin-top: 30px;
|
|
margin-bottom: 50px;
|
|
background: var(--secondary);
|
|
border-radius: .5rem;
|
|
padding: 3em 3em 5%;
|
|
max-width: 1150px;
|
|
padding-bottom: 5% !important; // overriding inline style
|
|
box-shadow:
|
|
0 24px 40px rgba(0, 0, 0, 0.07),
|
|
0 10.8529px 24.1177px rgba(0, 0, 0, 0.0456112),
|
|
0 4.50776px 10.0172px rgba(0, 0, 0, 0.035),
|
|
0 1.63037px 3.62304px rgba(0, 0, 0, 0.0243888);
|
|
|
|
@media screen and (max-width: 700px) {
|
|
padding: 1.5em;
|
|
margin-top: 0;
|
|
}
|
|
|
|
@media screen and (max-width: 1120px) {
|
|
width: 80%;
|
|
}
|
|
|
|
@media screen and (max-width: 1075px) {
|
|
width: 85%;
|
|
}
|
|
|
|
.archetype-regular & {
|
|
min-height: 500px;
|
|
}
|
|
}
|
|
|
|
.nav-pills:not(.user-nav) > li a.active,
|
|
.nav-pills:not(.user-nav) > li > a {
|
|
border-radius: 0.5em;
|
|
}
|
|
|
|
.category-calendar {
|
|
&.before-topic-list-body-outlet {
|
|
display: block;
|
|
}
|
|
background: var(--secondary);
|
|
padding: 1em;
|
|
border-radius: 8px;
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
.discourse-post-event-upcoming-events {
|
|
background: var(--secondary);
|
|
border-radius: 8px;
|
|
padding: 1em;
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
// User directory (people)
|
|
|
|
.users-directory {
|
|
.directory-controls {
|
|
justify-content: right !important;
|
|
}
|
|
|
|
.period-controls {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
// User Card (profile)
|
|
|
|
.user-card {
|
|
.badge-section,
|
|
.metadata-row {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
// Category List
|
|
|
|
.custom-category-boxes-container {
|
|
.custom-category-boxes {
|
|
.category-box {
|
|
border-radius: .5rem !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Hide the "about this category" heading
|
|
.category-heading {
|
|
display: none;
|
|
}
|
|
|
|
// Topic List
|
|
|
|
@keyframes background-fade-highlight {
|
|
0% {
|
|
background-color: var(--highlight-low);
|
|
}
|
|
|
|
100% {
|
|
background-color: var(--secondary);
|
|
}
|
|
}
|
|
|
|
.full-width .contents .topic-list {
|
|
border-collapse: separate;
|
|
border-spacing: 0 0.25em;
|
|
display: contents;
|
|
|
|
.topic-list-header {
|
|
tr {
|
|
display: flex;
|
|
border-bottom: none;
|
|
}
|
|
display: contents;
|
|
|
|
.topic-list-data.default {
|
|
width: 63%;
|
|
}
|
|
|
|
.topic-list-data.posters {
|
|
width: 7%;
|
|
}
|
|
|
|
.topic-list-data.posts {
|
|
width: 15%;
|
|
}
|
|
|
|
.topic-list-data.activity {
|
|
width: 15%;
|
|
}
|
|
}
|
|
|
|
.topic-list-body {
|
|
display: contents;
|
|
|
|
.topic-list-item-separator {
|
|
width: 100%;
|
|
margin: 0.75em 0;
|
|
display: flex;
|
|
|
|
.topic-list-data {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.topic-list-item {
|
|
display: flex;
|
|
margin-bottom: 0.5em;
|
|
background-color: var(--secondary);
|
|
border: 1px solid rgba(var(--primary-rgb), 0.2);
|
|
border-radius: .5rem;
|
|
position: relative;
|
|
transition: box-shadow 100ms ease-in-out;
|
|
box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
|
|
overflow: hidden;
|
|
|
|
&.visited {
|
|
border: 1px solid rgba(var(--primary-rgb), 0.1);
|
|
|
|
.discourse-tag {
|
|
opacity: 0.75;
|
|
}
|
|
|
|
&:hover {
|
|
border: 1px solid rgba(var(--primary-rgb), 0.25);
|
|
|
|
.discourse-tag {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
background-color: var(--secondary);
|
|
box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
|
|
border: 1px solid rgba(var(--primary-rgb), 0.3);
|
|
|
|
a.title:not(.badge-notification),
|
|
a.topic-excerpt {
|
|
color: var(--primary) !important;
|
|
}
|
|
}
|
|
|
|
.topic-list-data.main-link {
|
|
width: 63%;
|
|
order: 2;
|
|
}
|
|
|
|
.topic-list-data.posters {
|
|
width: 7%;
|
|
order: 1;
|
|
height: auto;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
a:not(.latest) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.topic-list-data.posts {
|
|
width: 15%;
|
|
order: 3;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.topic-list-data.age {
|
|
width: 15%;
|
|
order: 4;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
&.selected {
|
|
td:nth-of-type(1) {
|
|
box-shadow: none;
|
|
}
|
|
|
|
&:focus-visible td:nth-of-type(2) {
|
|
box-shadow: inset 3px 0 0 var(--tertiary);
|
|
border-radius: calc(1em - 3px);
|
|
}
|
|
}
|
|
}
|
|
|
|
.main-link {
|
|
min-height: 100%;
|
|
|
|
.link-top-line {
|
|
display: block;
|
|
margin-bottom: 0.25em;
|
|
}
|
|
|
|
.title {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.link-area {
|
|
display: flex;
|
|
|
|
.link-title-area {
|
|
margin-right: 1em;
|
|
font-size: $font-up-1;
|
|
}
|
|
|
|
.link-meta-area {
|
|
font-size: $font-down-3;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
}
|
|
}
|
|
|
|
.posters {
|
|
.avatar {
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: .375rem;
|
|
}
|
|
|
|
a.latest {
|
|
margin-right: 4px;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-content: center;
|
|
align-items: center;
|
|
|
|
.avatar {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
a:not(.latest) {
|
|
margin-left: -22px;
|
|
|
|
.avatar {
|
|
border: 3px solid var(--secondary);
|
|
}
|
|
}
|
|
}
|
|
|
|
.posts-map,
|
|
.num.age.activity {
|
|
a {
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
.posts-map {
|
|
position: relative;
|
|
|
|
.number {
|
|
margin-right: 0.25em;
|
|
}
|
|
}
|
|
|
|
.post-activity {
|
|
.d-icon-reply {
|
|
color: var(--primary-medium);
|
|
margin-right: 0.25em;
|
|
}
|
|
|
|
.relative-date {
|
|
color: var(--primary-medium);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.topic-list-data.num.views {
|
|
display: none;
|
|
}
|
|
|
|
.d-icon-lock {
|
|
display: none;
|
|
}
|
|
|
|
// Community Resources Category
|
|
.category-resources {
|
|
// Topic List
|
|
|
|
.topic-list-header {
|
|
display: none !important;
|
|
}
|
|
|
|
.topic-list-body {
|
|
.topic-list-data {
|
|
// Center content in the topic list
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.num.views,
|
|
.num.posts,
|
|
.num.activity,
|
|
.posters,
|
|
.topic-statuses {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
// Topic Posts
|
|
|
|
.topic-map,
|
|
.topic-avatar,
|
|
.more-topics__container,
|
|
.names.trigger-user-card { // Hide the lock icon in the topic header of the post
|
|
display: none !important;
|
|
}
|
|
|
|
.topic-meta-data {
|
|
display: flex;
|
|
justify-content: right;
|
|
}
|
|
}
|
|
|
|
// published page additions
|
|
.published-page-header {
|
|
background-color: unset;
|
|
box-shadow: unset;
|
|
top: unset;
|
|
position: unset;
|
|
margin-top: 30px;
|
|
|
|
.published-page-header-wrapper {
|
|
justify-content: center;
|
|
background: var(--secondary);
|
|
max-width: 1000px;
|
|
border-radius: 1em 1em 0 0;
|
|
padding-top: 3em;
|
|
|
|
a {
|
|
display: none;
|
|
}
|
|
|
|
.published-page-title {
|
|
color: var(--primary);
|
|
}
|
|
}
|
|
}
|
|
|
|
.published-page-content-wrapper {
|
|
max-width: 1000px;
|
|
margin-top: 0;
|
|
margin-bottom: 50px;
|
|
background: var(--secondary);
|
|
border-radius: 0 0 1em 1em;
|
|
padding: 3em 3em 5%;
|
|
|
|
ul,
|
|
ol {
|
|
margin-left: 1.25em;
|
|
}
|
|
}
|
|
|
|
.published-page {
|
|
&::before {
|
|
background: linear-gradient(
|
|
90deg,
|
|
var(--tertiary-hover) 0%,
|
|
var(--tertiary) 100%
|
|
);
|
|
clip-path: ellipse(148% 70% at 91% -14%);
|
|
content: "";
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
position: fixed;
|
|
z-index: 0;
|
|
}
|
|
}
|
|
|
|
.quote-button {
|
|
border-radius: 0.5em;
|
|
}
|
|
|
|
.topic-list .main-link.focused + .posters {
|
|
box-shadow: inset 3px 0 0 var(--tertiary);
|
|
}
|
|
|
|
.topic-list .main-link.focused {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.title-voting {
|
|
padding-left: 14px;
|
|
}
|
|
|
|
// Footer
|
|
.orcashub-footer {
|
|
background-color: rgb(31 41 55);
|
|
|
|
.outer-container {
|
|
max-width: 80rem;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding: 3rem 1.5rem;
|
|
}
|
|
|
|
.inner-container {
|
|
padding-bottom: 2rem;
|
|
|
|
@media (min-width: 1280) {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
gap: 2rem;
|
|
}
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
gap: 2rem;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
|
|
@media (min-width: 1280) {
|
|
grid-column: span 4/span 4;
|
|
}
|
|
}
|
|
|
|
.grid-row {
|
|
@media (min-width: 768px) {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 2rem;
|
|
}
|
|
}
|
|
|
|
.second-group {
|
|
margin-top: 3rem;
|
|
|
|
@media (min-width: 768px) {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
|
|
h3 {
|
|
color: white;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
line-height: 1.5rem;
|
|
}
|
|
|
|
ul {
|
|
margin: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
li {
|
|
a {
|
|
color: rgb(209 213 219);
|
|
font-size: 16px;
|
|
line-height: 1.5rem;
|
|
}
|
|
|
|
a:hover {
|
|
color: white;
|
|
}
|
|
|
|
a:visited {
|
|
color: rgb(209 213 219) !important;
|
|
}
|
|
}
|
|
}
|