Fix border radius in buttons on presentation-toolbar
This commit is contained in:
parent
b4c82553a0
commit
b0df61a3ba
@ -15,6 +15,22 @@
|
||||
.presentationControls,
|
||||
.zoomWrapper {
|
||||
box-shadow: 0 0 10px -2px rgba(0, 0, 0, .25);
|
||||
|
||||
span:first-of-type button,
|
||||
button:first-of-type {
|
||||
border-top-left-radius: 5px;
|
||||
border-bottom-left-radius: 5px;
|
||||
border-top-right-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
}
|
||||
|
||||
span:last-of-type button,
|
||||
button:last-of-type {
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
border-top-right-radius: 5px;
|
||||
border-bottom-right-radius: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.presentationToolbarWrapper {
|
||||
@ -47,18 +63,6 @@
|
||||
i {
|
||||
color: var(--toolbar-button-color);
|
||||
}
|
||||
|
||||
|
||||
|
||||
button:first-of-type {
|
||||
border-top-left-radius: 5px;
|
||||
border-bottom-left-radius: 5px;
|
||||
}
|
||||
|
||||
button:last-of-type {
|
||||
border-top-right-radius: 5px;
|
||||
border-bottom-right-radius: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.zoomWrapper {
|
||||
|
Loading…
Reference in New Issue
Block a user