root/galaxy-central/static/light_hatched_style/green/history.css @ 2

リビジョン 2, 1.9 KB (コミッタ: hatakeyama, 14 年 前)

import galaxy-central

行番号 
1body
2{
3    background: white;
4    color: #303030;
5    background-image: url(/static/style/menu_bg.png);
6    background-repeat: repeat-x;
7    background-position: top;
8    margin-top: 5px;
9    margin-right: 0;
10    margin-left: 0;
11    border: 0;
12    padding: 0;
13}
14
15a
16{
17    color: #base_text;
18}
19
20div.historyItem
21{
22    padding: 5px;
23    padding-right: 15px;
24    padding-left: 15px;
25    margin-bottom: 5px;
26}
27
28div.historyItem-ok
29{
30    padding: 5px;
31    padding-right: 15px;
32    padding-left: 15px;
33    margin-bottom: 5px;
34    border-top: solid #66AA66 1px;
35    border-bottom: solid #66AA66 1px;
36    background: #CCFFCC;
37    background-image: url(/static/style/ok_bg.png);
38    background-repeat: repeat-x;
39    background-position: top;
40   
41}
42
43div.historyItem-error
44{
45    padding: 5px;
46    padding-right: 15px;
47    padding-left: 15px;
48    margin-bottom: 5px;
49    border-top: solid #AA6666 1px;
50    border-bottom: solid #AA6666 1px;
51    background: #FFCCCC;
52    background-image: url(/static/style/error_bg.png);
53    background-repeat: repeat-x;
54    background-position: top;
55}
56
57div.historyItem-running
58{
59    padding: 5px;
60    padding-right: 15px;
61    padding-left: 15px;
62    margin-bottom: 5px;
63    border-top: solid #AAAA66 1px;
64    border-bottom: solid #AAAA66 1px;
65    background: #FFFFCC;
66    background-image: url(/static/style/warn_bg.png);
67    background-repeat: repeat-x;
68    background-position: top;
69}
70
71div.historyItem-queued
72{
73    padding: 5px;
74    padding-right: 15px;
75    padding-left: 15px;
76    margin-bottom: 5px;
77    border-top: solid #888888 1px;
78    border-bottom: solid #888888 1px;
79    background: #EEEEEE;
80    background-image: url(/static/style/gray_bg.png);
81    background-repeat: repeat-x;
82    background-position: top;
83}
84
85div.historyItemBody div
86{
87    padding-top: 2px;
88}
89
90pre.peek
91{
92    background: white;
93    color: black;
94    width: 100%;
95    overflow: auto;
96}
97
98pre.peek th
99{
100    color: white;
101    background: #023858;
102}
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。