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

design: use same color for tabs divider as used for TOC border #1611

Merged
merged 1 commit into from Mar 5, 2020
Merged
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
19 changes: 3 additions & 16 deletions website/static/css/tabs.css
Expand Up @@ -5,9 +5,9 @@
display: inline-block;
top: 1px;
padding: 10px;
margin: 0px 2px 0px 2px;
margin: 0 2px;
border-bottom-color: transparent;
border-radius: 3px 3px 0px 0px;
border-radius: 3px 3px 0 0;
font-size: 0.99em;
}

Expand Down Expand Up @@ -59,23 +59,10 @@
list-style-type: none;
padding: 0;
margin: 0;
border-bottom: 1px solid $subtle;
border-bottom: 1px solid $divider;
cursor: default;
}

@media screen and (max-width: 960px) {
.toggler li,
.toggler li:first-child,
.toggler li:last-child {
border-bottom-color: $subtle;
border-radius: 3px;
margin: 2px 0px 2px 0px;
}
.toggler ul {
border-bottom: 0;
}
}

.toggler button {
display: inline-block;
padding: 10px 5px;
Expand Down