~ubuntu-branches/ubuntu/jaunty/drupal5/jaunty-updates

« back to all changes in this revision

Viewing changes to modules/color/color.css

  • Committer: Bazaar Package Importer
  • Author(s): Luigi Gangitano
  • Date: 2007-03-10 20:04:24 UTC
  • Revision ID: james.westby@ubuntu.com-20070310200424-w6v3crmyowlx2zsq
Tags: upstream-5.1
ImportĀ upstreamĀ versionĀ 5.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Farbtastic placement */
 
2
.color-form {
 
3
  max-width: 50em;
 
4
  position: relative;
 
5
}
 
6
#placeholder {
 
7
  position: absolute;
 
8
  top: 0;
 
9
  right: 0;
 
10
}
 
11
 
 
12
/* Palette */
 
13
.color-form .form-item {
 
14
  height: 2em;
 
15
  line-height: 2em;
 
16
  padding-left: 1em;
 
17
  margin: 0.5em 0;
 
18
}
 
19
.color-form label {
 
20
  float: left;
 
21
  clear: left;
 
22
  width: 10em;
 
23
}
 
24
.color-form .form-text, .color-form .form-select {
 
25
  float: left;
 
26
}
 
27
.color-form .form-text {
 
28
  text-align: center;
 
29
  margin-right: 5px;
 
30
  cursor: pointer;
 
31
}
 
32
 
 
33
#palette .hook {
 
34
  float: left;
 
35
  margin-top: 3px;
 
36
  width: 16px;
 
37
  height: 16px;
 
38
}
 
39
#palette .down, #palette .up, #palette .both {
 
40
  background: url(images/hook.png) no-repeat 100% 0;
 
41
}
 
42
#palette .up {
 
43
  background-position: 100% -27px;
 
44
}
 
45
#palette .both {
 
46
  background-position: 100% -54px;
 
47
}
 
48
 
 
49
#palette .lock {
 
50
  float: left;
 
51
  position: relative;
 
52
  top: -1.4em;
 
53
  left: -10px;
 
54
  width: 20px;
 
55
  height: 25px;
 
56
  background: url(images/lock.png) no-repeat 50% 2px;
 
57
  cursor: pointer;
 
58
}
 
59
#palette .unlocked {
 
60
  background-position: 50% -22px;
 
61
}
 
62
#palette .form-item {
 
63
  width: 20em;
 
64
}
 
65
#palette .item-selected {
 
66
  background: #eee;
 
67
}
 
68
 
 
69
/* Preview */
 
70
#preview {
 
71
  display: none;
 
72
}
 
73
html.js #preview {
 
74
  display: block;
 
75
  position: relative;
 
76
  float: left;
 
77
}