Fix trace table bottom being clipped from view
This commit is contained in:
parent
96d5aa5137
commit
01f883ca4d
|
@ -259,16 +259,17 @@
|
|||
#--re-frame-trace-- .nav {
|
||||
background: #efeef1;
|
||||
color: #222222;
|
||||
}
|
||||
#--re-frame-trace-- .panel-content-top {
|
||||
flex: 1;
|
||||
}
|
||||
#--re-frame-trace-- .panel-content-scrollable {
|
||||
margin: 0 10px;
|
||||
flex: 1 0 auto;
|
||||
flex: 1 1 auto;
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
}
|
||||
#--re-frame-trace-- .tab-contents {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
flex-direction: column;
|
||||
}
|
||||
#--re-frame-trace-- .filter-control {
|
||||
margin: 10px 0 0 10px;
|
||||
}
|
||||
|
|
|
@ -314,14 +314,18 @@
|
|||
color: @text-color;
|
||||
}
|
||||
.panel-content-top {
|
||||
flex: 1;
|
||||
}
|
||||
.panel-content-scrollable {
|
||||
margin: 0 10px;
|
||||
flex: 1 0 auto;
|
||||
flex: 1 1 auto;
|
||||
height: 100%;
|
||||
overflow: auto;
|
||||
}
|
||||
.tab-contents {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
flex-direction: column;
|
||||
}
|
||||
.filter-control {
|
||||
margin: 10px 0 0 10px;
|
||||
}
|
||||
|
|
|
@ -236,7 +236,7 @@
|
|||
(add-filter filter-items @filter-input @filter-type))))]
|
||||
|
||||
|
||||
[:div {:style {:flex "1 0 auto" :width "100%" :height "100%" :display "flex" :flex-direction "column"}}
|
||||
[:div.tab-contents
|
||||
[:div.filter-control
|
||||
[:div.filter-control-input
|
||||
[:select {:value @filter-type
|
||||
|
|
Loading…
Reference in New Issue