-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mark as seen in the gui on source selection
- Loading branch information
Allie Crevier
committed
Oct 22, 2020
1 parent
c31fff4
commit a9c318e
Showing
4 changed files
with
169 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
#SourceWidget_container { | ||
border-bottom: 1px solid #9b9b9b; | ||
} | ||
|
||
#SourceWidget_gutter { | ||
min-width: 40px; | ||
max-width: 40px; | ||
} | ||
|
||
#SourceWidget_metadata { | ||
max-width: 60px; | ||
} | ||
|
||
#SourceWidget_preview { | ||
font-family: 'Source Sans Pro'; | ||
font-weight: 400; | ||
font-size: 13px; | ||
color: #383838; | ||
} | ||
|
||
#SourceWidget_preview_unread { | ||
font-family: 'Source Sans Pro'; | ||
font-weight: 600; | ||
font-size: 13px; | ||
color: #000; | ||
} | ||
|
||
#SourceWidget_source_deleted { | ||
font-family: 'Source Sans Pro'; | ||
font-weight: 400; | ||
font-size: 13px; | ||
color: #ff3366; | ||
} | ||
|
||
#SourceWidget_name { | ||
font-family: 'Montserrat'; | ||
font-weight: 500; | ||
font-size: 13px; | ||
color: #383838; | ||
} | ||
|
||
#SourceWidget_name_unread { | ||
font-family: 'Montserrat'; | ||
font-weight: 600; | ||
font-size: 13px; | ||
color: #000; | ||
} | ||
|
||
#SourceWidget_timestamp { | ||
font-family: 'Montserrat'; | ||
font-weight: 500; | ||
font-size: 13px; | ||
color: #383838; | ||
} | ||
|
||
#SourceWidget_timestamp_unread { | ||
font-family: 'Montserrat'; | ||
font-weight: 600; | ||
font-size: 13px; | ||
color: #000; | ||
} |