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

fix button overlap for multirow buttongroups

parent fb530105
No related branches found
No related tags found
1 merge request!8536Fixes
...@@ -21,6 +21,9 @@ div.options-group div.button-group { ...@@ -21,6 +21,9 @@ div.options-group div.button-group {
/* left & right outline overlap each other so we don't have a double border */ /* left & right outline overlap each other so we don't have a double border */
outline: solid 2px var(--button-border-color); outline: solid 2px var(--button-border-color);
margin-left: 2px; margin-left: 2px;
/* half the outline width for multirow buttongroups */
margin-top: 1px;
margin-bottom: 1px;
} }
.button-group button:hover { .button-group button:hover {
...@@ -74,7 +77,7 @@ div.options-group input { ...@@ -74,7 +77,7 @@ div.options-group input {
min-width: unset; /* remove SC styling */ min-width: unset; /* remove SC styling */
width: 12em; width: 12em;
/* move back so that the outline of a potential select overlaps in front */ /* move back so that the outline of a potential select overlaps in front */
position:relative; position: relative;
z-index: 0; z-index: 0;
} }
......
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