Skip to content

Commit

Permalink
Add btn-default for Bootstrap3
Browse files Browse the repository at this point in the history
  • Loading branch information
lqez committed Apr 25, 2020
1 parent 5e997ae commit 4db4b98
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/js/base/module/Buttons.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,13 @@ export default class Buttons {
'<div class="note-palette">',
'<div class="note-palette-title">' + this.lang.color.background + '</div>',
'<div>',
'<button type="button" class="note-color-reset btn btn-light" data-event="backColor" data-value="transparent">',
'<button type="button" class="note-color-reset btn btn-light btn-default" data-event="backColor" data-value="transparent">',
this.lang.color.transparent,
'</button>',
'</div>',
'<div class="note-holder" data-event="backColor"><!-- back colors --></div>',
'<div>',
'<button type="button" class="note-color-select btn btn-light" data-event="openPalette" data-value="backColorPicker">',
'<button type="button" class="note-color-select btn btn-light btn-default" data-event="openPalette" data-value="backColorPicker">',
this.lang.color.cpSelect,
'</button>',
'<input type="color" id="backColorPicker" class="note-btn note-color-select-btn" value="' + this.options.colorButton.backColor + '" data-event="backColorPalette">',
Expand All @@ -136,13 +136,13 @@ export default class Buttons {
'<div class="note-palette">',
'<div class="note-palette-title">' + this.lang.color.foreground + '</div>',
'<div>',
'<button type="button" class="note-color-reset btn btn-light" data-event="removeFormat" data-value="foreColor">',
'<button type="button" class="note-color-reset btn btn-light btn-default" data-event="removeFormat" data-value="foreColor">',
this.lang.color.resetToDefault,
'</button>',
'</div>',
'<div class="note-holder" data-event="foreColor"><!-- fore colors --></div>',
'<div>',
'<button type="button" class="note-color-select btn btn-light" data-event="openPalette" data-value="foreColorPicker">',
'<button type="button" class="note-color-select btn btn-light btn-default" data-event="openPalette" data-value="foreColorPicker">',
this.lang.color.cpSelect,
'</button>',
'<input type="color" id="foreColorPicker" class="note-btn note-color-select-btn" value="' + this.options.colorButton.foreColor + '" data-event="foreColorPalette">',
Expand Down

0 comments on commit 4db4b98

Please sign in to comment.