nettsiden/www/css/admin.css

108 lines
1.3 KiB
CSS
Raw Normal View History

2018-02-10 16:13:18 +01:00
.tools {
width: 100%;
margin: 0;
padding: 0;
list-style: none;
}
.tools li {
margin: 1.5em 0;
2017-10-07 23:12:10 +02:00
}
.event-list {
padding: 0;
list-style: none;
}
.event {
display: grid;
2018-08-10 00:18:28 +02:00
grid-template-columns: auto 5em;
2017-10-07 23:12:10 +02:00
margin-bottom: 2em;
padding-bottom: .5em;
2017-10-28 20:53:49 +02:00
border-bottom: 1px dotted rgba(0,0,0,0.5);
2017-10-07 23:12:10 +02:00
}
.event-info {
grid-column: 1;
overflow-x: hidden; /*force text wrap*/
word-wrap: break-word;
2017-10-07 23:12:10 +02:00
}
.event-info h3 {
padding: 0;
margin-top: 0;
}
.event-info p {
word-wrap: break-word;
}
2017-10-28 20:09:54 +02:00
.event-info a {
color: black;
text-decoration: none;
}
.event-info a:hover {
text-decoration: underline;
}
2017-10-07 23:12:10 +02:00
.event-actions {
grid-column: 2;
2018-08-10 00:18:28 +02:00
text-align: right;
}
.event-actions .btn {
margin: 0.3em 0;
2017-10-07 23:12:10 +02:00
display: inline-block;
}
2018-08-10 00:18:28 +02:00
.fullwidth_inputs input,
.fullwidth_inputs textarea {
width: 100%;
2017-10-07 23:12:10 +02:00
}
2017-10-12 00:38:28 +02:00
.allgrids {
grid-column: 1 / -1;
}
.float-right {
float: right;
}
.float-left {
float: left;
2017-10-12 00:38:28 +02:00
}
2017-11-11 17:00:08 +01:00
.userlist {
table-layout: fixed;
width: 100%;
margin: 1em 0;
}
.userlist tr th {
text-align: left;
}
.userlist tr {
border-bottom: 1px solid gray;
min-width: 100%;
}
.usergroupcheckbox {
margin-right: .3em;
}
.newuserrow {
background-color: #ddd;
}
.newuserelement {
background-color: #ddd;
border-bottom: 2px dotted gray;
}
.newuserelement input {
border: none;
background-color: #ddd;
}