Skip to content
Snippets Groups Projects
Commit 17cf3964 authored by Arkerthan's avatar Arkerthan
Browse files

fix double border with input box

parent 931e4e5e
No related branches found
No related tags found
1 merge request!6739mor eoptions converting
......@@ -19,13 +19,15 @@ div.options-group span.comment {
div.options-group button {
color: var(--link-color);
background-color: var(--button-color);
border: solid 2px var(--button-border-color);
margin: 4px 0;
}
div.options-group button:not(:first-child) {
border-left: none; /* Prevent double borders */
}
border: none; /* outline instead of border */
/* left & right outline overlap each other so we don't have a double border */
outline: solid 2px var(--button-border-color);
margin: 6px 0 6px 2px;
}
/*
div.options-group button:not(:last-child) {
border-right: none; /* Prevent double borders */
/*}*/
div.options-group button:hover {
background-color: var(--button-hover-color);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment