main.css 1.44 KB
Newer Older
Qiang Xue committed
1
span.indent {
2
    color: #ccc;
Qiang Xue committed
3
}
4 5

ul.trace {
6 7 8 9 10 11
    font-size: 12px;
    color: #999;
    margin: 2px 0 0 0;
    padding: 0;
    list-style: none;
    white-space: normal;
12 13
}

14
.callout-danger {
15 16
    background-color: #fcf2f2;
    border-color: #dFb5b4;
17 18
}
.callout {
19 20
    margin: 0 0 10px 0;
    padding: 5px;
Qiang Xue committed
21 22 23
}

.list-group .glyphicon {
24
    float: right;
25
}
Qiang Xue committed
26

27
td, th {
28 29
    white-space: pre-wrap;
    word-wrap: break-word;
Qiang Xue committed
30
}
31

32
.request-table td {
33 34
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
    word-break: break-all;
35 36
}

37
.config-php-info-table td.v {
38
    word-break: break-all;
39 40
}

41
.not-set {
42 43
    color: #c55;
    font-style: italic;
44 45
}

46
.detail-grid-view th {
47 48 49 50 51
    white-space: nowrap;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
52 53 54 55 56 57 58 59
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    padding-left: 5px;
60 61 62
}

a.asc:after {
63
    content: /*"\e113"*/ "\e151";
64 65 66
}

a.desc:after {
67
    content: /*"\e114"*/ "\e152";
68 69 70
}

.sort-numerical a.asc:after {
71
    content: "\e153";
72 73 74
}

.sort-numerical a.desc:after {
75
    content: "\e154";
76 77 78
}

.sort-ordinal a.asc:after {
79
    content: "\e155";
80 81 82
}

.sort-ordinal a.desc:after {
83
    content: "\e156";
Qiang Xue committed
84
}
Mark committed
85 86

.mail-sorter {
87
    margin-top: 7px;
Mark committed
88 89 90
}

.mail-sorter li {
91 92 93 94
    list-style: none;
    float: left;
    width: 12%;
    font-weight: bold;
Mark committed
95
}
96 97 98 99

.nowrap {
    white-space: nowrap;
}