fchat-rising/scss/_notes.scss

46 lines
1.1 KiB
SCSS
Raw Normal View History

2017-09-02 01:50:31 +00:00
.note-folder {
clear: both;
width: 100%;
.note-folder-total, .note-folder-unread {
width: 3.5rem;
display: inline-block;
float: left;
text-align: center;
}
.note-folder-unread {
font-weight: bold;
float: right;
}
.note-folder-name {
width: auto;
display: inline-block;
float: left;
}
.note-folder-icon {
display: inline-block;
float: right;
}
}
.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;
}