Contacts improvements (Added URL and Nickname fields)

This commit is contained in:
RainLoop Team 2014-05-01 04:01:31 +04:00
parent f36cb72b82
commit ef880319c6
42 changed files with 831 additions and 279 deletions

View file

@ -255,7 +255,7 @@
-webkit-overflow-scrolling: touch;
}
.contactValueStatic {
.contactValueStatic, .contactValueLargeStatic, .contactValueTextAreaStatic {
height: 20px;
line-height: 20px;
font-size: 18px;
@ -266,11 +266,11 @@
}
&.read-only {
.contactValueStatic {
.contactValueStatic, .contactValueLargeStatic, .contactValueTextAreaStatic {
display: inline-block;
}
.contactValueInput {
.contactValueInput, .contactValueInputLarge, .contactValueTextArea {
display: none;
}
}
@ -303,12 +303,12 @@
color: #aaa;
}
.contactValueStatic {
.contactValueStatic, .contactValueLargeStatic, .contactValueTextAreaStatic {
font-size: 18px;
display: none;
}
.contactValueInput {
.contactValueInput, .contactValueInputLarge, .contactValueTextArea {
.box-shadow(none);
border-color: #fff;
font-size: 18px;
@ -337,6 +337,14 @@
color: #ddd;
}
}
.contactValueTextArea {
width: 300px;
}
.contactValueInputLarge {
width: 400px;
}
.hasError {
.contactValueInput {
@ -376,6 +384,12 @@
}
}
.button-add-prop {
position: absolute;
top: 60px;
right: 20px;
}
&.read-only {
.e-read-only-sign {
display: inline-block;

View file

@ -85,7 +85,7 @@ html.ssm-state-desktop-large {
}
.b-contacts-content.modal {
width: 800px;
width: 900px;
}
}
@ -112,7 +112,7 @@ html.ssm-state-desktop {
}
.b-contacts-content.modal {
width: 800px;
width: 900px;
}
}
@ -169,7 +169,7 @@ html.ssm-state-tablet {
}
.b-contacts-content.modal {
width: 700px;
width: 800px;
}
.b-contacts-content.modal {

View file

@ -175,6 +175,18 @@ html.rgba.textshadow {
border-bottom-right-radius: @btnBorderRadius;
}
.dropdown.colored-toggle.open .btn.dropdown-toggle {
color: #BD362F;
.caret {
border-top-color: #BD362F;
}
[class^="icon-"]:before {
color: #BD362F;
}
}
textarea, input[type="text"], input[type="password"], input[type="email"], input[type="search"] {
border: @rlInputBorderSize solid @inputBorder;