source: sipes/modules_contrib/diff_revision/diff_revision.css @ ef72343

stableversion-3.0
Last change on this file since ef72343 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.7 KB
Línea 
1/*************************
2DaisyDiff
3*************************/
4/*
5 * Styles for the Tag Diff
6 */
7span.diff-tag-html {
8    font-family: "Andale Mono" monospace;
9    font-size: 80%;
10}
11
12span.diff-tag-removed {
13    font-size: 100%;
14    text-decoration: line-through;
15    background-color: #fdc6c6; /* light red */
16}
17
18span.diff-tag-added {
19    font-size: 100%;
20    background-color: #ccffcc; /* light green */
21}
22
23/*
24 * Styles for the HTML Diff
25 */
26span.diff-html-added {
27    font-size: 100%;
28    background-color: #ccffcc; /* light green */
29    cursor: pointer;
30}
31
32span.diff-html-removed {
33    font-size: 100%;
34    text-decoration: line-through;
35    background-color: #fdc6c6; /* light red */
36    cursor: pointer;
37}
38
39span.diff-html-changed {
40    position: relative;
41    background-color: #c6c6fd; /* light blue */
42    cursor: pointer;
43}
44
45span.diff-html-selected {
46    background-color: #FF8800; /* light orange */
47    cursor: pointer;
48}
49
50span.diff-html-selected img{
51    border: 2px solid #FF8800; /* light orange */
52}
53
54span.diff-html-added img{
55    border: 2px solid #ccffcc;
56}
57
58span.diff-html-removed img{
59    border: 2px solid #fdc6c6;
60}
61
62span.diff-html-changed img{
63    border: 2px dotted #000099;
64}
65 
66span.diff-html-changed span.tip {
67    display: none;        /* so is this */
68}
69
70/* tooltip will display on :hover event */
71 
72span.diff-html-changed:hover span.tip {
73    display: block;
74    position: absolute;
75    top: 2em; left: 2em; width: 15em;
76    text-align: left;
77    z-index: 100;
78    padding: 3px 7px 4px 6px;
79    border: 1px solid #336;
80    background-color: #f7f7ee;
81    font: normal 0.9em/1.2em arial, helvetica, sans-serif;
82    color: #000;
83}
84
85span.tip ul.changelist {
86    padding-left: 0px;
87}
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.