diff --git a/customize.dist/images/logo_white.png b/customize.dist/images/logo_white.png new file mode 100644 index 000000000..81928ffb1 Binary files /dev/null and b/customize.dist/images/logo_white.png differ diff --git a/customize.dist/pages.js b/customize.dist/pages.js index f233e8247..89acf8e2f 100644 --- a/customize.dist/pages.js +++ b/customize.dist/pages.js @@ -428,8 +428,8 @@ define([ } }, [ h('button#clear.btn.btn-danger', Msg.canvas_clear), ' ', - h('button#toggleDraw.btn.btn-default', Msg.canvas_disable), - h('button#delete.btn.btn-default', { + h('button#toggleDraw.btn.btn-secondary', Msg.canvas_disable), + h('button#delete.btn.btn-secondary', { style: { display: 'none', } @@ -497,7 +497,7 @@ define([ style: { display: 'none' }, title: Msg.poll_admin_button }, Msg.poll_admin_button), - h('button#help.btn.btn-default', { + h('button#help.btn.btn-secondary', { title: Msg.poll_show_help_button }, Msg.poll_show_help_button) ]), @@ -513,13 +513,13 @@ define([ ]), h('div#tableContainer', [ h('div#tableScroll'), - h('button#create-user.btn.btn-default', { + h('button#create-user.btn.btn-secondary', { title: Msg.poll_create_user }, h('span.fa.fa-plus')), - h('button#create-option.btn.btn-default', { + h('button#create-option.btn.btn-secondary', { title: Msg.poll_create_option }, h('span.fa.fa-plus')), - h('button#commit.btn.btn-default', { + h('button#commit.btn.btn-secondary', { title: Msg.poll_commit }, h('span.fa.fa-check')) ]) diff --git a/www/common/toolbar2.js b/www/common/toolbar2.js index 0b963a318..4a8032ad4 100644 --- a/www/common/toolbar2.js +++ b/www/common/toolbar2.js @@ -629,7 +629,7 @@ define([ title: Messages.header_logoTitle, 'class': "cryptpad-logo" }).append($('', { - src: '/customize/images/logo_white.svg' + src: '/customize/images/logo_white.png' })); var onClick = function (e) { e.preventDefault(); diff --git a/www/poll/poll.less b/www/poll/poll.less index 3a7547700..e3d5faffa 100644 --- a/www/poll/poll.less +++ b/www/poll/poll.less @@ -475,14 +475,5 @@ form.realtime, div.realtime { display: inline-flex; align-items: center; justify-content: center; - - &.btn-default { - background-color: #BBB; - color: black; - - &:hover { - background-color: #DDD; - } - } } diff --git a/www/whiteboard/whiteboard.less b/www/whiteboard/whiteboard.less index 72ae28e51..d1f899d9f 100644 --- a/www/whiteboard/whiteboard.less +++ b/www/whiteboard/whiteboard.less @@ -133,12 +133,3 @@ body { height: 0; z-index: -5; } - -.btn.btn-default { - background-color: #BBB; - color: black; - - &:hover { - background-color: #DDD; - } -}