Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/skins
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2017-10-28 19:23:35 +0300
committerAleksander Machniak <alec@alec.pl>2017-10-28 19:23:35 +0300
commitfd9517655fc8211bf049ddb6209c3fe9c09da9a0 (patch)
tree22ea30045dab94c67cf8a4e931644108d90a8b3a /skins
parente00dd60c256d36ef0bd195b833ad8f3f2bf41846 (diff)
Fix password form
Diffstat (limited to 'skins')
-rw-r--r--skins/classic/common.css5
-rw-r--r--skins/classic/functions.js3
-rw-r--r--skins/classic/settings.css5
-rw-r--r--skins/classic/templates/plugin.html6
4 files changed, 18 insertions, 1 deletions
diff --git a/skins/classic/common.css b/skins/classic/common.css
index 39ed45a40..5265c5aed 100644
--- a/skins/classic/common.css
+++ b/skins/classic/common.css
@@ -1091,6 +1091,11 @@ div.searchbox > input
width: 97%;
}
+.formcontainer
+{
+ background-color: #f2f2f2;
+}
+
.formcontent table {
width: 100%;
}
diff --git a/skins/classic/functions.js b/skins/classic/functions.js
index 73f2744bb..51012fe36 100644
--- a/skins/classic/functions.js
+++ b/skins/classic/functions.js
@@ -1106,6 +1106,9 @@ function rcube_init_mail_ui()
if (rcmail.env.action == 'folders') {
rcmail_ui.folder_search_init($('#folder-manager'));
}
+
+ $('#mainscreen > #prefs-title').detach().prependTo($('#mainscreen > .box'));
}
});
}
+
diff --git a/skins/classic/settings.css b/skins/classic/settings.css
index 673e145eb..c6bdb15c2 100644
--- a/skins/classic/settings.css
+++ b/skins/classic/settings.css
@@ -140,6 +140,11 @@ body.iframe,
width: 100%;
}
+.footerleft
+{
+ padding-left: 10px;
+}
+
#formfooter .footerleft
{
padding: 0 2px 10px;
diff --git a/skins/classic/templates/plugin.html b/skins/classic/templates/plugin.html
index cec701301..b9b6ebe85 100644
--- a/skins/classic/templates/plugin.html
+++ b/skins/classic/templates/plugin.html
@@ -16,8 +16,12 @@
<div id="mainscreen">
<roundcube:object name="plugin.body" />
</div>
-
+
<roundcube:object name="plugin.footer" />
+<script type="text/javascript">
+rcube_init_mail_ui();
+</script>
+
</body>
</html>