Skip to content

Commit

Permalink
Fix width of Watcher table. (#30311) (#30755)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjcenizal authored Feb 12, 2019
1 parent f333e9f commit e2affc4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
3 changes: 2 additions & 1 deletion x-pack/plugins/watcher/public/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@
@import 'sections/watch_edit/components/threshold_watch_edit/index';
@import 'sections/watch_edit/components/watch_edit_detail/index';
@import 'sections/watch_edit/components/watch_edit_execute_detail/index';
@import 'sections/watch_edit/components/watch_edit_title_panel/index';
@import 'sections/watch_edit/components/watch_edit_title_panel/index';
@import 'sections/watch_list/components/watch_list/index';
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import './watch_list';
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/**
* 1. Watch list width collapses without this.
*/
.watcherWatchList {
width: 100%; /* 1 */
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<kbn-management-app section="elasticsearch/watcher">
<kbn-management-app section="elasticsearch/watcher" class="watcherWatchList">
<div class="euiPanel euiPanel--paddingLarge euiPageContent" style="flex-grow: 0">
<forbidden-message ng-if="watchList.forbidden">
{{ 'xpack.watcher.sections.watchList.noPermissionToManageWatchesText' | i18n: { defaultMessage: 'You do not have permission to manage watches.' } }}
Expand Down

0 comments on commit e2affc4

Please sign in to comment.