Get rid of middle border radius in combo button on Windows

This commit is contained in:
Dan Stillman 2015-06-29 07:06:20 -04:00
parent a9c6feb380
commit 6c416e7ad2

View File

@ -64,6 +64,16 @@
box-shadow: none; box-shadow: none;
} }
#zotero-toolbar-buttons[cui-areatype="toolbar"]:not([overflowedItem=true]):hover > #zotero-toolbar-main-button .toolbarbutton-icon {
border-top-right-radius: 0px !important;
border-bottom-right-radius: 0px !important;
}
#zotero-toolbar-buttons[cui-areatype="toolbar"]:not([overflowedItem=true]):hover > #zotero-toolbar-save-button .toolbarbutton-icon {
border-top-left-radius: 0px !important;
border-bottom-left-radius: 0px !important;
}
/* /*
There are two hover effects: when the toolbaritem is hovered over, and when the button is hovered over. There are two hover effects: when the toolbaritem is hovered over, and when the button is hovered over.
This applies the latter (and may not be right on different versions of Windows). This applies the latter (and may not be right on different versions of Windows).