FIX: Un-revert the btn class added to the topic post menu

This commit is contained in:
Robin Ward 2017-08-25 17:08:10 -04:00
parent 296ea6c7b1
commit aa07d23caa
2 changed files with 7 additions and 2 deletions

View File

@ -78,5 +78,5 @@ export const ButtonClass = {
export default createWidget('button', ButtonClass);
createWidget('flat-button', jQuery.extend(ButtonClass, {
tagName: 'button.widget-button.btn-flat'
tagName: 'button.widget-button.btn.btn-flat'
}));

View File

@ -119,6 +119,11 @@ nav.post-controls {
margin-right: 5px;
}
.btn:disabled {
background: transparent;
cursor: default;
}
button {
font-size: 1.143em;
padding: 8px 10px;
@ -127,7 +132,7 @@ nav.post-controls {
border: none;
margin-left: 3px;
&.d-hover {
&.d-hover, &:hover {
background: $primary-low;
color: $primary;
}