mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-01 05:29:20 +03:00
Cleanup styling and gulp merge @media queries
This commit is contained in:
parent
d3d0180208
commit
e13337e247
60 changed files with 699 additions and 731 deletions
83
dev/Styles/User/EmailAddresses.less
Normal file
83
dev/Styles/User/EmailAddresses.less
Normal file
|
|
@ -0,0 +1,83 @@
|
|||
.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 {
|
||||
background-color: #fff;
|
||||
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: 0;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
.emailaddresses li.emailaddresses-selected,
|
||||
.emailaddresses li.emailaddresses-selected a {
|
||||
background-color: Highlight;
|
||||
color: HighlightText;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue