- {tr("wall", $count)}
-
-
-
+
{if sizeof($posts) > 0}
{foreach $posts as $post}
diff --git a/Web/static/css/style.css b/Web/static/css/style.css
index 16a151ea..89b8af72 100644
--- a/Web/static/css/style.css
+++ b/Web/static/css/style.css
@@ -29,6 +29,10 @@ span {
color: gray;
}
+nobold {
+ font-weight: normal;
+}
+
a {
text-decoration: none;
color: #2B587A;
@@ -533,6 +537,14 @@ h4 {
color: #bcbcbc;
}
+.small-textarea {
+ height: 24px;
+}
+
+.expanded-textarea {
+ min-height: 48px;
+}
+
ul {
list-style-type: square;
color: #a2a2a2;
@@ -938,8 +950,9 @@ textarea {
font-family: unset;
border: 1px solid #C0CAD5;
font-size: 9pt;
- min-height: 42px;
+ min-height: 24px;
width: 100%;
+ padding: 4px;
resize: none;
}
diff --git a/Web/static/js/openvk.cls.js b/Web/static/js/openvk.cls.js
index 7f7412bc..07eb8a2c 100644
--- a/Web/static/js/openvk.cls.js
+++ b/Web/static/js/openvk.cls.js
@@ -1,12 +1,12 @@
-function show_write_textarea() {
- var el = document.getElementById('write');
- if (el.style.display == "none") {
- el.style.display = "block";
- } else {
- el.style.display = "none";
- }
+function expand_wall_textarea() {
+ var el = document.getElementById('post-buttons');
+ var wi = document.getElementById('wall-post-input');
+ el.style.display = "block";
+ wi.className = "expanded-textarea";
+
+
}
function edit_post(id, wid) {