Skip to content

Commit

Permalink
fixed scrolling and height in popovers
Browse files Browse the repository at this point in the history
  • Loading branch information
chfsx committed Aug 16, 2017
1 parent 8112c2c commit fdd2f77
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
7 changes: 7 additions & 0 deletions templates/default/delos.css
Original file line number Diff line number Diff line change
Expand Up @@ -7460,6 +7460,10 @@ ul.breadcrumb li:hover {
.il-popover .webui-popover-content > div:first-child {
width: 100%;
}
.il-popover .il-popover-inner {
max-height: 500px;
overflow: scroll;
}
.il-popover i.icon-refresh {
background: url("../../src/UI/templates/libs/node_modules/webui-popover/img/loading.gif") no-repeat;
height: 30px;
Expand All @@ -7475,6 +7479,9 @@ ul.breadcrumb li:hover {
text-transform: uppercase;
color: #909090;
}
.il-popover.webui-popover-fixed {
position: fixed;
}
.extended-color-variant-1.il-extended-color-variant-standard {
color: #7f7207;
background-color: #f3de2c;
Expand Down
2 changes: 2 additions & 0 deletions templates/default/less/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -507,6 +507,8 @@
@il-popover-arrow-background-color: @il-popover-background-color;
//** z-index used for the Popover
@il-popover-z-index: 9999;
//** Maximum Height of a popover (overflow scroll)
@il-popover-max-height: 500px;

//== Tooltips
//
Expand Down

0 comments on commit fdd2f77

Please sign in to comment.