fix(win32-styling): Buttons, popovers have hard corners on windows

This commit is contained in:
Ben Gotow 2015-09-28 03:09:34 -07:00
parent 4bdbba4b67
commit aa048ec07c
3 changed files with 28 additions and 0 deletions

View file

@ -108,3 +108,15 @@
background-color: @text-color;
}
}
body.platform-win32 {
.button-dropdown {
.primary-item {
border-radius: 0;
}
.secondary-picker,
.secondary-items {
border-radius: 0;
}
}
}

View file

@ -41,3 +41,15 @@
background-color: @background-color;
}
}
body.platform-win32 {
.popover {
border-radius: 0;
}
.menu {
.header-container,
.footer-container {
border-radius: 0;
}
}
}

View file

@ -336,6 +336,10 @@ body.platform-win32 {
order: -101;
}
.btn {
border-radius: 0;
}
.flexbox-handle-vertical {
cursor:ns-resize;
}