main.css 1.54 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 15 16 17 18 19 20
ul.assets {
    margin: 2px 0 0 0;
    padding: 0;
    list-style: none;
    white-space: normal;
}

21
.callout-danger {
22 23
    background-color: #fcf2f2;
    border-color: #dFb5b4;
24 25
}
.callout {
26 27
    margin: 0 0 10px 0;
    padding: 5px;
Qiang Xue committed
28 29 30
}

.list-group .glyphicon {
31
    float: right;
32
}
Qiang Xue committed
33

34
td, th {
35 36
    white-space: pre-wrap;
    word-wrap: break-word;
Qiang Xue committed
37
}
38

39
.request-table td {
40 41
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
    word-break: break-all;
42 43
}

44
.config-php-info-table td.v {
45
    word-break: break-all;
46 47
}

48
.not-set {
49 50
    color: #c55;
    font-style: italic;
51 52
}

53
.detail-grid-view th {
54 55 56 57 58
    white-space: nowrap;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
59 60 61 62 63 64 65 66
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    padding-left: 5px;
67 68 69
}

a.asc:after {
70
    content: /*"\e113"*/ "\e151";
71 72 73
}

a.desc:after {
74
    content: /*"\e114"*/ "\e152";
75 76 77
}

.sort-numerical a.asc:after {
78
    content: "\e153";
79 80 81
}

.sort-numerical a.desc:after {
82
    content: "\e154";
83 84 85
}

.sort-ordinal a.asc:after {
86
    content: "\e155";
87 88 89
}

.sort-ordinal a.desc:after {
90
    content: "\e156";
Qiang Xue committed
91
}
Mark committed
92 93

.mail-sorter {
94
    margin-top: 7px;
Mark committed
95 96 97
}

.mail-sorter li {
98 99 100 101
    list-style: none;
    float: left;
    width: 12%;
    font-weight: bold;
Mark committed
102
}
103 104 105

.nowrap {
    white-space: nowrap;
106
}