mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-14 11:44:54 +08:00
68 lines
903 B
Text
68 lines
903 B
Text
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
font-family: Arial, Verdana, Geneva, sans-serif;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
background-color: #e3e3e3;
|
|
font-family: Arial, Verdana, Geneva, sans-serif;
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
textarea {
|
|
resize: none;
|
|
}
|
|
|
|
option:disabled {
|
|
color: #aaa;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
* {
|
|
outline: none;
|
|
}
|
|
|
|
select:focus {
|
|
outline: none;
|
|
}
|
|
|
|
html.mobile *, html.rl-mobile * {
|
|
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
|
}
|
|
|
|
input[type="search"]{
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
.button-confirm-delete {
|
|
margin-right: 15px;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
}
|
|
.button-confirm-delete.delete-access {
|
|
margin-right: 0;
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.drag-handle {
|
|
color: #eee;
|
|
cursor: grab;
|
|
}
|
|
tr:hover .drag-handle {
|
|
color: #aaa;
|
|
}
|