mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-08 07:09:28 +03:00
Disabled Sidebar animations and fixed overflow
This commit is contained in:
parent
9b7dc72e5c
commit
f8f75cec52
@ -62,9 +62,11 @@ sidebar :: ViewData -> HtmlUrl AppRoute
|
||||
sidebar vd@VD{..} =
|
||||
[hamlet|
|
||||
<div #sidebar-menu .#{showmd} .#{showsm} .sidebar-offcanvas>
|
||||
<ul .main-menu .nav .nav-stacked .affix-top>
|
||||
<li .top>
|
||||
<a href=@{JournalR} .#{journalcurrent} title="Show general journal entries, most recent first">Journal
|
||||
<table .main-menu .table>
|
||||
<tr>
|
||||
<td .top>
|
||||
<a href=@{JournalR} .#{journalcurrent} title="Show general journal entries, most recent first">Journal
|
||||
<td .top>
|
||||
^{accounts}
|
||||
|]
|
||||
where
|
||||
@ -176,7 +178,9 @@ balanceReportAsHtml _ vd@VD{..} (items',total) =
|
||||
[hamlet|
|
||||
$forall i <- items
|
||||
^{itemAsHtml vd i}
|
||||
<li .total>
|
||||
<tr .total>
|
||||
<td>
|
||||
<td>
|
||||
#{mixedAmountAsHtml total}
|
||||
|]
|
||||
where
|
||||
@ -185,12 +189,15 @@ balanceReportAsHtml _ vd@VD{..} (items',total) =
|
||||
items = items' -- maybe items' (\m -> filter (matchesAccount m . \(a,_,_,_)->a) items') showacctmatcher
|
||||
itemAsHtml :: ViewData -> BalanceReportItem -> HtmlUrl AppRoute
|
||||
itemAsHtml _ (acct, adisplay, aindent, abal) = [hamlet|
|
||||
<li>
|
||||
\#{indent}
|
||||
<a href="@?{acctquery}" .#{inacctclass} title="Show transactions affecting this account and subaccounts">#{adisplay}
|
||||
$if hassubs
|
||||
<a href="@?{acctonlyquery}" .only .hidden-sm .hidden-xs title="Show transactions affecting this account but not subaccounts">only
|
||||
#{mixedAmountAsHtml abal}
|
||||
<tr>
|
||||
<td>
|
||||
<div .ff-wrapper>
|
||||
\#{indent}
|
||||
<a href="@?{acctquery}" .#{inacctclass} title="Show transactions affecting this account and subaccounts">#{adisplay}
|
||||
$if hassubs
|
||||
<a href="@?{acctonlyquery}" .only .hidden-sm .hidden-xs title="Show transactions affecting this account but not subaccounts">only
|
||||
<td>
|
||||
#{mixedAmountAsHtml abal}
|
||||
|]
|
||||
where
|
||||
hassubs = not $ maybe False (null.asubs) $ ledgerAccount l acct
|
||||
|
@ -102,9 +102,22 @@ ul {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#sidebar-menu .main-menu li {
|
||||
border-top: 1px solid #ebebeb;
|
||||
#sidebar-menu {
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
#sidebar-menu .main-menu td {
|
||||
border-top: 1px solid #ebebeb;
|
||||
overflow-x:auto;
|
||||
white-space:nowrap;
|
||||
/* text-overflow:ellipsis;*/
|
||||
max-width:200px;
|
||||
}
|
||||
|
||||
#sidebar-menu .main-menu .ff-wrapper { /* This wrapper is needed because firefox won't apply overflow to a td-tag */
|
||||
overflow-x:auto;
|
||||
}
|
||||
|
||||
#sidebar-menu .main-menu .top {
|
||||
border: none !important;
|
||||
}
|
||||
@ -127,7 +140,7 @@ ul {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
#sidebar-menu .main-menu li:hover > .only {
|
||||
#sidebar-menu .main-menu tr:hover > td > .only {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
@ -163,22 +176,26 @@ ul {
|
||||
}
|
||||
|
||||
#main-content {
|
||||
/*
|
||||
-webkit-transition: width 0.3s ease, margin 0.3s ease;
|
||||
-moz-transition: width 0.3s ease, margin 0.3s ease;
|
||||
-o-transition: width 0.3s ease, margin 0.3s ease;
|
||||
transition: width 0.3s ease, margin 0.3s ease;
|
||||
*/
|
||||
}
|
||||
|
||||
#sidebar-menu {
|
||||
-webkit-transition: width 0.3s ease, margin 0.3s ease,opacity 0.3s ease;
|
||||
-moz-transition: width 0.3s ease, margin 0.3s ease,opacity 0.3s ease;
|
||||
-o-transition: width 0.3s ease, margin 0.3s ease,opacity 0.3s ease;
|
||||
transition: width 0.3s ease, margin 0.3s ease,opacity 0.3s ease;
|
||||
overflow:hidden;
|
||||
/*
|
||||
-webkit-transition: width 0.3s ease, margin 0.3s ease,opacity 0.3s ease,height 1s ease 1s;
|
||||
-moz-transition: width 0.3s ease, margin 0.3s ease,opacity 0.3s ease,height 1s ease 1s;
|
||||
-o-transition: width 0.3s ease, margin 0.3s ease,opacity 0.3s ease,height 1s ease 1s;
|
||||
transition: width 0.3s ease, margin 0.3s ease,opacity 0.3s ease,height 1s ease 1s;
|
||||
*/
|
||||
}
|
||||
|
||||
.col-any-0 {
|
||||
width:0 !important;
|
||||
height:0 !important;
|
||||
float: left;
|
||||
opacity:0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user