mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-02 21:12:02 +08:00
82 lines
1.6 KiB
Text
82 lines
1.6 KiB
Text
.emailaddresses {
|
|
background-color: #fff;
|
|
border: 1px solid #ccc;
|
|
border-radius: 3px;
|
|
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
|
|
box-sizing: border-box;
|
|
cursor: text;
|
|
font-size: 90%;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
transition: border linear .2s, box-shadow linear .2s;
|
|
}
|
|
|
|
.emailaddresses.emailaddresses-focused {
|
|
border: 1px solid darken(@inputBorder, 20%);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.emailaddresses li {
|
|
display: inline-block;
|
|
}
|
|
.emailaddresses li[draggable] {
|
|
background-color: #eee;
|
|
border: 1px solid #aaa;
|
|
border-radius: 2px;
|
|
box-shadow: 0 1px 0 rgba(255,255,255,0.75) inset;
|
|
color: #555;
|
|
cursor: default;
|
|
max-width: 500px;
|
|
overflow: hidden;
|
|
margin: 2px;
|
|
padding: 2px 15px 2px 5px;
|
|
position: relative;
|
|
text-overflow: ellipsis;
|
|
vertical-align: middle;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.emailaddresses li.pgp {
|
|
background-color: #E5F3E2;
|
|
}
|
|
|
|
.emailaddresses li span {
|
|
padding-right: 3px;
|
|
}
|
|
|
|
.emailaddresses li a {
|
|
font-size: 12px;
|
|
color: #999;
|
|
padding: 1px;
|
|
position: absolute;
|
|
right: 2px;
|
|
text-decoration: none;
|
|
top: 1px;
|
|
}
|
|
.emailaddresses li a:hover {
|
|
color: #666;
|
|
}
|
|
|
|
.emailaddresses .emailaddresses-input {
|
|
margin: 0 2px;
|
|
padding: 0;
|
|
}
|
|
|
|
#rl-app .emailaddresses input[type="text"],
|
|
#rl-app .emailaddresses input[type="text"]:focus,
|
|
#rl-app .emailaddresses input[type="text"]:hover {
|
|
border: 0;
|
|
box-shadow: none;
|
|
height: auto;
|
|
line-height: inherit;
|
|
margin: 0;
|
|
padding: 4px;
|
|
vertical-align: baseline;
|
|
}
|
|
|
|
.emailaddresses li.emailaddresses-selected,
|
|
.emailaddresses li.emailaddresses-selected a {
|
|
background-color: Highlight;
|
|
color: HighlightText;
|
|
}
|