Skip to content
This repository has been archived by the owner on Mar 31, 2021. It is now read-only.

Bug fix: custom plugin icon displaying improperly #73

Merged
merged 3 commits into from
Jun 9, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default function (kibana) {
main: 'plugins/' + PLUGIN_NAME + '/app',
icon:'plugins/' + PLUGIN_NAME + '/icons/sql.svg',
},
styleSheetPaths: [resolve(__dirname, 'public/app.scss'), resolve(__dirname, 'public/app.css')].find(p => existsSync(p))
styleSheetPaths: [resolve(__dirname, 'public/app.scss'), require('path').resolve(__dirname, 'public/app.css')]
},

config(Joi) {
Expand Down
21 changes: 21 additions & 0 deletions public/app.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/*
* Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/

figure {
max-width: 16px !important;
margin-right: 12px;
flex-grow: 0;
flex-shrink: 0;
}
3 changes: 2 additions & 1 deletion release-notes/sql-workbench.release-notes-1.8.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@

- Update release notes and contributors for v1.8 ([#68](https://github.com/opendistro-for-elasticsearch/sql-workbench/pull/68))
- Update README.md ([#71](https://github.com/opendistro-for-elasticsearch/sql-workbench/pull/71))
- Rename plugin name to sql-workbench ([#72](https://github.com/opendistro-for-elasticsearch/sql-workbench/pull/72))
- Rename plugin name to sql-workbench ([#72](https://github.com/opendistro-for-elasticsearch/sql-workbench/pull/72))
- Bug fix: custom plugin icon displaying improperly ([#73](https://github.com/opendistro-for-elasticsearch/sql-workbench/pull/73))