4 Commits

Author SHA1 Message Date
4e9d9d67b6 1.2.7
All checks were successful
Zip and attach installable zip to release / zip-and-attach (release) Successful in 6s
2025-08-26 14:45:13 -05:00
a8a54c4371 colors for rich text editor buttons 2025-08-26 14:43:29 -05:00
3ae34e31d3 fix upload area 2025-08-26 14:13:06 -05:00
f72837b781 adjust icons to influence what firefox picks for the new tab page icon 2025-08-17 20:00:36 -05:00
8 changed files with 43 additions and 22 deletions

View File

@@ -209,6 +209,11 @@
--color-highlight-fg: #eed200;
--color-highlight-bg: #fffbdd;
--color-overlay-backdrop: #080808c0;
--color-sceditor-button: #dddddd;
--color-sceditor-button-hover: #bbbbbb;
--color-sceditor-button-active: #aaaaaa;
--color-sceditor-button-border: #777777;
--color-sceditor-button-border-bottom: #666666;
accent-color: var(--color-accent);
color-scheme: light;
}
@@ -225,4 +230,8 @@
.i-rss::before {
filter: initial;
}
.i-upload::before {
filter: brightness(0);
}
}

View File

@@ -254,6 +254,11 @@
--color-highlight-fg: #87651e;
--color-highlight-bg: #352c1c;
--color-overlay-backdrop: #080808c0;
--color-sceditor-button: #999999;
--color-sceditor-button-hover: #bbbbbb;
--color-sceditor-button-active: #eeeeee;
--color-sceditor-button-border: #dfdfdf;
--color-sceditor-button-border-bottom: #dddddd;
accent-color: var(--color-accent);
color-scheme: dark;
}
@@ -1578,13 +1583,13 @@ div.bbc_footnotes .meaction {}
#postAdditionalOptionsHeader,
#postDraftOptionsHeader {
border-color: #2F2F2F;
background: var(--color-body) linear-gradient(to bottom, #1A1A1A 0%, #222222 100%);
border-color: var(--color-secondary-dark-3);
background: var(--color-card);
}
#postAdditionalOptions,
#postDraftOptions {
border-color: #2F2F2F;
border-color: var(--color-secondary-dark-3);
border-top-color: transparent;
background: var(--color-body);
}
@@ -1595,13 +1600,13 @@ div.bbc_footnotes .meaction {}
}
.drop_area {
color: #444444;
border-color: #CCCCCC;
background-color: rgb(230, 230, 230);
color: var(--color-text-dark);
border-color: var(--color-text);
background-color: var(--color-secondary-light-1);
}
.drop_area>a {
color: #000000;
color: var(--color-primary-contrast);
}
.statusbar {
@@ -1655,7 +1660,7 @@ div.bbc_footnotes .meaction {}
}
#postMoreOptions {
border-top-color: var(--color-secondary);
border-top-color: var(--color-secondary-dark-3);
background: var(--color-card);
}

View File

@@ -270,12 +270,16 @@
cursor: pointer;
color: #222222;
border: 1px solid #BBBBBB;
color: var(--color-text);
border: 1px solid var(--color-sceditor-button-border);
border-right: none;
border-bottom: 1px solid #AAAAAA;
background: #999999;
box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.15) inset;
border-bottom: 1px solid var(--color-sceditor-button-border-bottom);
background: var(--color-sceditor-button);
box-shadow: none;
}
.sceditor-button:has(+.sceditor-button-space) {
border-right: 1px solid var(--color-sceditor-button-border);
}
.sceditor-button.disabled div {
@@ -285,7 +289,8 @@
.sceditor-button.disabled:hover {
cursor: default;
background: inherit;
background: var(--color-sceditor-button);
box-shadow: none;
}
.sceditor-button div, .sceditor-button {
@@ -303,13 +308,13 @@
}
.sceditor-button:hover {
background: #FAFAFA;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2) inset;
background: var(--color-sceditor-button-hover);
box-shadow: none;
}
.sceditor-button.active {
background: #DFFFBF;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2) inset;
background: var(--color-sceditor-button-active);
box-shadow: none;
}
.sceditor-button-emoticon {
@@ -334,7 +339,8 @@ a.sceditor-button-space, .sceditor-button-space div {
padding: 4px 0;
border: none;
border-left: 1px solid #BBBBBB;
border-left: 1px solid transparent;
visibility: hidden;
background: transparent;
box-shadow: none;
}
@@ -351,7 +357,7 @@ a.sceditor-button-space, .sceditor-button-space div {
}
.sceditor-button-source.active {
background: #FAFAFA;
background: var(--color-sceditor-button-active);
box-shadow: none;
}

View File

@@ -259,7 +259,7 @@
}
.i-upload::before {
content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23222222' viewBox='0 0 32 32'%3E%3Cpath d='M15 22H0v8h30v-8H15zm13 4h-4v-2h4v2zM7 10l8-8 8 8h-5v10h-6V10z'/%3E%3C/svg%3E");
content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 32 32'%3E%3Cpath d='M15 22H0v8h30v-8H15zm13 4h-4v-2h4v2zM7 10l8-8 8 8h-5v10h-6V10z'/%3E%3C/svg%3E");
}
.i-support::before {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -173,6 +173,7 @@ function template_html_above()
// Show all the relative links, such as help, search, contents, and the like.
echo '
<link rel="shortcut icon" sizes="196x196" href="' . $context['favicon'] . '" />
<link rel="apple-touch-icon" sizes="144x144" href="' . $context['favicon'] . '.apple.144.png" />
<link rel="apple-touch-icon" sizes="180x180" href="' . $context['favicon'] . '.apple.png" />
<link rel="help" href="', $scripturl, '?action=help" />
<link rel="contents" href="', $scripturl, '" />', ($context['allow_search'] ? '

View File

@@ -2,7 +2,7 @@
<theme-info xmlns="https://www.elkarte.net/site/theme-info" xmlns:elk="https://www.elkarte.net/">
<!-- For the id, always use something unique - put your name, a colon, and then the package name. -->
<id>artix:Artix</id>
<version>1.2.6</version>
<version>1.2.7</version>
<!-- Theme name, used purely for aesthetics. -->
<name>Artix</name>
<!-- Author: your email address or contact information. The name attribute is optional. -->