~racb/ubuntu/precise/cobbler/858860

« back to all changes in this revision

Viewing changes to web/content/style.css

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Chuck Short, Clint Byrum, Robie Basak
  • Date: 2011-11-15 12:35:40 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20111115123540-5g139uuhg7z0hv5d
Tags: 2.2.2-0ubuntu1
[Chuck Short]
* New upstream release:
  + Use dh_python2 everywhere.
  + Folded debian/patches/49_ubuntu_add_arm_arch_support.patch
    and debian/patches/56_ubuntu_arm_generate_pxe_files.patch
    into one patch for easier upstreaming.
  + Dropped debian/patches/50_fix_cobbler_timezone.patch:
    Fix upstream.
  + Dropped debian/patches/47_ubuntu_add_oneiric_codename.patch
    in favor of debian/patches/47_ubuntu_add_codenames.patch:
    It adds "precise" and drops unsupported releases as well.
  + Dropped debian/patches/41_update_tree_path_with_arch.patch:
    No longer needed.
  + Dropped debian/patches/55_ubuntu_branding.patch: Will be moved
    to orchestra

 [Clint Byrum]
 * debian/cobbler.postinst: create users.digest mode 0600 so it
   is not world readable. (LP: #858860)
 * debian/control: cobbler needs to depend on python-cobbler
   (LP: #863738)
 * debian/patches/58_fix_egg_cache.patch: Do not point dangerous
   PYTHON_EGG_CACHE at world writable directory. (LP: #858875)
 * debian/cobbler-common.install: remove users.digest as it is
   not required and contains a known password that would leave
   cobblerd vulnerable if started before configuration is done
 * debian/cobbler-web.postinst: fix perms on webui_sessions to
   be more secure (LP: #863755)

 [Robie Basak]
 * Backport safe YAML load from upstream. (LP: #858883)

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
}
28
28
/*End Reset*/
29
29
 
30
 
/* Ubuntu fonts */
31
 
@font-face {
32
 
  font-family: 'Ubuntu';
33
 
  font-style: normal;
34
 
  font-weight: bold;
35
 
  src: local('Ubuntu Bold'), local('Ubuntu-Bold'), url('/cobbler_webui_content/Ubuntu-B.ttf') format('truetype');
36
 
}
37
 
@font-face {
38
 
  font-family: 'Ubuntu';
39
 
  font-style: normal;
40
 
  font-weight: normal;
41
 
  src: local('Ubuntu'), url('/cobbler_webui_content/Ubuntu-R.ttf') format('truetype');
42
 
}
43
 
 
44
 
 
45
30
/* Lets set the primary styles and feel for the app */
46
31
body {
47
32
  height: 100%;
48
 
  font-family: Ubuntu, "URW Gothic", "Liberation Sans", "Helvetica", "Luxi Sans", "Bitstream Vera Sans", arial,helvetica,clean,sans-serif;
 
33
  font-family: "URW Gothic", "Liberation Sans", "Helvetica", "Luxi Sans", "Bitstream Vera Sans", arial,helvetica,clean,sans-serif;
49
34
  color: #333333;
50
 
  background-color: #FFFFFF;
51
 
  background-image: url('/cobbler_webui_content/logo-ubuntu.png');
 
35
  background-color: #EEEEEE;
 
36
  background-image: url('/cobbler_webui_content/logo-cobbler.png');
52
37
  background-repeat: no-repeat;
53
38
  background-position: 0% 0%;
54
39
  padding-top: 80px;
56
41
}
57
42
 
58
43
a { color: #333333; text-decoration: none; }
59
 
a:hover { color: #dddddd; }
 
44
a:hover { color: #306CAC; }
60
45
img { border: 0px; }
61
 
h1,h2,legend { color: #DD4814; font-weight: bold; }
 
46
h1,h2,legend { color: #306CAC; font-weight: bold; }
62
47
h1 { font-size: 1.5em; }
63
48
h2,legend { font-size: 1.2em; margin-bottom: 0px; }
64
49
hr { height: 1px; margin: 0px; }
65
 
input, textarea { background-color: white; padding: 2px 4px; border: 1px solid #DD4814; border-radius:4px; -moz-border-radius:4px; -webkit-border-radius:4px; }
 
50
input, textarea { background-color: white; padding: 2px 4px; border: 1px solid #306CAC; border-radius:4px; -moz-border-radius:4px; -webkit-border-radius:4px; }
66
51
input[type=text], input[type=password], select { width: 200px; }
67
52
input[type=submit], input[type=reset] { margin-top: 10px; }
68
53
input[type=checkbox] { background: none;  border: none; margin-right: 196px; margin-top: 5px; }
74
59
/* Defining the classes */
75
60
.button, .action {
76
61
  text-decoration: none;
77
 
  background-color: #DD4814;
 
62
  background-color: #306CAC;
78
63
  border: 0px;
79
64
  font-weight: bold;
80
65
  color: #dddddd;
87
72
}
88
73
.button:hover, .action:hover {
89
74
  color: #DDDDDD;
90
 
  background-color: #77216F;
 
75
  background-color: #333333;
91
76
}
92
77
.warn { color: #990000; font-weight: bold; font-size: 1.0em; }
93
78
.rpointers { font-size: 1.0em; margin-left: 5px; }
99
84
ol.sectionbody label { width: 300px; vertical-align: top; display: inline-block; line-height: 1.8; }
100
85
div.multiselect { display: -moz-inline-box; display:inline-block; vertical-align:top; clear: both; margin-bottom: 4px;}
101
86
div.multiselect label { width: auto; font-weight: normal; display: inline; }
102
 
div.multileft { float: left; text-align: left; width: 150px; }
103
 
div.multileft select, div.multiright select { height: 156px; width: 150px; }
 
87
div.multileft { float: left; text-align: left; width: auto; }
 
88
div.multileft select, div.multiright select { height: 156px; min-width: 150px; width: auto; }
104
89
div.multibuttons { width: 55px; padding-top: 75px; float: left;}
105
90
div.multibuttons input.button { font-size: .8em; clear: both; width: 50px; margin: 2px;}
106
 
div.multiright { float: left; text-align: right; width: 150px; }
 
91
div.multiright { float: left; text-align: right; width: auto; }
107
92
li.paginate { float:right; }
108
93
li.paginate select { width: auto; }
109
94
span.context-tip {
110
95
  background-repeat: no-repeat;
111
96
  background-image: url('/cobbler_webui_content/tooltip.png');
112
97
  padding-left: 30px;
113
 
  color: #FFFFFF;
 
98
  color: #EEEEEE;
114
99
}
115
100
span.context-tip:hover {
116
101
  background: none;
117
102
  padding: 0;
118
 
  color: #c099b8;
 
103
  color: #333333;
119
104
  font-size: .7em;
120
105
  font-style: italic;
121
106
}
146
131
#batchactions option:first-child { font-weight: bold; padding-left: 0; }
147
132
 
148
133
#listitems { clear: both; }
149
 
#listitems thead { background-color: #DD4814; color: #dddddd; font-weight: bold; text-align: left; }
 
134
#listitems thead { background-color: #306CAC; color: #dddddd; font-weight: bold; text-align: left; }
150
135
#listitems thead a { color: #dddddd; }
151
136
#listitems thead tr th:first-child { width: 2em; padding-left: .3em;}
152
137
#listitems tbody tr a.action, #listitems tbody tr span.action { font-size: .8em; float: left; padding: 1px 7px; }
153
138
#listitems tbody tr { background-color: #eeeeee; }
154
139
#listitems tbody tr.selected { background-color: #e0e0e0; }
155
 
#listitems tbody tr:hover { background-color: #c099b8; }
 
140
#listitems tbody tr:hover { background-color: #cccccc; }
156
141
#listitems tbody td { border-bottom: 1px solid #cccccc; }
157
142
#listitems tbody td:first-child { width: 2em; padding-left: .3em;}
158
143
#listitems tbody td:last-child { width: 21em; }