Last active
January 20, 2019 06:08
CSS For ProtonMail Conversations
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
/* Conversation List Style */ | |
.conversation{ | |
background:#F8EFFB; | |
border-color: #FFFFFF; | |
border-width: thin; | |
} | |
.conversation.read{ | |
background:#DDDDDD; | |
border-color:#DDDDDD; | |
border-width:none; | |
} | |
.conversation.marked{ | |
z-index:1; | |
font-size:1.1em; | |
font-weight:bold; | |
border-color: #9ECAED; | |
border-width: thin; | |
box-shadow: 0em 0.1em 0.3em #9ECAED, 0em -0.1em 0.3em #9ECAED | |
} | |
.conversation.selected{ | |
outline: none; | |
border-color: #9ECAED; | |
box-shadow: 0 0 10px #9ECAED; | |
} | |
.conversation.active{ | |
z-index:2; | |
background:#F1FAED; | |
border-color: #F8EFFB; | |
color:#000000; | |
font-size:1.2em; | |
font-weight:bold; | |
outline: none; | |
border-color: #9ECAED; | |
box-shadow: 0em 0.3em 0.8em #9ECAED, 0em -0.3em 0.8em #9ECAED | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment