Small interface fixes

This commit is contained in:
RainLoop Team 2014-02-01 01:37:26 +04:00
parent 56a54c334d
commit 4664401260
10 changed files with 60 additions and 54 deletions

View file

@ -1,43 +1,44 @@
.b-domain-content {
&.modal {
width: 645px;
}
.modal-header {
background-color: #fff;
}
.modal-body {
position: relative;
overflow: hidden;
width: 1300px;
height: 390px;
}
&.domain-edit .modal-body {
height: 350px;
}
&.domain-white-list-page .modal-body {
left: -640px;
}
.error-desc {
color: red;
margin-left: 10px;
}
.testing-done {
.imap-header, .smtp-header {
color: green;
font-weight: bold;
}
}
.testing-error {
.imap-header, .smtp-header {
color: red;
}
}
.b-domain-content {
&.modal {
width: 645px;
}
.modal-header {
background-color: #fff;
}
.modal-body {
position: relative;
overflow: hidden;
width: 1300px;
height: 390px;
left: 0;
}
&.domain-edit .modal-body {
height: 350px;
}
&.domain-white-list-page .modal-body {
left: -640px;
}
.error-desc {
color: red;
margin-left: 10px;
}
.testing-done {
.imap-header, .smtp-header {
color: green;
font-weight: bold;
}
}
.testing-error {
.imap-header, .smtp-header {
color: red;
}
}
}

View file

@ -17,7 +17,6 @@
display: inline-block;
vertical-align: middle;
text-align: center;
/*width: 380px;*/
.descWrapper {
@ -29,6 +28,10 @@
}
}
.alertError {
max-width: 450px;
}
.loginForm {
background-color: #efefef;
text-align: left;

View file

@ -2,7 +2,7 @@
"name": "RainLoop",
"title": "RainLoop Webmail",
"version": "1.6.2",
"release": "661",
"release": "663",
"description": "Simple, modern & fast web-based email client",
"homepage": "http://rainloop.net",
"main": "Gruntfile.js",

View file

@ -1,7 +1,7 @@
<div class="b-login-content">
<div class="loginFormWrapper">
<center>
<div class="alert" data-bind="visible: '' !== submitError()">
<div class="alert alertError" data-bind="visible: '' !== submitError()">
<button type="button" class="close" data-bind="click: function () { submitError('') }">&times;</button>
<span data-bind="text: submitError"></span>
</div>

View file

@ -25,7 +25,7 @@
<br />
<label data-bind="click: function () { contactsSync(!contactsSync()); }">
<i data-bind="css: contactsSync() ? 'icon-checkbox-checked' : 'icon-checkbox-unchecked'"></i>
Allow contacts sync (CardDAV) <span style="color:red">beta</span>
Allow contacts sync server (CardDAV)
</label>
<a href="http://rainloop.net/docs/web-servers/" target="_blank">Web server configuration examples</a>
</div>

View file

@ -17,7 +17,7 @@
<label data-bind="click: function () { openPGP(!openPGP()); }">
<i data-bind="css: openPGP() ? 'icon-checkbox-checked' : 'icon-checkbox-unchecked'"></i>
&nbsp;&nbsp;
Allow OpenPGP (beta)
Allow OpenPGP (unstable)
</label>
</div>
</div>

View file

@ -12,7 +12,7 @@
<span class="desc" data-bind="text: loginDescription"></span>
</div>
{{INCLUDE/AfterLogo/PLACE}}
<div class="alert" data-bind="visible: '' !== submitError()">
<div class="alert alertError" data-bind="visible: '' !== submitError()">
<button type="button" class="close" data-bind="click: function () { submitError('') }">&times;</button>
<span data-bind="text: submitError"></span>
</div>

View file

@ -13,7 +13,7 @@
<br />
<br />
<blockquote>
<p class="i18n muted" style="width: 700px" data-i18n-text="SETTINGS_SOCIAL/MAIN_GOOGLE_DESC"></p>
<p class="i18n muted" style="width: 500px" data-i18n-text="SETTINGS_SOCIAL/MAIN_GOOGLE_DESC"></p>
</blockquote>
</div>
<div class="control-group" data-bind="visible: googleLoggined">
@ -46,7 +46,7 @@
<br />
<br />
<blockquote>
<p class="i18n muted" style="width: 700px" data-i18n-text="SETTINGS_SOCIAL/MAIN_FACEBOOK_DESC"></p>
<p class="i18n muted" style="width: 500px" data-i18n-text="SETTINGS_SOCIAL/MAIN_FACEBOOK_DESC"></p>
</blockquote>
</div>
<div class="control-group" data-bind="visible: facebookLoggined">
@ -79,7 +79,7 @@
<br />
<br />
<blockquote>
<p class="i18n muted" style="width: 700px" data-i18n-text="SETTINGS_SOCIAL/MAIN_TWITTER_DESC"></p>
<p class="i18n muted" style="width: 500px" data-i18n-text="SETTINGS_SOCIAL/MAIN_TWITTER_DESC"></p>
</blockquote>
</div>
<div class="control-group" data-bind="visible: twitterLoggined">

View file

@ -6197,8 +6197,6 @@ html.rl-no-preview-pane #rl-right .ui-resizable-handle {
display: inline-block;
vertical-align: middle;
text-align: center;
/*width: 380px;*/
}
.b-login-content .loginFormWrapper .descWrapper {
margin-bottom: 10px;
@ -6207,6 +6205,9 @@ html.rl-no-preview-pane #rl-right .ui-resizable-handle {
font-size: 18px;
padding: 2px;
}
.b-login-content .loginFormWrapper .alertError {
max-width: 450px;
}
.b-login-content .loginFormWrapper .loginForm {
background-color: #efefef;
text-align: left;
@ -7845,6 +7846,7 @@ html.rl-message-fullscreen .messageView .b-content .buttonFull {
overflow: hidden;
width: 1300px;
height: 390px;
left: 0;
}
.b-domain-content.domain-edit .modal-body {
height: 350px;

File diff suppressed because one or more lines are too long