1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-24 13:52:44 +03:00
guide/static/admin.css

117 lines
1.7 KiB
CSS
Raw Normal View History

2016-04-14 01:56:13 +03:00
/* Making textboxes and other text inputs behave normally (i.e. now an input
with width:100%;padding:10px is going to take 100% of width, not
100%+20px) */
*, *:before, *:after {
2016-06-19 22:41:02 +03:00
box-sizing: border-box;
}
2016-04-14 01:56:13 +03:00
body {
2016-06-19 22:41:02 +03:00
font-family: sans-serif;
}
2016-04-14 01:56:13 +03:00
.text-button {
font-size: 10pt;
2016-06-19 22:41:02 +03:00
font-weight: normal;
}
2016-04-14 01:56:13 +03:00
.text-button::before {content: "[";}
.text-button::after {content: "]";}
textarea {
2016-06-19 22:41:02 +03:00
font-size: 100%;
}
2016-04-14 01:56:13 +03:00
input {
2016-06-19 22:41:02 +03:00
font-size: 100%;
}
2016-04-14 01:56:13 +03:00
.text-button > a:visited {color: #008ACE;}
textarea {
border: 1px solid #ccc;
2016-06-19 22:41:02 +03:00
padding: 5px 7px;
}
2016-04-14 01:56:13 +03:00
textarea:focus {
outline: 0px none;
2016-06-19 22:41:02 +03:00
border: 1px solid #07C;
}
2016-04-14 01:56:13 +03:00
2016-05-25 23:57:12 +03:00
.edit {
padding: 0.3em 1em;
margin: 1em 0.5em;
2016-06-19 22:41:02 +03:00
box-shadow: 0 1px 5px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
2016-05-25 23:57:12 +03:00
.edit-info {
color: gray;
2016-06-19 22:41:02 +03:00
opacity: 0.8;
}
2016-05-25 23:57:12 +03:00
#edits > * > h2 {
2016-06-19 22:41:02 +03:00
margin-top: 3em;
}
2016-05-25 23:57:12 +03:00
2016-05-04 21:03:23 +03:00
#edits table {
2016-04-14 01:56:13 +03:00
width: 100%;
border: none;
2016-06-19 22:41:02 +03:00
table-layout: fixed;
}
2016-04-14 01:56:13 +03:00
2016-05-04 21:03:23 +03:00
#edits td {
2016-04-14 01:56:13 +03:00
width: 100%;
2016-05-04 21:03:23 +03:00
vertical-align: top;
2016-06-19 22:41:02 +03:00
padding: 0.5em 0.5em;
}
2016-04-14 01:56:13 +03:00
2016-05-04 21:03:23 +03:00
#edits td:first-child {
2016-06-19 22:41:02 +03:00
padding-left: 0;
}
2016-04-14 01:56:13 +03:00
2016-05-04 21:03:23 +03:00
#edits td:last-child {
2016-06-19 22:41:02 +03:00
padding-right: 0;
}
2016-05-04 21:03:23 +03:00
2017-06-10 21:45:32 +03:00
#edits pre {
white-space: pre-wrap;
}
#edits .empty-chunk {
padding-right: 5px;
border: 1px dashed black;
border-radius: 4px;
}
2016-05-04 21:03:23 +03:00
#stats table {
border-collapse: collapse;
border-spacing: 0;
empty-cells: show;
border: 1px solid gray;
2016-06-19 22:41:02 +03:00
margin-bottom: 1em;
}
2016-05-04 21:03:23 +03:00
#stats thead {
2016-06-19 22:41:02 +03:00
background-color: #e0e0e0;
}
2016-05-04 21:03:23 +03:00
2016-05-08 16:29:07 +03:00
#stats th {
2016-06-19 22:41:02 +03:00
text-align: left;
}
2016-05-08 16:29:07 +03:00
#stats td {
word-break: break-all;
}
2016-05-04 21:03:23 +03:00
#stats th, #stats td {
2016-06-19 22:41:02 +03:00
padding: 0.5em 1em;
}
2016-05-08 16:29:07 +03:00
table.sortable th {
2016-06-19 22:41:02 +03:00
cursor: pointer;
}
2016-05-08 16:29:07 +03:00
table.sortable th:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort):after {
2016-06-19 22:41:02 +03:00
content: " \25B4\25BE";
}