Fix code copy button styling

This commit is contained in:
panr 2018-09-04 09:16:52 +02:00
parent ccbbbf1eaa
commit 4ba37d7f3f
2 changed files with 29 additions and 1 deletions

View File

@ -87,3 +87,31 @@ a.read-more:active {
background: none;
}
}
.code-toolbar {
margin-bottom: 20px;
.toolbar-item a {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 3px 8px;
margin-bottom: 5px;
background: var(--light-background-secondary);
text-decoration: none;
text-align: center;
font-size: 13px;
font-weight: 500;
border-radius: 8px;
border: 1px solid transparent;
appearance: none;
cursor: pointer;
outline: none;
.dark-theme & {
background: var(--dark-background-secondary);
color: inherit;
}
}
}

File diff suppressed because one or more lines are too long