Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A few theme fixes #3792

Merged
merged 1 commit into from Apr 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 1 addition & 2 deletions themes/default/css/_gold/icons_svg_gold.css
Expand Up @@ -51,8 +51,7 @@
--hexcode: #1AB31A;
}

/* Was bar-chart */
.i-poll::before, .i-user::before {
.i-user::before {
filter: invert(66%) sepia(32%) saturate(4068%) hue-rotate(2deg) brightness(107%) contrast(102%);
--hexcode: #1966B3;
}
Expand Down
2 changes: 1 addition & 1 deletion themes/default/css/_gold/index_gold.css
Expand Up @@ -121,7 +121,7 @@
--menu_border_hover_left: #DFCE9B; /* menu border color left */
--menu_border_hover: #DFCE9B; /* Hover border */
--menu_button_hover_background: #5f4724; /* A hover background used on non active menu hovers */
--menu_dropdown_indicator: #989898; /* dropdown menu indicator */
--menu_dropdown_indicator: #F4F4F4; /* dropdown menu indicator */
--icon_menu_hover: #F4F4F4; /* Icon menu (small screen) hover background */
--icon_menu_hover_border: #DFCE9B;

Expand Down
6 changes: 4 additions & 2 deletions themes/default/css/index.css
Expand Up @@ -2856,14 +2856,15 @@ button[type="submit"].quick_quote_button.hide {
items like <pre> from blowing out the grid */
.post_wrapper {
display: grid;
padding-top: .6rem;
grid-template-columns: [poster] 22.5rem [postarea] minmax(0, auto);
grid-template-rows: auto auto;
grid-template-areas:
"keyinfo_header keyinfo_header "
"poster postarea";
}

aside.poster {
aside.poster, #quickreplybox .poster {
grid-area: poster;
}

Expand Down Expand Up @@ -4173,6 +4174,7 @@ dl.merge_topic dd {

/* Styles for the tooltips. */
#site_tooltip {
font-size: var(--font14);
position: absolute;
z-index: 999;
left: -9999px;
Expand Down Expand Up @@ -6878,8 +6880,8 @@ div.labels {
}

.category_boards .board_latest {
border-top: 1px solid;
padding: 1rem;
border-top: 1px solid;
grid-area: latest;
}

Expand Down
4 changes: 2 additions & 2 deletions themes/default/scripts/script_elk.js
Expand Up @@ -885,8 +885,8 @@ const ElkNotifier = new window.ElkNotifications({});
text: '',
class: 'ajax_infobar',
hide_delay: 4000,
error_class: 'error',
success_class: 'success'
error_class: 'errorbox',
success_class: 'successbox'
};

let settings = Object.assign({}, defaults, opt);
Expand Down