[Redizajn 1KA] - Sporočila --> Prejeta sporočila - v3

This commit is contained in:
tejagerjovic 2022-03-31 14:23:04 +02:00
parent 5dc5496521
commit 37abe35e75
3 changed files with 12 additions and 3 deletions

View File

@ -22829,7 +22829,10 @@ div.page_obvestila #notifications .notifications_content .notifications_content_
div.page_obvestila #notifications .notifications_content .notifications_content_left .recieved_list ul li div.title_row { div.page_obvestila #notifications .notifications_content .notifications_content_left .recieved_list ul li div.title_row {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
align-items: center;
justify-content: space-between;
margin-bottom: 8px; margin-bottom: 8px;
width: 100%;
} }
div.page_obvestila #notifications .notifications_content .notifications_content_left .sent_list ul li div.title_row div.subject, div.page_obvestila #notifications .notifications_content .notifications_content_left .sent_list ul li div.title_row div.subject,
div.page_obvestila #notifications .notifications_content .notifications_content_left .recieved_list ul li div.title_row div.subject { div.page_obvestila #notifications .notifications_content .notifications_content_left .recieved_list ul li div.title_row div.subject {
@ -22838,7 +22841,8 @@ div.page_obvestila #notifications .notifications_content .notifications_content_
} }
div.page_obvestila #notifications .notifications_content .notifications_content_left .sent_list ul li div.title_row div.date, div.page_obvestila #notifications .notifications_content .notifications_content_left .sent_list ul li div.title_row div.date,
div.page_obvestila #notifications .notifications_content .notifications_content_left .recieved_list ul li div.title_row div.date { div.page_obvestila #notifications .notifications_content .notifications_content_left .recieved_list ul li div.title_row div.date {
font-style: italic; font-size: 12px;
color: #808080;
} }
div.page_obvestila #notifications .notifications_content .notifications_content_left .sent_list ul li div.content, div.page_obvestila #notifications .notifications_content .notifications_content_left .sent_list ul li div.content,
div.page_obvestila #notifications .notifications_content .notifications_content_left .recieved_list ul li div.content { div.page_obvestila #notifications .notifications_content .notifications_content_left .recieved_list ul li div.content {

View File

@ -88,14 +88,19 @@ div.page_obvestila {
div.title_row { div.title_row {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
align-items: center;
justify-content: space-between;
margin-bottom: 8px; margin-bottom: 8px;
width: 100%;
div.subject { div.subject {
font-weight: $semi-bold; font-weight: $semi-bold;
margin-right: 8px; margin-right: 8px;
} }
div.date { div.date {
font-style: italic; font-size: 12px;
color: $very-dark-gray2;
} }
} }