diff options
Diffstat (limited to 'web/src/css/flowdetail.less')
-rw-r--r-- | web/src/css/flowdetail.less | 31 |
1 files changed, 25 insertions, 6 deletions
diff --git a/web/src/css/flowdetail.less b/web/src/css/flowdetail.less index d450bca5..b6a7102b 100644 --- a/web/src/css/flowdetail.less +++ b/web/src/css/flowdetail.less @@ -5,17 +5,35 @@ .flow-detail { width: 100%; - overflow-x: auto; - overflow-y: scroll; + overflow:hidden; + display: flex; + flex-direction: column; nav { background-color: #F2F2F2; } section { - padding: 5px 12px; + display: flex; + flex-direction: column; + >article{ + overflow: auto; + padding: 5px 12px 0; + } + >footer { + box-shadow: 0 0 3px gray; + padding: 2px; + margin: 0; + height:23px; + } + } + + section.detail, section.error{ + overflow: auto; + padding: 5px 12px 0; } + .first-line { .monospace(); background-color: #428bca; @@ -38,9 +56,9 @@ hr { margin: 0 0 5px; } - } + .inline-input { display: inline; margin: 0 -3px; @@ -64,8 +82,9 @@ } } -.view-options { - margin-top: 10px; +.view-all-content-btn{ + float: right; + margin-bottom: 12px; } .flow-detail table { |