fchat-rising/scss/_notes.scss

37 lines
920 B
SCSS
Raw Permalink Normal View History

2017-09-02 01:50:31 +00:00
.note-folder {
2019-09-17 17:14:14 +00:00
display: flex;
2017-09-02 01:50:31 +00:00
width: 100%;
.note-folder-total, .note-folder-unread {
width: 3.5rem;
text-align: center;
}
.note-folder-unread {
font-weight: bold;
}
.note-folder-name {
2019-09-17 17:14:14 +00:00
flex: 1;
2017-09-02 01:50:31 +00:00
}
}
.conversation-from-me, .conversation-from-them {
margin-bottom: 5px;
max-width: percentage((($grid-columns - 4) / $grid-columns));
2017-09-02 01:50:31 +00:00
word-wrap: break-word;
}
.conversation-from-me {
margin-right: percentage(( 4 / $grid-columns ));
background-color: $note-conversation-you-bg;
color: $note-conversation-you-text;
border-color: $note-conversation-you-border;
2017-09-02 01:50:31 +00:00
//text-align: left;
}
.conversation-from-them {
margin-left: percentage(( 4 / $grid-columns ));
background-color: $note-conversation-them-bg;
color: $note-conversation-them-text;
border-color: $note-conversation-them-border;
2017-09-02 01:50:31 +00:00
//text-align: right;
}