Compare commits
No commits in common. "910f435080b7eba6643adf711ae577aa45d5cd83" and "98be4851e709d0d8135318b16eea7d107ec2068a" have entirely different histories.
910f435080
...
98be4851e7
23
about.json
23
about.json
@ -1,26 +1,39 @@
|
|||||||
{
|
{
|
||||||
"name": "OrcasHub Theme",
|
"name": "Air Theme",
|
||||||
"about_url": null,
|
"about_url": null,
|
||||||
"license_url": null,
|
"license_url": null,
|
||||||
"components": [
|
"components": [
|
||||||
"https://github.com/jordanvidrine/discourse-category-group-boxes.git",
|
"https://github.com/jordanvidrine/discourse-category-group-boxes.git",
|
||||||
"https://github.com/discourse/discourse-clickable-topic.git"
|
"https://github.com/discourse/discourse-clickable-topic.git",
|
||||||
|
"https://github.com/discourse/discourse-search-banner.git"
|
||||||
],
|
],
|
||||||
"modifiers": {
|
"modifiers": {
|
||||||
"serialize_topic_excerpts": true
|
"serialize_topic_excerpts": true
|
||||||
},
|
},
|
||||||
"color_schemes": {
|
"color_schemes": {
|
||||||
"OrcasHub": {
|
"air-light": {
|
||||||
"primary": "1c1c1c",
|
"primary": "1c1c1c",
|
||||||
"secondary": "f9fcff",
|
"secondary": "f9fcff",
|
||||||
"tertiary": "3877e5",
|
"tertiary": "3877e5",
|
||||||
"quaternary": "7e8b93",
|
"quaternary": "7e8b93",
|
||||||
"header_background": "374151",
|
"header_background": "f9fcff",
|
||||||
"header_primary": "e0e0e0",
|
"header_primary": "122b43",
|
||||||
"highlight": "e6cb37",
|
"highlight": "e6cb37",
|
||||||
"danger": "d05454",
|
"danger": "d05454",
|
||||||
"success": "71bd9f",
|
"success": "71bd9f",
|
||||||
"love": "c16ad7"
|
"love": "c16ad7"
|
||||||
|
},
|
||||||
|
"air-dark": {
|
||||||
|
"primary": "e0e0e0",
|
||||||
|
"secondary": "2d2d2d",
|
||||||
|
"tertiary": "9a5cfd",
|
||||||
|
"quaternary": "71bd9f",
|
||||||
|
"header_background": "202020",
|
||||||
|
"header_primary": "e0e0e0",
|
||||||
|
"highlight": "9a5cfd",
|
||||||
|
"danger": "d05454",
|
||||||
|
"success": "71bd9f",
|
||||||
|
"love": "c16ad7"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -255,6 +255,14 @@ html {
|
|||||||
),
|
),
|
||||||
linear-gradient(0deg, var(--secondary) 100%, var(--secondary) 100%);
|
linear-gradient(0deg, var(--secondary) 100%, var(--secondary) 100%);
|
||||||
}
|
}
|
||||||
|
.background-container {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
height: 100vh;
|
||||||
|
width: 100vw;
|
||||||
|
background: var(--secondary)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
html body #main-outlet {
|
html body #main-outlet {
|
||||||
@ -500,6 +508,9 @@ html body #main-outlet {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.published-page {
|
.published-page {
|
||||||
|
.background-container {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
&::before {
|
&::before {
|
||||||
background: linear-gradient(
|
background: linear-gradient(
|
||||||
90deg,
|
90deg,
|
||||||
|
1
common/header.html
Normal file
1
common/header.html
Normal file
@ -0,0 +1 @@
|
|||||||
|
<div class="background-container"></div>
|
@ -7,7 +7,7 @@ export default {
|
|||||||
initialize() {
|
initialize() {
|
||||||
withPluginApi("0.8.14", (api) => {
|
withPluginApi("0.8.14", (api) => {
|
||||||
api.modifyClass("component:edit-category-general", {
|
api.modifyClass("component:edit-category-general", {
|
||||||
pluginId: "orcashub-discourse-theme",
|
pluginId: "discourse-air",
|
||||||
|
|
||||||
didInsertElement() {
|
didInsertElement() {
|
||||||
this._super(...arguments);
|
this._super(...arguments);
|
||||||
|
@ -2,7 +2,7 @@ import { apiInitializer } from "discourse/lib/api";
|
|||||||
|
|
||||||
export default apiInitializer("0.8", (api) => {
|
export default apiInitializer("0.8", (api) => {
|
||||||
api.modifyClass("component:topic-list-item", {
|
api.modifyClass("component:topic-list-item", {
|
||||||
pluginId: "orcashub-discourse-theme",
|
pluginId: "discourse-air",
|
||||||
expandPinned: true,
|
expandPinned: true,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "orcashub-discourse-theme",
|
"name": "discourse-air",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"repository": "https://git.grosinger.net/tgrosinger/orcashub-discourse-theme",
|
"repository": "https://github.com/discourse/discourse-air",
|
||||||
"author": "Jordan Vidrine",
|
"author": "Jordan Vidrine",
|
||||||
"license": "GPL-2.0-or-later",
|
"license": "GPL-2.0-or-later",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
Loading…
Reference in New Issue
Block a user