fixed bugs

This commit is contained in:
q
2016-07-05 12:51:17 +03:00
parent 9813cf6263
commit ba05dd9c74
3 changed files with 21 additions and 6 deletions

View File

@@ -9,7 +9,7 @@ td { height: 1.75em; }
.tickbox { margin-right: 0.5em; }
.noitem { background-color: transparent; border-color:transparent; }
.page { border: 5px solid #ccc; padding: 0.5em;
background: white; overflow:hidden; min-height:16em;}
background: white; overflow:auto; min-height:16em;}
.entries { margin-top: 1em; margin-bottom: 1em; }
.entries input { margin-top: 0.125em; margin-bottom: 0.125em; }
.entries li { margin: 0.8em 1.2em; }
@@ -24,6 +24,11 @@ td { height: 1.75em; }
.hidden { display: none; }
.pointer { cursor: pointer; text-decoration: underline; }
.hspacer { width: 1em; display: inline-block;}
.notify { -webkit-animation: notifier 500ms alternate infinite;
-moz-animation: notifier 500ms alternate infinite;
-o-animation: notifier 500ms alternate infinite;
animation: notifier 500ms alternate infinite; }
#date { font-size: 0.75em; margin-top: 1.2em; }
/* dropdown */
@@ -69,3 +74,7 @@ td { height: 1.75em; }
/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}
@keyframes notifier {
0% { box-shadow: 0px 0px 4px 4px #fff; }
100% { box-shadow: 0px 0px 4px 4px #cee5F5; }
}