1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
|
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
|
+
-
+
-
|
margin: 0;
padding: 0;
line-height: inherit;
font-size: inherit;
font-family: inherit;
cursor: pointer;
white-space: pre;
margin-right: 2px/*keep selection from nudging the right column */;
}
table.numbered-lines td.line-numbers > span:hover {
background-color: #777;
background-color: rgba(112, 112, 112, 0.25);
opacity: 0.25;
}
table.numbered-lines td.file-content {
padding-left: 1em;
}
table.numbered-lines td.file-content > pre {
margin: 0;
padding: 0;
|
1213
1214
1215
1216
1217
1218
1219
1220
|
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
table.numbered-lines td.line-numbers span.selected-line.start {
border-top-width: 1px;
margin-top: -1px/*restore alignment*/;
}
table.numbered-lines td.line-numbers span.selected-line.end {
border-bottom-width: 1px;
margin-top: -1px/*restore alignment*/;
}
table.numbered-lines td.line-numbers span.selected-line.start.end {
margin-top: -2px/*restore alignment*/;
}
.fossil-tooltip {
text-align: center;
padding: 0.2em 1em;
border: 1px solid black;
border-radius: 0.25em;
position: absolute;
display: inline-block;
z-index: 100;
box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.75);
background-color: inherit;
font-size: 80%;
}
|