themes/enanium/css/babygrand.css
author Dan
Thu, 17 Dec 2009 04:27:50 -0500
changeset 1168 277a9cdead3e
parent 1107 2d37a11fabd8
child 1227 bdac73ed481e
permissions -rw-r--r--
Namespace_Default: added a workaround for an inconsistency in SQL. Basically, if you join the same table multiple times under multiple aliases, COUNT() always uses the first instance. Was affecting the comment counter in the "discussion" button.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
921
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
     1
/**
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
     2
 * Enanium - Baby Grand
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
     3
 * Polished black default theme for Enano CMS
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
     4
 * Copyright (C) 2009 Dan Fuhry
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
     5
 */
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
     6
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
     7
/* Core definitions - structure */
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
     8
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
     9
html, body {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    10
  margin: 0;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    11
  padding: 0;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    12
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    13
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    14
div {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    15
  margin: 0;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    16
  padding: 0;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    17
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    18
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    19
body {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    20
  background-image: url(../images/background.gif);
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    21
  background-color: #2a2a29;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    22
  font-family: trebuchet ms, verdana, tahoma, arial, helvetica, sans-serif;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    23
  font-size: 9pt;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    24
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    25
1107
2d37a11fabd8 Enanium: fixed background in tinymce
Dan
parents: 1100
diff changeset
    26
body#tinymce {
2d37a11fabd8 Enanium: fixed background in tinymce
Dan
parents: 1100
diff changeset
    27
  background-image: none;
2d37a11fabd8 Enanium: fixed background in tinymce
Dan
parents: 1100
diff changeset
    28
  background-color: #f0f0f0;
2d37a11fabd8 Enanium: fixed background in tinymce
Dan
parents: 1100
diff changeset
    29
}
2d37a11fabd8 Enanium: fixed background in tinymce
Dan
parents: 1100
diff changeset
    30
921
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    31
table#body-wrapper {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    32
  width: 100%;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    33
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    34
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    35
body.simple table#body-wrapper {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    36
  width: 70%;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    37
  margin: 0 auto;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    38
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    39
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    40
td#cell-sbleft {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    41
  background-image: url(../images/transb50.png);
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    42
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    43
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    44
td#cell-content {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    45
  background-color: #fff;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    46
  padding: 0;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    47
  width: 100%;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    48
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    49
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    50
/* Global - links */
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    51
a {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    52
  text-decoration: none;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    53
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    54
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    55
a:link, a:visited {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    56
  color: #356a9e;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    57
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    58
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    59
div#content-wrapper a:visited {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    60
  color: #4c84bb;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    61
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    62
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    63
a:link:hover {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    64
  color: #6a95c0;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    65
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    66
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    67
/* Header */
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    68
div#header {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    69
  line-height: 122px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    70
  /* background-image: url(../images/top.gif); */
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    71
  background-repeat: repeat-x;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    72
  color: #a9a9a9;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    73
  padding: 0 1.3em;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    74
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    75
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    76
body.simple div#header {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    77
  line-height: 78px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    78
  width: 75%;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    79
  margin: 100px auto 0 auto;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    80
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    81
1100
aead4e1ce5df Enanium: custom header now has an <a> floating above it that links to the main page.
Dan
parents: 1081
diff changeset
    82
a.header-placeholder {
aead4e1ce5df Enanium: custom header now has an <a> floating above it that links to the main page.
Dan
parents: 1081
diff changeset
    83
  display: block;
aead4e1ce5df Enanium: custom header now has an <a> floating above it that links to the main page.
Dan
parents: 1081
diff changeset
    84
  width: 60%;
aead4e1ce5df Enanium: custom header now has an <a> floating above it that links to the main page.
Dan
parents: 1081
diff changeset
    85
  min-width: 500px;
aead4e1ce5df Enanium: custom header now has an <a> floating above it that links to the main page.
Dan
parents: 1081
diff changeset
    86
  position: absolute;
aead4e1ce5df Enanium: custom header now has an <a> floating above it that links to the main page.
Dan
parents: 1081
diff changeset
    87
  top: 0;
aead4e1ce5df Enanium: custom header now has an <a> floating above it that links to the main page.
Dan
parents: 1081
diff changeset
    88
  left: 0;
aead4e1ce5df Enanium: custom header now has an <a> floating above it that links to the main page.
Dan
parents: 1081
diff changeset
    89
}
aead4e1ce5df Enanium: custom header now has an <a> floating above it that links to the main page.
Dan
parents: 1081
diff changeset
    90
921
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    91
div#header h1 {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    92
  margin: 0;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    93
  font-weight: normal;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    94
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    95
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    96
div#header h1 a {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    97
  color: white;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    98
  padding-right: 20px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
    99
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   100
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   101
div#header h1 a:hover {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   102
  background-image: url(../images/home.gif);
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   103
  background-repeat: no-repeat;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   104
  background-position: center right;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   105
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   106
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   107
div.logo {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   108
  width: 96px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   109
  height: 122px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   110
  background-image: url(../images/logo.png);
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   111
  background-position: center center;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   112
  background-repeat: no-repeat;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   113
  float: left;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   114
  margin: 0 7px 0 -13px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   115
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   116
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   117
/* Userlinks */
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   118
ul.useropts {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   119
  position: absolute;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   120
  margin: 0;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   121
  right: 10px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   122
  line-height: 19px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   123
  top: 99px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   124
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   125
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   126
ul.useropts li {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   127
  display: block;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   128
  float: left;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   129
  margin-right: 4px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   130
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   131
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   132
ul.useropts li a {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   133
  color: #a9b2e3;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   134
  display: block;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   135
  padding: 2px 12px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   136
  background-color: #30475d;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   137
  -moz-border-radius: 6px 6px 0 0;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   138
  border-radius: 6px 6px 0 0;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   139
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   140
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   141
ul.useropts li.em a {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   142
  color: #b9d0e3;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   143
  background-color: #405f7c;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   144
  font-weight: bold;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   145
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   146
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   147
ul.useropts li:hover {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   148
  position: relative;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   149
  top: -2px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   150
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   151
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   152
ul.useropts li:hover > a {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   153
  padding: 2px 12px 4px 12px;
1081
745200a9cc2a Fixed some upgrade bugs; added support for choosing one's own date/time formats; rebrand as 1.1.7
Dan
parents: 1075
diff changeset
   154
  color: #b9d0e3;
921
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   155
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   156
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   157
ul.useropts li.logout:hover > a {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   158
  color: #e9e9e9;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   159
  background-color: #701010;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   160
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   161
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   162
/* Search form */
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   163
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   164
form.searchform {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   165
  position: absolute;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   166
  /* background-color: #292929; */
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   167
  background-image: url(../images/transb50.png);
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   168
  top: 0px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   169
  right: 10px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   170
  padding: 7px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   171
  text-align: right;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   172
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   173
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   174
/* Sidebars */
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   175
div.sidebar.left {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   176
  width: 150px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   177
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   178
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   179
div.sidebar.right {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   180
  float: right;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   181
  width: 170px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   182
  margin: 0 0 0 20px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   183
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   184
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   185
div.sidebar.right div.slider {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   186
  padding: 10px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   187
  background-color: #bed8ef;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   188
  -moz-border-radius: 10px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   189
  border-radius: 10px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   190
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   191
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   192
div.sidebar h4 {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   193
  margin: 0;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   194
  padding: 5px 3px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   195
  color: #90B0D0;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   196
  border-bottom: 1px dotted #5b6f80;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   197
  font-size: 10pt;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   198
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   199
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   200
div.sidebar div.slider {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   201
  font-size: 8pt;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   202
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   203
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   204
div.sidebar h4 a {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   205
  cursor: pointer;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   206
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   207
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   208
div.sidebar.right h4 {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   209
  color: #5a87b3;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   210
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   211
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   212
div.sidebar ul.linkblock {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   213
  margin: 0;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   214
  padding: 0;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   215
  list-style-type: none;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   216
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   217
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   218
div.sidebar ul.linkblock li a {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   219
  display: block;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   220
  color: #b2b2b2;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   221
  padding: 5px 3px 5px 0.9em;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   222
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   223
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   224
div.sidebar ul.linkblock li a:hover {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   225
  color: #c5c5c5;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   226
  background-color: #292929;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   227
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   228
958
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   229
div.sidebar a.closebtn {
955
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   230
  display: block;
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   231
  float: right;
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   232
  margin-right: 10px;
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   233
  color: #456798;
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   234
  background-color: #f0f0f0;
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   235
  padding: 0 8px;
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   236
  -moz-border-radius: 0 0 4px 4px;
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   237
  cursor: pointer;
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   238
}
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   239
958
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   240
div.sidebar.left a.closebtn {
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   241
  color: #f0f0f0;
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   242
  background-color: #404040;
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   243
  margin-right: 0px;
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   244
  -moz-border-radius: 0 0 0 4px;
965
72b37471cce0 Enanium: left collapse button same size as jBox bars now
Dan
parents: 958
diff changeset
   245
  padding: 1pt 5px;
72b37471cce0 Enanium: left collapse button same size as jBox bars now
Dan
parents: 958
diff changeset
   246
  font-size: 10pt;
958
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   247
}
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   248
955
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   249
div.right-sidebar-hidden {
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   250
  margin-left: 10px;
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   251
  display: none;
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   252
}
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   253
958
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   254
div.left-sidebar-hidden {
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   255
  display: none;
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   256
  position: absolute;
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   257
}
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   258
955
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   259
div.right-sidebar-hidden a.openbtn {
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   260
  display: block;
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   261
  float: right;
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   262
  margin-right: -20px;
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   263
  color: #456798;
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   264
  background-color: #f0f0f0;
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   265
  padding: 5px 8px;
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   266
  -moz-border-radius: 4px 0 0 4px;
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   267
  cursor: pointer;
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   268
}
de4f81abc5e3 Enanium: Set right sidebar as collapsible. Whether I will do the left one I do not know.
Dan
parents: 948
diff changeset
   269
958
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   270
div.left-sidebar-hidden a.openbtn {
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   271
  display: block;
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   272
  float: left;
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   273
  margin-top: 1.8em;
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   274
  color: #456798;
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   275
  background-color: #f0f0f0;
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   276
  padding: 5px 4px;
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   277
  -moz-border-radius: 0 4px 4px 0;
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   278
  cursor: pointer;
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   279
}
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   280
921
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   281
div.slider {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   282
  margin-bottom: 7px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   283
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   284
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   285
/* Content area */
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   286
div#content-wrapper {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   287
  margin: 0;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   288
  padding: 20px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   289
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   290
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   291
div.content {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   292
  /* Though very subtle, this makes the entire theme less harsh especially with Trebuchet. */
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   293
  color: #202020;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   294
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   295
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   296
div.content h1, div.content h2 {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   297
  border-bottom: 1px solid #90B0D0;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   298
  margin-top: 0.2em;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   299
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   300
1004
e01c51cc1b35 Enanium: bumped top heading down a few px
Dan
parents: 977
diff changeset
   301
div.content h1#h2PageName {
e01c51cc1b35 Enanium: bumped top heading down a few px
Dan
parents: 977
diff changeset
   302
  margin: 0.2em 0 0 0;
e01c51cc1b35 Enanium: bumped top heading down a few px
Dan
parents: 977
diff changeset
   303
}
e01c51cc1b35 Enanium: bumped top heading down a few px
Dan
parents: 977
diff changeset
   304
921
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   305
div.content p {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   306
  margin-left: 0.8em;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   307
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   308
948
db32e8e09f09 Enanium: added wikilink-nonexistent
Dan
parents: 921
diff changeset
   309
/* Wikilinks to pages that don't exist */
db32e8e09f09 Enanium: added wikilink-nonexistent
Dan
parents: 921
diff changeset
   310
div.content a.wikilink-nonexistent {
db32e8e09f09 Enanium: added wikilink-nonexistent
Dan
parents: 921
diff changeset
   311
  color: #B05020;
db32e8e09f09 Enanium: added wikilink-nonexistent
Dan
parents: 921
diff changeset
   312
}
db32e8e09f09 Enanium: added wikilink-nonexistent
Dan
parents: 921
diff changeset
   313
db32e8e09f09 Enanium: added wikilink-nonexistent
Dan
parents: 921
diff changeset
   314
div.content a.wikilink-nonexistent:visited {
977
322a9bf1e280 Enanium: fixed visited wikilink-nonexistent links
Dan
parents: 965
diff changeset
   315
  color: #906030 !important;
948
db32e8e09f09 Enanium: added wikilink-nonexistent
Dan
parents: 921
diff changeset
   316
}
db32e8e09f09 Enanium: added wikilink-nonexistent
Dan
parents: 921
diff changeset
   317
1045
ce069a06906c Enanium: <pre> elements under div.content are now indented
Dan
parents: 1004
diff changeset
   318
/* I know it's bad to support plugins in core code, but indented paragraphs tend to be specific to themes I designed.
ce069a06906c Enanium: <pre> elements under div.content are now indented
Dan
parents: 1004
diff changeset
   319
   This is for consistency between paragraphs and code blocks. */
ce069a06906c Enanium: <pre> elements under div.content are now indented
Dan
parents: 1004
diff changeset
   320
div.content pre, pre.geshi_highlighted {
ce069a06906c Enanium: <pre> elements under div.content are now indented
Dan
parents: 1004
diff changeset
   321
  margin-left: 0.8em;
ce069a06906c Enanium: <pre> elements under div.content are now indented
Dan
parents: 1004
diff changeset
   322
}
ce069a06906c Enanium: <pre> elements under div.content are now indented
Dan
parents: 1004
diff changeset
   323
921
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   324
/* Inline rename */
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   325
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   326
input#pageheading {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   327
  font-family: trebuchet ms, verdana, arial, helvetica, sans-serif;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   328
  font-size: 18pt;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   329
  font-weight: bold;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   330
  border-width: 0 0 1px 0;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   331
  width: 100%;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   332
  border-bottom: 1px solid #90B0D0;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   333
  margin: 0;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   334
  padding: 0;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   335
  color: #202020;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   336
  background-color: rgb(240, 240, 240, 0.5);
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   337
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   338
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   339
input#pageheading:focus {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   340
  background-color: #fafafa;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   341
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   342
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   343
/* External links */
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   344
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   345
div.content a[href ^="http://"], div#messageBox a[href ^="http://"] {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   346
  color: #4d78a2;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   347
  background: url(../images/links/external.gif) center right no-repeat;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   348
  padding-right: 16px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   349
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   350
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   351
div.content a[href ^="https://"], div#messageBox a[href ^="https://"] {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   352
  color: #4d78a2;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   353
  background: url(../images/links/https.gif)    center right no-repeat;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   354
  padding-right: 16px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   355
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   356
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   357
div.content a[href ^="mailto:"], div#messageBox a[href ^="mailto:"] {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   358
  color: #4d78a2;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   359
  background: url(../images/links/email.gif)    center right no-repeat;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   360
  padding-right: 16px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   361
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   362
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   363
div.content a[href ^="irc://"], div#messageBox a[href ^="irc://"] {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   364
  color: #4d78a2;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   365
  background: url(../images/links/irc.gif)      center right no-repeat;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   366
  padding-right: 16px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   367
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   368
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   369
div.content a[href ^="http://"]:hover, div#messageBox a[href ^="http://"]:hover {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   370
  color: #6488ad;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   371
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   372
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   373
div.content a[href ^="https://"]:hover, div#messageBox a[href ^="https://"]:hover {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   374
  color: #6488ad;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   375
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   376
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   377
div.content a[href ^="mailto:"]:hover, div#messageBox a[href ^="mailto:"]:hover {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   378
  color: #6488ad;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   379
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   380
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   381
div.content a[href ^="irc://"]:hover, div#messageBox a[href ^="irc://"]:hover {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   382
  color: #6488ad;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   383
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   384
1075
f4b89aa4226d Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents: 1057
diff changeset
   385
div.content a.no_external, div#messageBox a.no_external {
f4b89aa4226d Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents: 1057
diff changeset
   386
  background-image: none;
f4b89aa4226d Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents: 1057
diff changeset
   387
  padding-right: 0px;
f4b89aa4226d Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents: 1057
diff changeset
   388
}
f4b89aa4226d Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents: 1057
diff changeset
   389
921
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   390
/* Form controls */
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   391
input {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   392
  border: 1px solid #353535;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   393
  background-color: #262626;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   394
  color: #b6b6b6;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   395
  font-size: 8pt;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   396
  font-family: arial, helvetica, sans-serif;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   397
  padding: 2px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   398
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   399
1075
f4b89aa4226d Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents: 1057
diff changeset
   400
div#messageBox input[type ^="text"], div#messageBox input[type ^="password"] {
f4b89aa4226d Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents: 1057
diff changeset
   401
  background-color: #f4f4f4;
f4b89aa4226d Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents: 1057
diff changeset
   402
  color: #202020;
f4b89aa4226d Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents: 1057
diff changeset
   403
  border: 1px solid #aaa;
f4b89aa4226d Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents: 1057
diff changeset
   404
}
f4b89aa4226d Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents: 1057
diff changeset
   405
f4b89aa4226d Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents: 1057
diff changeset
   406
div#messageBox input[type ^="text"]:focus, div#messageBox input[type ^="password"]:focus {
f4b89aa4226d Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents: 1057
diff changeset
   407
  background-color: #fff;
f4b89aa4226d Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents: 1057
diff changeset
   408
  border-color: #888;
f4b89aa4226d Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents: 1057
diff changeset
   409
}
f4b89aa4226d Some changes to AJAX login interface, made it a bit more compact with less language, with some Enanium specific modifications to the same.
Dan
parents: 1057
diff changeset
   410
921
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   411
/* Footer */
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   412
div#footer {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   413
  margin: 7px 0 0 0;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   414
  border-top: 1px solid #707070;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   415
  background-color: #000;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   416
  color: #909090;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   417
  padding: 4px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   418
  font-size: smaller;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   419
  font-family: tahoma, arial, sans-serif;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   420
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   421
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   422
body.simple div#footer {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   423
  position: absolute;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   424
  bottom: 0px;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   425
  padding: 4px 0;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   426
  width: 100%;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   427
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   428
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   429
/*
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   430
 * Userpage styles
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   431
 */
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   432
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   433
ul.userpage_links li {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   434
  background-image: url('../images/buttonbg.gif');
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   435
  background-repeat: repeat-x;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   436
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   437
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   438
ul.userpage_links li a {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   439
  color: #202020;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   440
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   441
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   442
ul.userpage_links li.userpage_tab_active {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   443
  background-image: url('../images/buttonbg-lite.gif');
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   444
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   445
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   446
ul.userpage_links li:hover {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   447
  background-image: url('../images/buttonbg-lite.gif');
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   448
  border-color: #404040 #404040 #ffffff #404040;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   449
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   450
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   451
ul.userpage_links li.userpage_tab_active:hover {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   452
}
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   453
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   454
ul.userpage_links li a:visited, ul.userpage_links li a:hover {
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   455
  color: #202020 !important;
a71de5e21423 New primary theme: Enanium
Dan
parents:
diff changeset
   456
}
958
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   457
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   458
/*
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   459
 * Some table stuff
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   460
 */
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   461
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   462
div.tblholder th a {
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   463
  text-decoration: underline;
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   464
  color: #f0f0f0 !important;
3dafe0969e5a Enanium: added collapse for left sidebar
Dan
parents: 955
diff changeset
   465
}
1050
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   466
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   467
/*
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   468
 * jBox menu system
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   469
 */
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   470
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   471
div.menu, div.menu_nojs {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   472
  background-image: url(../images/jbox.gif);
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   473
  background-repeat: repeat-x;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   474
  background-color: #303030;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   475
  font-size: 7pt;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   476
  border-width: 0;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   477
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   478
.menu_bg {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   479
  background-color: #303030;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   480
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   481
div.menu ul, div.menu_nojs ul {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   482
  display: none;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   483
  position: absolute;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   484
  padding: 0;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   485
  margin: 0 !important;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   486
  background-color: #303030;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   487
  border-width: 0;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   488
  min-width: 120px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   489
  text-transform: lowercase;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   490
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   491
div.menu a, div.menu div.label, div.menu_nojs a, div.menu_nojs div.label {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   492
  padding: 2.5pt 5px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   493
  margin-right: 3px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   494
  text-decoration: none;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   495
  display: block;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   496
  float: left;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   497
  color: #b2b2b2;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   498
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   499
div#content-wrapper div.menu a, div#content-wrapper div.menu_nojs a {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   500
  color: #b2b2b2;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   501
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   502
div.menu div.label, div.menu_nojs div.label {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   503
  color: #808080;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   504
  cursor: default;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   505
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   506
div.menu span.sep, div.menu_nojs span.sep {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   507
  display: block;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   508
  float: left;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   509
  width: 5px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   510
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   511
div.menu div.multopts, div.menu_nojs div.multopts {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   512
  line-height: 17pt;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   513
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   514
div.menu div.multopts a, div.menu div.multopts div.label, div.menu_nojs div.multopts a, div.menu_nojs div.multopts div.label {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   515
  float: none;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   516
  display: inline;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   517
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   518
div.menu a.liteselected, div.menu a.liteselected:hover, div.menu a:hover, div.menu_nojs a.liteselected, div.menu_nojs a.liteselected:hover, div.menu_nojs a:hover {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   519
  color: #c9c9c9;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   520
  background-color: #484848;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   521
  background-image: url(../images/jbox.gif);
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   522
  background-position: 0 -32px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   523
  background-repeat: repeat-x;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   524
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   525
div.menu input[type ^="text"], div.menu input[type ^="password"], div.menu_nojs input[type ^="text"], div.menu_nojs input[type ^="password"] {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   526
  border-width: 0;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   527
  font-size: 9pt;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   528
  padding: 2px 5px 3px 5px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   529
  max-width: 70px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   530
  color: #a9a9a9;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   531
  background-color: #191919;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   532
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   533
div.menu input[type ^="text"]:hover, div.menu input[type ^="password"]:hover, div.menu_nojs input[type ^="text"]:hover, div.menu_nojs input[type ^="password"]:hover {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   534
  background-color: #292929;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   535
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   536
div.menu input[type ^="text"]:focus, div.menu input[type ^="password"]:focus, div.menu_nojs input[type ^="text"]:focus, div.menu_nojs input[type ^="password"]:focus {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   537
  background-color: #373737;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   538
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   539
div.menu input[type ^="button"], div.menu input[type ^="submit"], div.menu_nojs input[type ^="button"], div.menu_nojs input[type ^="submit"] {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   540
  border-width: 0;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   541
  font-size: 9pt;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   542
  padding: 3px 5px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   543
  max-width: 70px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   544
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   545
div.menu a.current, div.menu a.current:hover, div.menu a.selected, div.menu a.selected:hover, div.menu_nojs a.current, div.menu_nojs a.current:hover, div.menu_nojs a.selected, div.menu_nojs a.selected:hover {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   546
  color: #202020;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   547
  background-color: #FFFFFF;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   548
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   549
div.menu a.current:hover, div.menu a.selected:hover, div.menu a.current.liteselected,
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   550
div.menu_nojs a.current:hover, div.menu_nojs a.selected:hover, div.menu_nojs a.current.liteselected {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   551
  background-position: 0 -64px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   552
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   553
div.menu ul li, div.menu_nojs ul li {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   554
  list-style: none;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   555
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   556
div.menu ul a, div.menu_nojs ul a {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   557
  float: none;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   558
  margin: 0;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   559
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   560
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   561
/* toolbar */
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   562
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   563
div.toolbar {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   564
  border: 1px solid #3b619c;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   565
  background-color: #D0D0D0;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   566
  background-image: url(../../oxygen/images/bleu/sprite-horiz.gif);
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   567
  background-position: 0 -90px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   568
  padding: 1px 0;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   569
  height: 22px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   570
  font-family: arial, sans-serif;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   571
  font-size: 8pt;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   572
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   573
div.toolbar ul {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   574
  margin: 0;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   575
  padding: 0;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   576
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   577
div.toolbar ul li {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   578
  list-style: none;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   579
  margin: 0;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   580
  float: left;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   581
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   582
div.toolbar a img {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   583
  opacity: 0.6;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   584
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   585
div.toolbar a:hover img, div.toolbar a:focus img {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   586
  opacity: 1;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   587
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   588
div.toolbar a {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   589
  display: block;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   590
  padding: 2px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   591
  border: 1px solid transparent;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   592
  cursor: default;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   593
  width: auto;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   594
  color: #000000 !important;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   595
  margin: 0 2px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   596
  max-height: 16px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   597
  text-decoration: none;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   598
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   599
div.toolbar a:hover, div.toolbar a:focus {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   600
  border: 1px solid #000080;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   601
  background-color: #ceceed;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   602
  background-image: url(../../oxygen/images/bleu/sprite-horiz.gif);
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   603
  background-position: 0 -118px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   604
  color: #000000 !important;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   605
  text-decoration: none;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   606
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   607
div.toolbar a:active {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   608
  background-color: #E0E0E0;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   609
  background-position: 0 -138px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   610
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   611
div.toolbar img {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   612
  margin: 0;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   613
  padding: 0;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   614
  display: inline;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   615
  border-width: 0px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   616
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   617
div.toolbar a span {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   618
  position: relative;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   619
  top: -3px !important;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   620
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   621
div.toolbar a span.noimage {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   622
  position: relative;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   623
  top: 0px !important;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   624
  height: 16px !important;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   625
  display: block;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   626
  padding-left: 2px !important;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   627
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   628
div.toolbar li span {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   629
  padding-left: 4px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   630
  padding-right: 2px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   631
  position: relative;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   632
  top: 4px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   633
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   634
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   635
/* vertical toolbar */
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   636
div.toolbar_vert {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   637
  border: 1px solid #82aae2;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   638
  background-color: #c9ddf8;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   639
  padding: 2px 0;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   640
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   641
div.toolbar_vert ul {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   642
  margin: 0;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   643
  padding: 0;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   644
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   645
div.toolbar_vert ul li {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   646
  list-style: none;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   647
  margin: 0;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   648
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   649
div.toolbar_vert a img {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   650
  opacity: 0.6;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   651
  /*filter: alpha(opacity=60);*/
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   652
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   653
div.toolbar_vert a:hover img {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   654
  opacity: 1;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   655
  /*filter: alpha(opacity=100);*/
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   656
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   657
div.toolbar_vert a {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   658
  display: block;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   659
  padding: 2px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   660
  border: 1px solid transparent;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   661
  cursor: default;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   662
  width: auto;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   663
  color: #000000 !important;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   664
  margin: 0 2px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   665
  max-height: 16px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   666
  text-decoration: none;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   667
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   668
div.toolbar_vert a:hover {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   669
  border: 1px solid #202090;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   670
  background-color: #ceceed;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   671
  color: #000000 !important;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   672
  text-decoration: none;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   673
  background-image: url(../../oxygen/images/bleu/sprite-horiz.gif);
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   674
  background-position: 0 -118px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   675
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   676
div.toolbar_vert a:active {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   677
  border: 1px solid #A0A0A0;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   678
  background-color: #E0E0E0;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   679
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   680
div.toolbar_vert img {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   681
  margin: 0;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   682
  padding: 0;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   683
  display: inline;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   684
  border-width: 0px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   685
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   686
div.toolbar_vert a span {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   687
  position: relative;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   688
  top: -4px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   689
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   690
div.toolbar_vert li span {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   691
  padding-left: 2px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   692
  padding-right: 5px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   693
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   694
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   695
div.toolbar_vert li > span {
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   696
  display: block;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   697
  padding: 4px 5px;
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   698
}
94d835500d5b Enanium: consolidated jBox and toolbar CSS. Firefox 3.5 did a double-request and it was slowing things down. Thanks YSlow.
Dan
parents: 1045
diff changeset
   699