Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions Themes/default/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -2693,13 +2693,13 @@ dl {
}
.boardslist a {
font-weight: bold;
border-bottom: 1px solid #c4c4c4;
border-bottom: var(--boardslist-border-width) var(--boardslist-border-style) var(--boardslist-border-color);
display: block;
margin-bottom: 0.5em;
}
.boardslist a:hover {
text-decoration: none;
border-bottom: 1px solid #334466;
border-bottom: var(--boardslist-border-width) var(--boardslist-border-style) var(--boardslist-border-color_hover);
}
.boardslist label {
display: inline-block;
Expand Down Expand Up @@ -3273,8 +3273,8 @@ h3 .collapse {
padding: 13px 10px 10px;
}
.boardindex_table .board_stats p {
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
border-left: var(--boardindex-border-width) var(--boardindex-border-style) var(--boardindex-border-color);
border-right: var(--boardindex-border-width) var(--boardindex-border-style) var(--boardindex-border-color);
}
.info {
overflow: hidden;
Expand All @@ -3285,7 +3285,7 @@ h3 .collapse {
.info .subject {
font-weight: 600;
font-size: 1.1em;
color: #a85400;
color: var(--boardindex-subject-color);
}
.board_stats {
width: 15%;
Expand All @@ -3307,14 +3307,14 @@ h3 .collapse {
}
.up_contain {
overflow: hidden;
border: 1px solid #ddd;
border: var(--boardindex-border-width) var(--boardindex-border-style) var(--boardindex-border-color);
margin: 0 0 3px 0;
display: flex;
flex-wrap: wrap;
}
/* Child boards */
.children {
border-top: 1px solid #ddd;
border-top: var(--boardindex-border-width) var(--boardindex-border-style) var(--boardindex-border-color);
padding: 5px;
width: 100%;
}
Expand All @@ -3341,7 +3341,7 @@ span.postby {
clear: both;
}
#info_center .sub_bar {
border-top: 1px solid #ddd;
border-top: var(--boardindex-border-width) var(--boardindex-border-style) var(--boardindex-border-color);
}
#info_center .sub_bar:first-child {
border-top: none;
Expand All @@ -3360,7 +3360,7 @@ span.postby {
padding: 0 4px 0 0;
}
#ic_recentposts td {
border-top: 1px solid #eaeaea;
border-top: var(--infocenter-row-border-width) var(--infocenter-row-border-style) var(--infocenter-row-border-color);
padding: 0 4px 0 0;
vertical-align: top;
}
Expand All @@ -3380,7 +3380,7 @@ span.postby {
width: 25%;
}
#ic_recentposts .recenttime strong {
color: #555;
color: var(--infocenter-time-color);
}
#ic_recentposts .windowbg {
background: none;
Expand Down Expand Up @@ -4100,7 +4100,7 @@ p.information img {
}
#topic_icons .information,
#messageindex .information {
border-top: 1px solid #ddd;
border-top: var(--boardindex-border-width) var(--boardindex-border-style) var(--boardindex-border-color);
}
.topic_pages {
font-size: 0.75em;
Expand Down
21 changes: 21 additions & 0 deletions Themes/default/css/variables.css
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,27 @@
--popup-content-color: #222;
--popup-content-line-height: 1.6em;

/** Board Index **/
/* The hairline the board index draws everywhere: around a board group,
between the stats columns, above a child board list and above the
information line on a message index. */
--boardindex-border-color: #ddd;
--boardindex-border-style: solid;
--boardindex-border-width: 1px;
--boardindex-subject-color: #a85400;

/** Board Picker Lists **/
--boardslist-border-color: #c4c4c4;
--boardslist-border-color_hover: #334466;
--boardslist-border-style: solid;
--boardslist-border-width: 1px;

/** Info Center **/
--infocenter-row-border-color: #eaeaea;
--infocenter-row-border-style: solid;
--infocenter-row-border-width: 1px;
--infocenter-time-color: #555;

/** Search Highlight **/
--searchhighlight-color: #ff7200;
--searchhighlight-font-size: 1.1em;
Expand Down