themes/oxygen/css/mint.css
author Dan Fuhry <dan@enanocms.org>
Thu, 28 Oct 2010 03:05:31 -0400
changeset 1308 f9bee9b125ee
parent 1227 bdac73ed481e
permissions -rw-r--r--
Parser updates. Added the "styled" keyword to wikitables to allow them to be styled using the current theme's standard table skinning, and changes to how the image tag parser decides how to display an image (framed, inline or raw).
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     1
/**
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     2
 * The original Oxygen theme for Enano
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     3
 * Designed by Dan Fuhry, (C) 2006
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     4
 * This theme is Free Software; see the file "GPL" included with this package for details.
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     5
 */
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
     6
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
     7
/* The basics */
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
     8
html,body {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
     9
	height: 100%;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    10
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    11
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    12
body {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    13
	/* color added in 1.0.2 to fix light text in dark desktop themes */ 
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    14
	color: #202020;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    15
	margin: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    16
	padding: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    17
	background: url(../images/mint/bg.png);
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    18
	font-family: trebuchet ms, verdana, arial, helvetica, sans-serif;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    19
	font-size: 9pt;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    20
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    21
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    22
body#tinymce {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    23
	background-color: white;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    24
	background-image: none;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    25
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    26
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    27
.holder {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    28
	border: 1px solid #CCCCCC;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    29
	padding: 1px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    30
	background-color: #FFFFFF;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    31
	color: #444444
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    32
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    33
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    34
div.pad {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    35
	padding: 10px;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    36
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    37
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    38
table#title {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    39
	margin: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    40
	padding: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    41
	height: 100px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    42
	background-color: #90D0B0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    43
	text-align: center;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    44
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    45
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    46
table.simple-layout td#mainhead {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    47
	margin: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    48
	padding: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    49
	background-color: #90D0B0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    50
	text-align: center;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    51
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    52
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    53
table.simple-layout td#mainhead h1 {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    54
	margin: 15px 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    55
	padding: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    56
	font-size: 14pt;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    57
}
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    58
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
    59
/* Sidebar */
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    60
td.mdgSidebarHolder {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    61
	width: 140px;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    62
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    63
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    64
div.sidebar, .dbx-group {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    65
	width: 138px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    66
	background-color: #F8F8F8; border-left: 1px solid #CCC; border-right: 1px solid #CCC; padding: 1px 0px 0px 0px;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    67
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    68
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    69
div.sidebar .head, .dbx-handle {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    70
	background-color: #F0F0F0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    71
	display: block;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    72
	margin: 0px 1px 1px 1px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    73
	font-family: Trebuchet MS, Arial, helvetica, sans-serif;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    74
	font-size: 7pt;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    75
	cursor: pointer;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    76
	text-decoration: none;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    77
	color: #111;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    78
	padding: 5px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    79
	font-weight: bold;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    80
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    81
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    82
div.sidebar .head:hover, .dbx-handle:hover {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    83
	background-color: #F4F4F4;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    84
	display: block;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    85
	margin: 0px 1px 1px 1px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    86
	font-family: Trebuchet MS, Arial, helvetica, sans-serif;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    87
	font-size: 7pt;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    88
	cursor: pointer;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    89
	text-decoration: none;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    90
	color: #111;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    91
	padding: 5px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    92
	font-weight: bold;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    93
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    94
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
    95
div.sidebar div.slideblock a, .dbx-content li {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    96
	background-color: #DDD;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    97
	display: block;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    98
	margin: 0px 1px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
    99
	border-bottom: 1px solid #FFF;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   100
	font-family: Trebuchet MS, Arial, helvetica, sans-serif;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   101
	font-size: 7pt;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   102
	cursor: pointer;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   103
	text-decoration: none;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   104
	color: #666;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   105
	padding: 5px 5px 5px 9px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   106
	list-style-type: none;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   107
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   108
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   109
div.sidebar div.slideblock a:hover, .dbx-content li:hover {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   110
	background-color: #EEE;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   111
	display: block;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   112
	margin: 0px 1px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   113
	border-bottom: 1px solid #FFF;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   114
	font-family: Trebuchet MS, Arial, helvetica, sans-serif;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   115
	font-size: 7pt;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   116
	cursor: pointer;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   117
	text-decoration: none;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   118
	color: #666;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   119
	padding: 5px 5px 5px 9px;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   120
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   121
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   122
div.recttop {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   123
	width: 140px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   124
	height: 12px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   125
	margin: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   126
	padding: 0;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   127
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   128
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   129
td.recttoptop {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   130
	width: 100%;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   131
	height: 12px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   132
	background-image: url(../images/mint/sprite-horiz.gif);
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   133
	background-repeat: repeat-x;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   134
	background-position: 0 -12px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   135
	margin: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   136
	padding: 0;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   137
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   138
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   139
td.recttoptop:hover {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   140
	width: 100%;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   141
	height: 12px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   142
	background-image: url(../images/mint/sprite-horiz.gif);
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   143
	background-repeat: repeat-x;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   144
	background-position: 0 -24px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   145
	margin: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   146
	padding: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   147
	cursor: pointer;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   148
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   149
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   150
div.rectbot {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   151
	width: 140px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   152
	height: 12px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   153
	margin: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   154
	padding: 0;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   155
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   156
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   157
td.rectbottop {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   158
	width: 100%;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   159
	height: 12px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   160
	background-image: url(../images/mint/sprite-horiz.gif);
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   161
	background-repeat: repeat-x;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   162
	background-position: 0 -48px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   163
	margin: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   164
	padding: 0;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   165
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   166
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   167
div.slideblock, .dbx-content {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   168
	overflow: hidden;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   169
	background-color: #DDD;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   170
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   171
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   172
div.slideblock2 {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   173
	overflow: hidden;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   174
	background-color: #DDD;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   175
	margin: 0px 1px 0px 1px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   176
	border-bottom: 1px solid #FFF;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   177
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   178
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   179
.dbx-handle {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   180
	cursor: move !important;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   181
}
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   182
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   183
/* The credits thingy at the bottom */
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   184
div#credits { margin: 0; padding: 10px; padding-bottom: 0px; padding-top: 12px; background-color: #E8E8E8; color: #AAA; font-size: 7pt; font-family: lucida grande, verdana, arial, sans-serif; }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   185
div#credits a { color: #90D0B0; text-decoration: none; }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   186
div#credits a:hover { color: #80C0A0; text-decoration: underline; }
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   187
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   188
/* The link hidden in plain "site" at the top of the page */
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   189
td#mainhead a { text-decoration: none; color: #000000; }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   190
td#mainhead a:hover { text-decoration: none; color: #000000; border-bottom: 1px dotted #408060; }
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   191
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   192
/* Text, headings, and links inside the main div (usually #ajaxEditContainer but used some other places as well) */
822
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   193
div.contentDiv h1 {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   194
	margin-top: 0.3em;
822
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   195
}
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   196
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   197
div.contentDiv h1, div.contentDiv h2 {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   198
	border-bottom: 1px solid #90D0B0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   199
	margin-bottom: 0;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   200
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   201
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   202
div.contentDiv h3 {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   203
	font-size: 11pt;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   204
	font-weight: bold;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   205
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   206
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   207
div.contentDiv ul li, div#messageBox ul li {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   208
	list-style: url(../images/mint/bullet.gif);
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   209
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   210
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   211
div.contentDiv p, div#messageBox p {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   212
	margin-left: 1.0em;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   213
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   214
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   215
table.simple-layout div.contentDiv p {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   216
	margin-left: 0em;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   217
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   218
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   219
div.contentDiv blockquote, div#messageBox blockquote {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   220
	background-color: #F4F4F4;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   221
	border: 1px dotted #408060;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   222
	margin: 1em;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   223
	padding: 10px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   224
	max-height: 250px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   225
	overflow: auto;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   226
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   227
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   228
div.contentDiv, div#messageBox {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   229
	font-size: 9pt;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   230
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   231
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   232
a {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   233
	color: #70B090;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   234
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   235
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   236
a:hover {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   237
	color: #90D0B0;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   238
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   239
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   240
div.contentDiv a[href ^="http://"], div#messageBox a[href ^="http://"] {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   241
	color: #80C0A0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   242
	background: url(../images/mint/external.gif) center right no-repeat;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   243
	padding-right: 16px;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   244
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   245
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   246
div.contentDiv a[href ^="https://"], div#messageBox a[href ^="https://"] {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   247
	color: #80C0A0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   248
	background: url(../images/mint/https.gif)    center right no-repeat;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   249
	padding-right: 16px;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   250
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   251
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   252
div.contentDiv a[href ^="mailto:"], div#messageBox a[href ^="mailto:"] {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   253
	color: #80C0A0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   254
	background: url(../images/mint/email.gif)    center right no-repeat;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   255
	padding-right: 16px;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   256
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   257
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   258
div.contentDiv a[href ^="irc://"], div#messageBox a[href ^="irc://"] {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   259
	color: #80C0A0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   260
	background: url(../images/mint/irc.gif)      center right no-repeat;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   261
	padding-right: 16px;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   262
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   263
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   264
div.contentDiv a[href ^="http://"]:hover, div#messageBox a[href ^="http://"]:hover {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   265
	color: #A0E0C0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   266
	background: url(../images/mint/external.gif) center right no-repeat;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   267
	padding-right: 16px;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   268
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   269
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   270
div.contentDiv a[href ^="https://"]:hover, div#messageBox a[href ^="https://"]:hover {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   271
	color: #A0E0C0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   272
	background: url(../images/mint/https.gif)    center right no-repeat;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   273
	padding-right: 16px;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   274
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   275
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   276
div.contentDiv a[href ^="mailto:"]:hover, div#messageBox a[href ^="mailto:"]:hover {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   277
	color: #A0E0C0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   278
	background: url(../images/mint/email.gif)    center right no-repeat;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   279
	padding-right: 16px;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   280
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   281
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   282
div.contentDiv a[href ^="irc://"]:hover, div#messageBox a[href ^="irc://"]:hover {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   283
	color: #A0E0C0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   284
	background: url(../images/mint/irc.gif)      center right no-repeat;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   285
	padding-right: 16px;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   286
}
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   287
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   288
/* Wikilinks to pages that don't exist */
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   289
div.contentDiv a.wikilink-nonexistent {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   290
	color: #B02050;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   291
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   292
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   293
div.contentDiv a.wikilink-nonexistent:hover {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   294
	color: #D03060;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   295
}
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   296
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   297
/* Well, not Midget and not comments (usually), but that's what the class is called ;-). Basically an informational window or used as a wrapper for tables. */
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   298
.mdg-comment, .mdg-infobox {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   299
	margin-left: 1em;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   300
	padding: 7px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   301
	border: 1px solid #AAAAAA;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   302
	background-color: #E8E8E8;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   303
}
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   304
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   305
.tblholder {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   306
	margin: 10px 0 0 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   307
	padding: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   308
	border: 1px solid #AAAAAA;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   309
	background-color: #E8E8E8;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   310
}
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   311
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   312
/* The beautiful tables inside what may not obviously be mdg-comment divs */
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   313
div.tblholder td.row1 {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   314
	padding: 4px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   315
	background-color: #E0E0E0;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   316
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   317
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   318
div.tblholder td.row2 {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   319
	padding: 4px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   320
	background-color: #F0F0F0;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   321
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   322
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   323
div.tblholder td.row3 {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   324
	padding: 4px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   325
	background-color: #E8E8E8;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   326
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   327
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   328
div.tblholder th {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   329
	padding: 4px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   330
	background-color: #70A080;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   331
	font-weight: bold;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   332
	text-align: center;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   333
	color: #FFFFFF;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   334
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   335
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   336
div.tblholder th.subhead {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   337
	padding: 4px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   338
	background-color: #90B0A0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   339
	font-weight: bold;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   340
	text-align: center;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   341
	color: #FFFFFF;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   342
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   343
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   344
div.tblholder table {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   345
	background-color: #FFFFFF;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   346
	width: 100%;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   347
}
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   348
139
070ff1509cc2 Sync Oxygen Bleu and Mint; fixed list-style-image ref and ordered lists getting bulleted
Dan
parents: 91
diff changeset
   349
/* Colored table cells */
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   350
div.tblholder td.row1_red {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   351
	padding: 4px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   352
	background-color: #F8E0E0;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   353
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   354
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   355
div.tblholder td.row2_red {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   356
	padding: 4px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   357
	background-color: #FFF0F0;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   358
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   359
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   360
div.tblholder td.row3_red {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   361
	padding: 4px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   362
	background-color: #FFE8E8;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   363
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   364
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   365
div.tblholder td.row1_green {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   366
	padding: 4px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   367
	background-color: #E0E0F8;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   368
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   369
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   370
div.tblholder td.row2_green {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   371
	padding: 4px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   372
	background-color: #F0F0FF;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   373
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   374
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   375
div.tblholder td.row3_green {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   376
	padding: 4px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   377
	background-color: #E8E8FF;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   378
}
139
070ff1509cc2 Sync Oxygen Bleu and Mint; fixed list-style-image ref and ordered lists getting bulleted
Dan
parents: 91
diff changeset
   379
070ff1509cc2 Sync Oxygen Bleu and Mint; fixed list-style-image ref and ordered lists getting bulleted
Dan
parents: 91
diff changeset
   380
div.tblholder th a {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   381
	color: #FFFFFF !important;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   382
	text-decoration: underline !important;
139
070ff1509cc2 Sync Oxygen Bleu and Mint; fixed list-style-image ref and ordered lists getting bulleted
Dan
parents: 91
diff changeset
   383
}
070ff1509cc2 Sync Oxygen Bleu and Mint; fixed list-style-image ref and ordered lists getting bulleted
Dan
parents: 91
diff changeset
   384
070ff1509cc2 Sync Oxygen Bleu and Mint; fixed list-style-image ref and ordered lists getting bulleted
Dan
parents: 91
diff changeset
   385
div.tblholder th a:hover {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   386
	color: #FFFF00 !important;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   387
	text-decoration: underline !important;
139
070ff1509cc2 Sync Oxygen Bleu and Mint; fixed list-style-image ref and ordered lists getting bulleted
Dan
parents: 91
diff changeset
   388
}
070ff1509cc2 Sync Oxygen Bleu and Mint; fixed list-style-image ref and ordered lists getting bulleted
Dan
parents: 91
diff changeset
   389
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   390
/*
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   391
 * jBox menu system
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   392
 */
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   393
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   394
div.menu, div.menu_nojs {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   395
	background-color: #B0F0D0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   396
	font-size: 7pt;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   397
	border-width: 0;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   398
}
60
71b50f8c8f85 Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
parents: 0
diff changeset
   399
.menu_bg {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   400
	background-color: #B0F0D0;
60
71b50f8c8f85 Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
parents: 0
diff changeset
   401
}
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   402
div.menu a, div.menu div.label {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   403
	padding: 2.5pt 5px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   404
	margin-right: 3px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   405
	text-decoration: none;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   406
	display: block;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   407
	float: left;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   408
	color: #408060;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   409
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   410
div.menu_nojs a, div.menu_nojs div.label {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   411
	padding: 2.5pt 5px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   412
	margin-right: 3px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   413
	text-decoration: none;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   414
	display: block;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   415
	float: left;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   416
	color: #408060;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   417
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   418
div.menu div.label, div.menu_nojs div.label {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   419
	color: #002010;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   420
	cursor: default;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   421
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   422
div.menu span.sep, div.menu_nojs span.sep {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   423
	display: block;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   424
	float: left;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   425
	width: 5px;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   426
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   427
div.menu div.multopts, div.menu_nojs div.multopts {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   428
	line-height: 17pt;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   429
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   430
div.menu div.multopts a, div.menu div.multopts div.label, div.menu_nojs div.multopts a, div.menu_nojs div.multopts div.label {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   431
	float: none;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   432
	display: inline;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   433
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   434
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 {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   435
	color: #408060;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   436
	background-color: #D0FFF0;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   437
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   438
div.menu input[type ^="text"], div.menu input[type ^="password"], div.menu_nojs input[type ^="text"], div.menu_nojs input[type ^="password"] {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   439
	border-width: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   440
	font-size: 9pt;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   441
	padding: 2px 5px 3px 5px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   442
	max-width: 70px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   443
	background-color: #D0FFF0;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   444
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   445
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 {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   446
	background-color: #E0FFF0;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   447
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   448
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 {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   449
	background-color: #F0FFF0;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   450
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   451
div.menu input[type ^="button"], div.menu input[type ^="submit"], div.menu_nojs input[type ^="button"], div.menu_nojs input[type ^="submit"] {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   452
	border-width: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   453
	font-size: 9pt;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   454
	padding: 3px 5px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   455
	max-width: 70px;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   456
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   457
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 {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   458
	color: #004000;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   459
	background-color: #FFFFFF;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   460
}
60
71b50f8c8f85 Changed administration login request to use the AJAX login form; made high-level authentication more apparent in the AJAX box; recompiled Oxygen Mint
Dan
parents: 0
diff changeset
   461
div.menu ul, div.menu_nojs ul {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   462
	display: none;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   463
	position: absolute;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   464
	padding: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   465
	margin: 0 !important;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   466
	background-color: #B0F0D0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   467
	border-width: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   468
	min-width: 120px;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   469
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   470
div.menu ul li, div.menu_nojs ul li {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   471
	list-style: none;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   472
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   473
div.menu ul a, div.menu_nojs ul a {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   474
	float: none;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   475
	margin: 0;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   476
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   477
span.menuclear {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   478
	font-size: 1px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   479
	height: 0px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   480
	width: 0px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   481
	clear: left;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   482
	line-height: 0px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   483
	display: block;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   484
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   485
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   486
/* Rounded corners on nearly everything */
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   487
td#mdg-tl                         { width: 12px; height: 12px; background-image: url(../images/mint/sprite-horiz.gif); background-position: -48px 0;                                                                     }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   488
td#mdg-tr                         { width: 12px; height: 12px; background-image: url(../images/mint/sprite-horiz.gif); background-position: -60px 0;                                                                     }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   489
td#mdg-top                        {                            background-image: url(../images/mint/sprite-horiz.gif); background-position: 0 -36px;                                                                     }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   490
td#mdg-l                          { width: 12px; height: 12px; background-image: url(../images/mint/sprite-vert.gif);  background-position: -24px 0;                                                                     }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   491
td#mdg-r                          { width: 12px; height: 12px; background-image: url(../images/mint/sprite-vert.gif);  background-position: -36px 0;                                                                     }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   492
td#mdg-bl                         { width: 12px; height: 12px; background-image: url(../images/mint/sprite-vert.gif);  background-position: -72px 0;                                                                     }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   493
td#mdg-br                         { width: 12px; height: 12px; background-image: url(../images/mint/sprite-vert.gif);  background-position: -84px 0;                                                                     }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   494
td#mdg-ml                         { width: 12px; height: 12px; background-image: url(../images/mint/sprite-vert.gif);  background-position: -48px 0;                                                                     }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   495
td#mdg-brl                        { width: 12px; height: 1px;  background-image: url(../images/mint/sprite-vert.gif);  background-position: -48px 0;                                                                     }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   496
td#mdg-mr                         { width: 12px; height: 12px; background-image: url(../images/mint/sprite-vert.gif);  background-position: -60px 0;                                                                     }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   497
td#mdg-brr                        { width: 12px; height: 1px;  background-image: url(../images/mint/sprite-vert.gif);  background-position: -60px 0;                                                                     }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   498
td#mdg-btl                        { width: 12px; height: 1px;  background-image: url(../images/mint/sprite-vert.gif);  background-position: 0 0    ;                                                                     }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   499
td#mdg-btr                        { width: 12px; height: 1px;  background-image: url(../images/mint/sprite-vert.gif);  background-position: -12px 0;                                                                     }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   500
td#mdg-btcl                       { width: 12px; height: 12px; background-image: url(../images/mint/sprite-horiz.gif); background-position: -24px 0;                                                                     }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   501
td.mdg-menu-bl                    { width: 12px; height: 12px; background-image: url(../images/mint/sprite-horiz.gif); background-position: -24px 0;                                                                     }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   502
td#mdg-btcr                       { width: 12px; height: 12px; background-image: url(../images/mint/sprite-horiz.gif); background-position: -36px 0;                                                                     }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   503
td.mdg-menu-br                    { width: 12px; height: 12px; background-image: url(../images/mint/sprite-horiz.gif); background-position: -36px 0;                                                                     }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   504
td.mdg-menu-top                   { width: 84%;  height: 12px; background-image: url(../images/mint/sprite-horiz.gif); background-position: 0 0    ; margin: 0; padding: 0; background-repeat: repeat-x; font-size: 2px; }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   505
td.mdg-menu-tl                    { width: 12px; height: 12px; background-image: url(../images/mint/sprite-horiz.gif); background-position: 0 0    ; background-position: left  top; background-repeat: no-repeat;       }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   506
td.mdg-menu-tr                    { width: 12px; height: 12px; background-image: url(../images/mint/sprite-horiz.gif); background-position: 0 0    ; background-position: right top; background-repeat: no-repeat;       }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   507
td.mdg-menu-btm                   {              height: 12px; background-image: url(../images/mint/sprite-horiz.gif); background-position: 0 0    ;                                                                     }
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   508
td#mdg-btm                        {              height: 12px; background-image: url(../images/mint/sprite-horiz.gif); background-position: 0 -48px;                                                                     }
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   509
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   510
/* Buttons and textboxes - these settings are used almost everywhere */
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   511
input, textarea, select, button {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   512
	border: 1px solid #408060;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   513
	background-color: #F2F2F2;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   514
	padding: 3px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   515
	font-family: arial, helvetica, sans-serif;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   516
	font-size: 8pt;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   517
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   518
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   519
input:hover, textarea:hover, select:hover {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   520
	border: 1px solid #60A080;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   521
	background-color: #F8F8F8;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   522
	padding: 3px;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   523
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   524
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   525
input:focus, textarea:focus, select:focus {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   526
	border: 1px solid #90D0B0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   527
	background-color: #FFFFFF;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   528
	padding: 3px;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   529
}
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   530
822
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   531
input.ac_loading {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   532
	background-image: url(../../../images/loading.gif);
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   533
	background-position: right center;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   534
	background-repeat: no-repeat;
822
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   535
}
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   536
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   537
label {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   538
	padding: 3px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   539
	cursor: pointer;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   540
	font-family: arial, helvetica, sans-serif;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   541
	font-size: 8pt;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   542
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   543
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   544
label:hover {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   545
	padding: 3px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   546
	cursor: pointer;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   547
	background-color: #F0F0F0;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   548
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   549
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   550
input#pageheading {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   551
	font-family: trebuchet ms, verdana, arial, helvetica, sans-serif;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   552
	font-size: 18pt;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   553
	font-weight: bold;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   554
	border-width: 0 0 1px 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   555
	width: 100%;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   556
	border-bottom: 1px solid #90D0B0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   557
	margin: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   558
	padding: 0;
822
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   559
}
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   560
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   561
input#pageheading:focus {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   562
	background-color: #fafafa;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   563
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   564
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   565
input[type ^="button"], input[type ^="submit"], button {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   566
	background-image: url(../images/mint/sprite-horiz.gif);
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   567
	background-position: 0% -60px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   568
	background-repeat: repeat-x;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   569
	color: #202020;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   570
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   571
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   572
input[type ^="image"][disabled ^="disabled"] {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   573
	opacity: 0.5;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   574
	filter: alpha(opacity=50);
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   575
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   576
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   577
input[type ^="button"][disabled ^="disabled"], input[type ^="submit"][disabled ^="disabled"], button[disabled ^="disabled"], .btn-disabled {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   578
	color: #808080 !important;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   579
	background-image: none !important;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   580
	background-color: #e0e0e0 !important;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   581
}
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   582
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   583
/* The Wordpress-like fills behind checkboxes and their labels */
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   584
.catCheck {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   585
	padding: 3px;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   586
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   587
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   588
.catCheck:hover {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   589
	padding: 3px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   590
	background-color: #F0F0F0;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   591
}
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   592
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   593
/* Information, warning, question, error, and wait boxes */
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   594
div.error-box {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   595
	background-image: url(../../../images/error.png);
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   596
	background-position: 8px 8px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   597
	background-repeat: no-repeat;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   598
	background-color: #FFF4F4;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   599
	border: 1px dashed #408060;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   600
	padding: 10px 10px 10px 50px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   601
	margin: 0.5em 0 0 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   602
	min-height: 25px;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   603
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   604
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   605
div.info-box {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   606
	background-image: url(../../../images/info.png);
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   607
	background-position: 8px 8px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   608
	background-repeat: no-repeat;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   609
	background-color: #F4FFF4;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   610
	border: 1px dashed #408060;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   611
	padding: 10px 10px 10px 50px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   612
	margin: 0.5em 0 0 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   613
	min-height: 25px;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   614
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   615
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   616
div.warning-box {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   617
	background-image: url(../../../images/warning.png);
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   618
	background-position: 8px 8px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   619
	background-repeat: no-repeat;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   620
	background-color: #FFF4FF;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   621
	border: 1px dashed #408060;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   622
	padding: 10px 10px 10px 50px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   623
	margin: 0.5em 0 0 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   624
	min-height: 25px;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   625
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   626
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   627
div.question-box {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   628
	background-image: url(../../../images/question.png);
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   629
	background-position: 8px 8px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   630
	background-repeat: no-repeat;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   631
	background-color: #F4F4FF;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   632
	border: 1px dashed #408060;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   633
	padding: 10px 10px 10px 50px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   634
	margin: 0.5em 0 0 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   635
	min-height: 25px;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   636
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   637
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   638
div.wait-box {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   639
	background-image: url(../../../images/wait.png);
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   640
	background-position: 8px 8px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   641
	background-repeat: no-repeat;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   642
	background-color: #FFFFF4;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   643
	border: 1px dashed #408060;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   644
	padding: 10px 10px 10px 50px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   645
	margin: 0.5em 0 0 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   646
	min-height: 25px;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   647
}
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   648
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   649
/* This stuff is mostly unused, left in for compatibility */
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   650
div#ajaxEditContainer table {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   651
	border: 0px solid #FFFFFF;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   652
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   653
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   654
div#ajaxEditContainer td {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   655
	margin: 1px;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   656
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   657
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   658
div#ajaxEditContainer pre {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   659
	margin-left: 1em;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   660
	background-color: #F8F8F8;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   661
	border: 1px dashed #90D0B0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   662
	padding: 10px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   663
	overflow: auto;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   664
	max-height: 150px;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   665
}
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   666
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   667
/* toolbar */
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   668
div.toolbar {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   669
	border: 1px solid #3b9c61;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   670
	background-color: #D0D0D0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   671
	background-image: url(../images/mint/sprite-horiz.gif);
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   672
	background-position: 0 -90px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   673
	padding: 1px 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   674
	height: 22px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   675
	font-family: arial, sans-serif;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   676
	font-size: 8pt;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   677
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   678
div.toolbar ul {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   679
	margin: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   680
	padding: 0;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   681
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   682
div.toolbar ul li {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   683
	list-style: none;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   684
	margin: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   685
	float: left;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   686
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   687
div.toolbar a img {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   688
	opacity: 0.6;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   689
}
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   690
div.toolbar a:hover img, div.toolbar a:focus img {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   691
	opacity: 1;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   692
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   693
div.toolbar a {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   694
	display: block;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   695
	padding: 2px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   696
	border: 1px solid transparent;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   697
	cursor: default;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   698
	width: auto;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   699
	color: #000000;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   700
	margin: 0 2px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   701
	max-height: 16px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   702
	text-decoration: none;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   703
}
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   704
div.toolbar a:hover, div.toolbar a:focus {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   705
	border: 1px solid #008000;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   706
	background-color: #ceedce;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   707
	background-image: url(../images/mint/sprite-horiz.gif);
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   708
	background-position: 0 -118px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   709
	color: #000000;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   710
	text-decoration: none;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   711
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   712
div.toolbar a:active {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   713
	background-color: #E0E0E0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   714
	background-position: 0 -138px;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   715
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   716
div.toolbar img {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   717
	margin: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   718
	padding: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   719
	display: inline;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   720
	border-width: 0px;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   721
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   722
div.toolbar a span {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   723
	position: relative;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   724
	top: -3px !important;
548
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   725
}
15ac23ba7af2 Re-synced Mint style from the Oxygen theme
Dan
parents: 311
diff changeset
   726
div.toolbar a span.noimage {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   727
	position: relative;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   728
	top: 0px !important;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   729
	height: 16px !important;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   730
	display: block;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   731
	padding-left: 2px !important;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   732
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   733
div.toolbar li span {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   734
	padding-left: 4px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   735
	padding-right: 2px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   736
	position: relative;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   737
	top: 4px;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   738
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   739
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   740
/* vertical toolbar */
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   741
div.toolbar_vert {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   742
	border: 1px solid #909090;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   743
	background-color: #D0D0D0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   744
	padding: 2px 0;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   745
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   746
div.toolbar_vert ul {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   747
	margin: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   748
	padding: 0;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   749
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   750
div.toolbar_vert ul li {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   751
	list-style: none;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   752
	margin: 0;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   753
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   754
div.toolbar_vert a img {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   755
	opacity: 0.6;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   756
	/*filter: alpha(opacity=60);*/
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   757
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   758
div.toolbar_vert a:hover img {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   759
	opacity: 1;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   760
	/*filter: alpha(opacity=100);*/
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   761
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   762
div.toolbar_vert a {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   763
	display: block;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   764
	padding: 2px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   765
	border: 1px solid transparent;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   766
	cursor: default;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   767
	width: auto;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   768
	color: #000000;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   769
	margin: 0 2px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   770
	max-height: 16px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   771
	text-decoration: none;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   772
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   773
div.toolbar_vert a:hover {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   774
	border: 1px solid #209020;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   775
	background-color: #ceedce;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   776
	color: #000000;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   777
	text-decoration: none;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   778
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   779
div.toolbar_vert a:active {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   780
	border: 1px solid #A0A0A0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   781
	background-color: #E0E0E0;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   782
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   783
div.toolbar_vert img {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   784
	margin: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   785
	padding: 0;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   786
	display: inline;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   787
	border-width: 0px;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   788
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   789
div.toolbar_vert a span {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   790
	position: relative;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   791
	top: -4px;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   792
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   793
div.toolbar_vert li span {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   794
	padding-left: 2px;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   795
	padding-right: 5px;
0
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   796
}
902822492a68 Initial population
dan@scribus.fuhry.local.fuhry.local
parents:
diff changeset
   797
822
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   798
/*
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   799
 * Userpage styles
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   800
 */
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   801
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   802
ul.userpage_links li {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   803
	background-image: url('../images/buttonbg.gif');
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   804
	background-repeat: repeat-x;
822
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   805
}
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   806
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   807
ul.userpage_links li a {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   808
	color: #202020;
822
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   809
}
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   810
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   811
ul.userpage_links li.userpage_tab_active {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   812
	background-image: url('../images/buttonbg-lite.gif');
822
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   813
}
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   814
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   815
ul.userpage_links li:hover {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   816
	background-image: url('../images/buttonbg-lite.gif');
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   817
	border-color: #404040 #404040 #ffffff #404040;
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   818
	border-bottom-width: 0;
822
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   819
}
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   820
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   821
ul.userpage_links li.userpage_tab_active:hover {
1227
bdac73ed481e Going ahead with the switch to tabs. This is a major coding standards change! If any unusual parser bugs show up, check this changeset. Converted all .php, .js, .tpl, .css, and .json files and did basic testing.
Dan
parents: 822
diff changeset
   822
	border-bottom-width: 1px;
822
3b951ea8e758 Oxygen: synced mint style
Dan
parents: 548
diff changeset
   823
}