diff options
| author | 2014-05-13 21:13:18 +0200 | |
|---|---|---|
| committer | 2014-05-13 21:13:18 +0200 | |
| commit | d7ba16a39b0c14404139bc6235fd2076e5d2a4c5 (patch) | |
| tree | 6edb1ea96a851a6b2f4d63649e1761dbf2854437 | |
| parent | a86a51cca69b7256d3a8dcf1c68447b6d5abe917 (diff) | |
Fix template
Few improvements
| -rw-r--r-- | p/themes/template/template.css | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/p/themes/template/template.css b/p/themes/template/template.css index 8ab4f2a61..355f1aeda 100644 --- a/p/themes/template/template.css +++ b/p/themes/template/template.css @@ -49,8 +49,8 @@ img { max-width: 100%; } img.favicon { - height: 1em; - width: 1em; + height: 16px; + width: 16px; vertical-align: middle; } @@ -80,7 +80,8 @@ input, select, textarea { } input[type="radio"], input[type="checkbox"] { - width: 15px; + width: 15px !important; + min-height: 15px !important; } input.extend:focus { width: 300px; @@ -165,11 +166,13 @@ a.btn { .dropdown-menu { display: none; min-width: 200px; + max-height: 300px; margin: 0; position: absolute; right: 0; background: #fff; border: 1px solid #aaa; + overflow: auto; } .dropdown-header { display: block; @@ -181,7 +184,7 @@ a.btn { display: block; } .dropdown-menu > .item[aria-checked="true"] > a:before { - content: '✓ '; + content: '✓'; } .dropdown-menu .input { display: block; @@ -286,6 +289,7 @@ a.btn { display: table-cell; height: 100%; width: 250px; + vertical-align: top; } .aside.aside_flux { background: #fff; @@ -411,7 +415,6 @@ a.btn { } .content { min-height: 20em; - max-width: 38em; margin: auto; line-height: 1.7em; word-wrap: break-word; @@ -439,8 +442,9 @@ a.btn { display: none; } #notification a.close { + position: absolute; + right: 0; display: inline-block; - float: right; } .actualizeProgress { @@ -472,6 +476,9 @@ a.btn { } /*=== "Load more" part */ +#load_more { + min-height: 40px; +} .loading { background: url("loader.gif") center center no-repeat; font-size: 0; @@ -600,8 +607,9 @@ a.btn { #notification, .actualizeProgress { - left: 1em; - right: 1em; + top: 0; + left: 0; + right: 0; } #nav_entries { |
