~ubuntu-branches/ubuntu/saucy/horde3/saucy

« back to all changes in this revision

Viewing changes to services/editor/htmlarea/plugins/ContextMenu/menu.css

  • Committer: Bazaar Package Importer
  • Author(s): Ola Lundqvist
  • Date: 2005-05-04 23:08:08 UTC
  • Revision ID: james.westby@ubuntu.com-20050504230808-p4hf3hk28o3v7wir
Tags: upstream-3.0.4
ImportĀ upstreamĀ versionĀ 3.0.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* styles for the ContextMenu /HTMLArea */
 
2
/* The ContextMenu plugin is (c) dynarch.com 2003. */
 
3
/* Distributed under the same terms as HTMLArea itself */
 
4
 
 
5
div.htmlarea-context-menu {
 
6
  position: absolute;
 
7
  border: 1px solid #aca899;
 
8
  padding: 2px;
 
9
  background-color: #fff;
 
10
  color: #000;
 
11
  cursor: default;
 
12
  z-index: 1000;
 
13
}
 
14
 
 
15
div.htmlarea-context-menu table {
 
16
  font: 11px tahoma,verdana,sans-serif;
 
17
  border-collapse: collapse;
 
18
}
 
19
 
 
20
div.htmlarea-context-menu tr.item td.icon img {
 
21
  width: 18px;
 
22
  height: 18px;
 
23
}
 
24
 
 
25
div.htmlarea-context-menu tr.item td.icon {
 
26
  padding: 0px 3px;
 
27
  height: 18px;
 
28
  background-color: #cdf;
 
29
}
 
30
 
 
31
div.htmlarea-context-menu tr.item td.label {
 
32
  padding: 1px 10px 1px 3px;
 
33
}
 
34
 
 
35
div.htmlarea-context-menu tr.separator td {
 
36
  padding: 2px 0px;
 
37
}
 
38
 
 
39
div.htmlarea-context-menu tr.separator td div {
 
40
  border-top: 1px solid #aca899;
 
41
  overflow: hidden;
 
42
  position: relative;
 
43
}
 
44
 
 
45
div.htmlarea-context-menu tr.separator td.icon {
 
46
  background-color: #cdf;
 
47
}
 
48
 
 
49
div.htmlarea-context-menu tr.separator td.icon div {
 
50
/*  margin-left: 3px; */
 
51
  border-color: #fff;
 
52
}
 
53
 
 
54
div.htmlarea-context-menu tr.separator td.label div {
 
55
  margin-right: 3px;
 
56
}
 
57
 
 
58
div.htmlarea-context-menu tr.item.hover {
 
59
  background-color: #316ac5;
 
60
  color: #fff;
 
61
}
 
62
 
 
63
div.htmlarea-context-menu tr.item.hover td.icon {
 
64
  background-color: #619af5;
 
65
}