You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			227 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			SCSS
		
	
			
		
		
	
	
			227 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			SCSS
		
	
.gutter {
 | 
						|
  margin-top: 36px;
 | 
						|
}
 | 
						|
 | 
						|
#contacts {
 | 
						|
  overflow-y: scroll;
 | 
						|
}
 | 
						|
 | 
						|
.loading .gutter {
 | 
						|
  // TODO: spinner
 | 
						|
}
 | 
						|
 | 
						|
.contact {
 | 
						|
  .number, .checkbox {
 | 
						|
    display: none;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
input.new-message {
 | 
						|
  border: none;
 | 
						|
  padding: 0;
 | 
						|
  margin: 0;
 | 
						|
  outline: 0;
 | 
						|
}
 | 
						|
 | 
						|
.back {
 | 
						|
  display: none;
 | 
						|
  text-align: center;
 | 
						|
  button {
 | 
						|
    float: left;
 | 
						|
    width: 36px;
 | 
						|
    height: 36px;
 | 
						|
    background: $header-color url('/images/back.png') no-repeat center center;
 | 
						|
  }
 | 
						|
 | 
						|
  span {
 | 
						|
    display: inline-block;
 | 
						|
    height: 36px;
 | 
						|
    line-height: 36px;
 | 
						|
    font-family: $roboto-light;
 | 
						|
    color: $blue;
 | 
						|
    text-indent: -36px;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.new-conversation {
 | 
						|
  .new-group-update-form {
 | 
						|
    display: none;
 | 
						|
 | 
						|
    button.create-group {
 | 
						|
      float: right;
 | 
						|
    }
 | 
						|
 | 
						|
    .group-avatar {
 | 
						|
      float: left;
 | 
						|
      height: 36px;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  .buttons {
 | 
						|
    display: none;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.new-conversation {
 | 
						|
  .recipients-container {
 | 
						|
    background-color: white;
 | 
						|
    padding: 2px;
 | 
						|
    border-bottom: 1px solid #f2f2f2;
 | 
						|
    line-height: 24px;
 | 
						|
  }
 | 
						|
 | 
						|
  .recipient {
 | 
						|
    display: inline-block;
 | 
						|
    margin: 0 2px 2px 0;
 | 
						|
    padding: 0 5px;
 | 
						|
    border-radius: 10px;
 | 
						|
    background-color: $blue;
 | 
						|
    color: white;
 | 
						|
 | 
						|
    &.error {
 | 
						|
      background-color: #f00;
 | 
						|
    }
 | 
						|
 | 
						|
    .remove {
 | 
						|
      margin-left: 5px;
 | 
						|
      padding: 0 2px;
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.fab {
 | 
						|
  z-index: 1;
 | 
						|
  position: fixed;
 | 
						|
  right: 25px;;
 | 
						|
  bottom: 22px;
 | 
						|
  height: 50px;
 | 
						|
  width: 50px;
 | 
						|
  border: 0;
 | 
						|
  border-radius: (60px / 2);
 | 
						|
  outline: 0;
 | 
						|
  font: 300 36px $roboto;
 | 
						|
  color: white;
 | 
						|
  background: $blue url('/images/pencil.png') no-repeat center center;
 | 
						|
  box-shadow: 0 8px 8px -8px rgba(darken($blue, 50%), 0.8);
 | 
						|
  transition: box-shadow 0.33s, transform 0.33s, background 0.33s;
 | 
						|
 | 
						|
  &:hover {
 | 
						|
    background-color: darken($blue, 3%);
 | 
						|
    box-shadow: 0 8px 18px -8px rgba(darken($blue, 50%), 0.9);
 | 
						|
    transform: translate3d(0, -1px, 0);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.last-timestamp {
 | 
						|
  font-size: smaller;
 | 
						|
}
 | 
						|
 | 
						|
.new-conversation {
 | 
						|
  .last-message, .last-timestamp {
 | 
						|
    display: none;
 | 
						|
  }
 | 
						|
 | 
						|
  .contact {
 | 
						|
    .checkbox, .number {
 | 
						|
      display: inline-block;
 | 
						|
    }
 | 
						|
 | 
						|
    .number {
 | 
						|
      color: $grey;
 | 
						|
      font-size: small;
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.new-contact {
 | 
						|
  .contact-name { display: none; }
 | 
						|
  .contact-details::before {
 | 
						|
    content: 'Create new contact';
 | 
						|
    display: block;
 | 
						|
    font-style: italic;
 | 
						|
    opacity: 0.7;
 | 
						|
    padding-right: 8px;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.index {
 | 
						|
  color: $grey_d;
 | 
						|
  background: #eee;
 | 
						|
 | 
						|
  .contact {
 | 
						|
    position: relative;
 | 
						|
    padding: 12px;
 | 
						|
    background: white;
 | 
						|
    cursor: pointer;
 | 
						|
    transition: background 0.2s;
 | 
						|
    white-space: nowrap;
 | 
						|
    overflow: hidden;
 | 
						|
 | 
						|
    &::after {
 | 
						|
      content: '';
 | 
						|
      position: absolute;
 | 
						|
      right: 16px;
 | 
						|
      bottom: 0;
 | 
						|
      height: 1px;
 | 
						|
      width: calc(100% - 12px - 54px - 2 * 8px - 16px);
 | 
						|
      background: #eee;
 | 
						|
    }
 | 
						|
 | 
						|
    &:hover {
 | 
						|
      background: #f8f8f8;
 | 
						|
    }
 | 
						|
 | 
						|
    &:last-child {
 | 
						|
      box-shadow: 0 1px 3px rgba(#aaa, 0.8);
 | 
						|
 | 
						|
      &::after {
 | 
						|
        display: none;
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  .contact-details {
 | 
						|
    vertical-align: top;
 | 
						|
    display: inline-block;
 | 
						|
    margin: 4px 0 0 8px;
 | 
						|
  }
 | 
						|
 | 
						|
  .contact-name {
 | 
						|
    margin: 0;
 | 
						|
    font-size: 1em;
 | 
						|
    font-weight: 400;
 | 
						|
  }
 | 
						|
 | 
						|
  .last-message {
 | 
						|
    margin: 6px 0;
 | 
						|
    font-size: small;
 | 
						|
    font-weight: 300;
 | 
						|
  }
 | 
						|
 | 
						|
  .timestamp {
 | 
						|
    position: absolute;
 | 
						|
    top: 14px;
 | 
						|
    right: 12px;
 | 
						|
    color: #888;
 | 
						|
  }
 | 
						|
 | 
						|
  img {
 | 
						|
    height: 44px;
 | 
						|
    width: 44px;
 | 
						|
    background: $grey_l;
 | 
						|
    border-radius: (44px / 2);
 | 
						|
  }
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
.settings {
 | 
						|
  height: 100%;
 | 
						|
  width: 100%;
 | 
						|
  background: red;
 | 
						|
  display: none;
 | 
						|
 | 
						|
  .settings-open & {
 | 
						|
    display: block;
 | 
						|
  }
 | 
						|
}
 |