source: sipes/modules_contrib/diff/diff.css @ 177a560

stableversion-3.0
Last change on this file since 177a560 was 177a560, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego el directorio de modulos contribuidos de drupal

  • Propiedad mode establecida a 100644
File size: 1.5 KB
Línea 
1
2html.js .diff-js-hidden { display:none; }
3
4/**
5 * Inline diff metadata
6 */
7.diff-inline-metadata {
8  padding:4px;
9  border:1px solid #ddd;
10  background:#fff;
11  margin:0px 0px 10px;
12  }
13
14.diff-inline-legend { font-size:11px; }
15
16.diff-inline-legend span,
17.diff-inline-legend label { margin-right:5px; }
18
19/**
20 * Inline diff markup
21 */
22span.diff-deleted { color:#ccc; }
23span.diff-deleted img { border: solid 2px #ccc; }
24span.diff-changed { background:#ffb; }
25span.diff-changed img { border:solid 2px #ffb; }
26span.diff-added { background:#cfc; }
27span.diff-added img { border: solid 2px #cfc; }
28
29/**
30 * Traditional split diff theming
31 */
32table.diff {
33  border-spacing: 4px;
34  margin-bottom: 20px;
35  table-layout: fixed;
36  width: 100%;
37}
38table.diff tr.even, table.diff tr.odd {
39  background-color: inherit;
40  border: none;
41}
42td.diff-prevlink {
43  text-align: left;
44}
45td.diff-nextlink {
46  text-align: right;
47}
48td.diff-section-title, div.diff-section-title {
49  background-color: #f0f0ff;
50  font-size: 0.83em;
51  font-weight: bold;
52  padding: 0.1em 1em;
53}
54td.diff-deletedline {
55  background-color: #ffa;
56  width: 50%;
57}
58td.diff-addedline {
59  background-color: #afa;
60  width: 50%;
61}
62td.diff-context {
63  background-color: #fafafa;
64}
65span.diffchange {
66  color: #f00;
67  font-weight: bold;
68}
69
70table.diff col.diff-marker {
71  width: 1.4em;
72}
73table.diff col.diff-content {
74  width: 50%;
75}
76table.diff th {
77  padding-right: inherit;
78}
79table.diff td div {
80  overflow: auto;
81  padding: 0.1ex 0.5em;
82  word-wrap: break-word;
83}
84table.diff td {
85  padding: 0.1ex 0.4em;
86}
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.