Skip to content

Commit

Permalink
Merge pull request #3792 from Spuds/themeTweak
Browse files Browse the repository at this point in the history
A few theme fixes
  • Loading branch information
Spuds committed Apr 24, 2024
2 parents f737f32 + e83b1dd commit 9282306
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
3 changes: 1 addition & 2 deletions themes/default/css/_gold/icons_svg_gold.css
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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

0 comments on commit 9282306

Please sign in to comment.