2013-11-16 06:21:12 +08:00
|
|
|
html {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
font-family: Arial, Verdana, Geneva, sans-serif;
|
2013-12-27 17:37:31 +08:00
|
|
|
height: 100%;
|
2013-11-16 06:21:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
2013-12-27 17:37:31 +08:00
|
|
|
height: 100%;
|
2013-11-16 06:21:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
resize: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
option:disabled {
|
|
|
|
color: #aaa;
|
|
|
|
cursor: not-allowed;
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
select:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2016-05-06 23:14:40 +08:00
|
|
|
html.mobile *, html.rl-mobile * {
|
2013-11-16 06:21:12 +08:00
|
|
|
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
2014-11-06 03:40:20 +08:00
|
|
|
}
|
|
|
|
|
2016-07-06 01:28:59 +08:00
|
|
|
input[type="search"]{
|
|
|
|
box-sizing: content-box;
|
|
|
|
}
|
2021-01-19 00:11:53 +08:00
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|