blob: 9cd7c7c3317c9ec29cff24a7642e4aeb5b437a42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
.admin {
padding-top: 15px;
padding-bottom: @footer-margin * 2;
.table.segment {
padding: 0;
font-size: 13px;
th {
padding-top: 5px;
padding-bottom: 5px;
}
th, td {
&:first-child {
padding-left: 15px;
}
}
}
.ui.header,
.ui.segment {
box-shadow: 0 1px 2px 0 rgba(34,36,38,.15);
}
&.user {
.email {
max-width: 200px;
}
}
.admin-desc {
padding: 20px;
}
.admin-table{
.table{
width: 100%;
}
}
dl.admin-dl-horizontal {
padding: 20px;
margin: 0;
dd{
margin-left: 240px;
}
dt {
font-weight: bolder;
float: left;
width: 250px;
clear: left;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
}
|