1 |
2e8eada0
|
Scott Ullrich
|
|
2 |
|
|
/* Main style for the table */
|
3 |
|
|
|
4 |
|
|
.dp-highlighter {
|
5 |
|
|
width: 100%;
|
6 |
|
|
overflow: auto;
|
7 |
|
|
line-height: 100% !important;
|
8 |
|
|
margin: 18px 0px 18px 0px;
|
9 |
|
|
}
|
10 |
|
|
|
11 |
|
|
.dp-highlighter table {
|
12 |
|
|
width: 100%;
|
13 |
|
|
margin: 2px 0px 2px 0px;
|
14 |
|
|
border-collapse: collapse;
|
15 |
|
|
border-bottom: 2px solid #eee;
|
16 |
|
|
background-color: #fff;
|
17 |
|
|
}
|
18 |
|
|
|
19 |
|
|
.dp-highlighter td
|
20 |
|
|
{
|
21 |
|
|
font-family: Courier New;
|
22 |
|
|
font-size: 11px;
|
23 |
|
|
}
|
24 |
|
|
|
25 |
|
|
/* Styles for the tools */
|
26 |
|
|
|
27 |
|
|
.dp-highlighter .tools-corner {
|
28 |
|
|
background-color: #eee;
|
29 |
|
|
font-size: 9px;
|
30 |
|
|
}
|
31 |
|
|
|
32 |
|
|
.dp-highlighter .tools {
|
33 |
|
|
background-color: #eee;
|
34 |
|
|
padding: 3px 8px 3px 0px;
|
35 |
|
|
border-bottom: 1px solid gray;
|
36 |
|
|
font: 9px Verdana, Geneva, Arial, Helvetica, sans-serif;
|
37 |
|
|
color: silver;
|
38 |
|
|
}
|
39 |
|
|
|
40 |
|
|
.dp-highlighter .tools a {
|
41 |
|
|
font-size: 9px;
|
42 |
|
|
color: gray;
|
43 |
|
|
text-decoration: none;
|
44 |
|
|
}
|
45 |
|
|
|
46 |
|
|
.dp-highlighter .tools a:hover {
|
47 |
|
|
color: red;
|
48 |
|
|
text-decoration: underline;
|
49 |
|
|
}
|
50 |
|
|
|
51 |
|
|
/* Gutter with line number */
|
52 |
|
|
|
53 |
|
|
.dp-highlighter .gutter {
|
54 |
|
|
padding-right: 5px;
|
55 |
|
|
padding-left: 10px;
|
56 |
|
|
width: 5px;
|
57 |
|
|
background-color: #eee;
|
58 |
|
|
border-right: 1px solid gray;
|
59 |
|
|
color: gray;
|
60 |
|
|
text-align: right;
|
61 |
|
|
vertical-align: top;
|
62 |
|
|
}
|
63 |
|
|
|
64 |
|
|
/* Single line style */
|
65 |
|
|
|
66 |
|
|
.dp-highlighter .line {
|
67 |
|
|
padding-left: 10px;
|
68 |
|
|
border-bottom: 1px solid #F7F7F7;
|
69 |
|
|
white-space:nowrap;
|
70 |
|
|
}
|
71 |
|
|
|
72 |
|
|
/* About dialog styles */
|
73 |
|
|
|
74 |
|
|
.dp-about {
|
75 |
|
|
background-color: #fff;
|
76 |
|
|
margin: 0px;
|
77 |
|
|
}
|
78 |
|
|
|
79 |
|
|
.dp-about table {
|
80 |
|
|
width: 100%;
|
81 |
|
|
height: 100%;
|
82 |
|
|
font-size: 11px;
|
83 |
|
|
font-family: Tahoma, Verdana, Arial, sans-serif !important;
|
84 |
|
|
}
|
85 |
|
|
|
86 |
|
|
.dp-about td {
|
87 |
|
|
padding: 10px;
|
88 |
|
|
vertical-align: top;
|
89 |
|
|
}
|
90 |
|
|
|
91 |
|
|
.dp-about .copy {
|
92 |
|
|
border-bottom: 1px solid #ACA899;
|
93 |
|
|
height: 95%;
|
94 |
|
|
}
|
95 |
|
|
|
96 |
|
|
.dp-about .title {
|
97 |
|
|
color: red;
|
98 |
|
|
font-weight: bold;
|
99 |
|
|
}
|
100 |
|
|
|
101 |
|
|
.dp-about .para {
|
102 |
|
|
margin-bottom: 4px;
|
103 |
|
|
}
|
104 |
|
|
|
105 |
|
|
.dp-about .footer {
|
106 |
|
|
background-color: #ECEADB;
|
107 |
|
|
border-top: 1px solid #fff;
|
108 |
|
|
text-align: right;
|
109 |
|
|
}
|
110 |
|
|
|
111 |
|
|
.dp-about .close {
|
112 |
|
|
font-size: 11px;
|
113 |
|
|
font-family: Tahoma, Verdana, Arial, sans-serif !important;
|
114 |
|
|
background-color: #ECEADB;
|
115 |
|
|
width: 60px;
|
116 |
|
|
height: 22px;
|
117 |
|
|
}
|
118 |
|
|
|
119 |
|
|
/* Language specific styles */
|
120 |
|
|
|
121 |
|
|
.dp-c {}
|
122 |
|
|
.dp-c .comment { color: green; }
|
123 |
|
|
.dp-c .string { color: blue; }
|
124 |
|
|
.dp-c .preprocessor { color: gray; }
|
125 |
|
|
.dp-c .keyword { color: blue; }
|
126 |
|
|
.dp-c .vars { color: #d00; }
|
127 |
|
|
|
128 |
|
|
.dp-vb {}
|
129 |
|
|
.dp-vb .comment { color: green; }
|
130 |
|
|
.dp-vb .string { color: blue; }
|
131 |
|
|
.dp-vb .preprocessor { color: gray; }
|
132 |
|
|
.dp-vb .keyword { color: blue; }
|
133 |
|
|
|
134 |
|
|
.dp-sql {}
|
135 |
|
|
.dp-sql .comment { color: green; }
|
136 |
|
|
.dp-sql .string { color: red; }
|
137 |
|
|
.dp-sql .keyword { color: blue; }
|
138 |
|
|
.dp-sql .func { color: #ff1493; }
|
139 |
|
|
.dp-sql .op { color: #808080; }
|
140 |
|
|
|
141 |
|
|
.dp-xml {}
|
142 |
|
|
.dp-xml .cdata { color: #ff1493; }
|
143 |
|
|
.dp-xml .comments { color: green; }
|
144 |
|
|
.dp-xml .tag { color: blue; }
|
145 |
|
|
.dp-xml .tag-name { color: black; font-weight: bold; }
|
146 |
|
|
.dp-xml .attribute { color: red; }
|
147 |
|
|
.dp-xml .attribute-value { color: blue; }
|
148 |
|
|
|
149 |
|
|
.dp-delphi {}
|
150 |
|
|
.dp-delphi .comment { color: #008200; font-style: italic; }
|
151 |
|
|
.dp-delphi .string { color: blue; }
|
152 |
|
|
.dp-delphi .number { color: blue; }
|
153 |
|
|
.dp-delphi .directive { color: #008284; }
|
154 |
|
|
.dp-delphi .keyword { font-weight: bold; color: navy; }
|
155 |
|
|
.dp-delphi .vars { color: #000; }
|
156 |
|
|
|
157 |
|
|
.dp-py {}
|
158 |
|
|
.dp-py .comment { color: green; }
|
159 |
|
|
.dp-py .string { color: red; }
|
160 |
|
|
.dp-py .docstring { color: brown; }
|
161 |
|
|
.dp-py .keyword { color: blue; font-weight: bold;}
|
162 |
|
|
.dp-py .builtins { color: #ff1493; }
|
163 |
|
|
.dp-py .magicmethods { color: #808080; }
|
164 |
|
|
.dp-py .exceptions { color: brown; }
|
165 |
|
|
.dp-py .types { color: brown; font-style: italic; }
|
166 |
|
|
.dp-py .commonlibs { color: #8A2BE2; font-style: italic; }
|