2006-01-03 13:44:47 +00:00
|
|
|
/* phpBB 3.0 Admin Style Sheet
|
2006-01-05 22:47:44 +00:00
|
|
|
------------------------------------------------------------------------
|
|
|
|
Original author: subBlue ( http://www.subBlue.com/ )
|
2006-01-03 13:44:47 +00:00
|
|
|
Copyright 2006 phpBB Group ( http://www.phpbb.com/ )
|
2006-01-05 22:47:44 +00:00
|
|
|
------------------------------------------------------------------------
|
2006-01-03 13:44:47 +00:00
|
|
|
*/
|
2005-12-19 18:55:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* General markup styles
|
|
|
|
---------------------------------------- */
|
|
|
|
* {
|
2006-01-03 13:44:47 +00:00
|
|
|
/* Reset browsers default margin, padding and font sizes */
|
2005-12-19 18:55:52 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
html {
|
2006-01-03 13:44:47 +00:00
|
|
|
font-size: 100%;
|
2005-12-19 18:55:52 +00:00
|
|
|
height: 100%;
|
|
|
|
margin-bottom: 1px;
|
2006-08-27 19:22:06 +00:00
|
|
|
background-color: #E4EDF0;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
body {
|
|
|
|
/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
|
2006-11-26 14:41:59 +00:00
|
|
|
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
|
2006-01-03 13:44:47 +00:00
|
|
|
color: #536482;
|
|
|
|
background: #E4EDF0 url("../images/bg_header.gif") 0 0 repeat-x;
|
|
|
|
font-size: 62.5%; /* This sets the default font size to be equivalent to 10px */
|
|
|
|
margin: 0;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
img {
|
|
|
|
border: 0;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
h1 {
|
2006-11-26 14:41:59 +00:00
|
|
|
font: bold 1.8em "Lucida Grande", 'Trebuchet MS', Verdana, sans-serif;
|
2005-12-19 18:55:52 +00:00
|
|
|
text-decoration: none;
|
2006-01-03 13:44:47 +00:00
|
|
|
color: #333333;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
h2, caption {
|
2006-11-26 14:41:59 +00:00
|
|
|
font: bold 1.2em "Lucida Grande", Arial, Helvetica, sans-serif;
|
2005-12-19 18:55:52 +00:00
|
|
|
text-decoration: none;
|
|
|
|
line-height: 120%;
|
|
|
|
text-align: left;
|
|
|
|
margin-top: 25px;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2007-01-24 02:04:16 +00:00
|
|
|
.rtl h2, .rtl caption {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2007-01-18 16:57:46 +00:00
|
|
|
h3, h4 {
|
|
|
|
font: bold 1.2em "Lucida Grande", Arial, Helvetica, sans-serif;
|
|
|
|
text-decoration: none;
|
|
|
|
line-height: 120%;
|
|
|
|
margin-top: 25px;
|
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
p {
|
|
|
|
margin-bottom: 0.7em;
|
2006-01-03 13:44:47 +00:00
|
|
|
line-height: 1.4em;
|
|
|
|
font-size: 1.1em;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-11-21 13:13:01 +00:00
|
|
|
ul {
|
|
|
|
list-style: disc;
|
2007-01-24 02:04:16 +00:00
|
|
|
margin: 0 0 1em 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rtl ul {
|
|
|
|
margin: 0 2em 1em 0;
|
2006-11-21 13:13:01 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
hr {
|
|
|
|
border: 0 none;
|
|
|
|
border-top: 1px solid #999999;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
height: 1px;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
.small {
|
2006-01-03 13:44:47 +00:00
|
|
|
font-size: 1em;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2006-01-03 13:44:47 +00:00
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
|
|
|
|
/* General links */
|
|
|
|
a:link, a:active, a:visited {
|
|
|
|
color: #006699;
|
|
|
|
text-decoration: none;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
a:hover {
|
|
|
|
color: #DD6900;
|
|
|
|
text-decoration: underline;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2006-01-03 13:44:47 +00:00
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
|
|
|
|
/* Main blocks
|
|
|
|
---------------------------------------- */
|
2006-01-03 13:44:47 +00:00
|
|
|
#wrap {
|
|
|
|
padding: 0 20px 15px 20px;
|
|
|
|
min-width: 615px;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
#page-header {
|
|
|
|
text-align: right;
|
2007-02-26 01:04:04 +00:00
|
|
|
background: url("../images/phpbb_logo.gif") top left no-repeat;
|
2006-01-03 13:44:47 +00:00
|
|
|
height: 84px;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2007-01-24 02:04:16 +00:00
|
|
|
.rtl #page-header {
|
|
|
|
text-align: left;
|
2007-02-26 01:04:04 +00:00
|
|
|
background: url("../images/phpbb_logo.gif") top right no-repeat;
|
2007-01-24 02:04:16 +00:00
|
|
|
}
|
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
#page-header h1 {
|
2006-11-26 14:41:59 +00:00
|
|
|
font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
|
2006-01-03 13:44:47 +00:00
|
|
|
font-size: 1.5em;
|
|
|
|
font-weight: normal;
|
|
|
|
padding-top: 15px;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
#page-header p {
|
2006-01-03 13:44:47 +00:00
|
|
|
font-size: 1.1em;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2007-03-05 18:38:56 +00:00
|
|
|
#page-header p#skip {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
#page-body {
|
|
|
|
clear: both;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
#page-footer {
|
|
|
|
clear: both;
|
2006-01-03 13:44:47 +00:00
|
|
|
font-size: 1em;
|
2005-12-19 18:55:52 +00:00
|
|
|
text-align: center;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
#content {
|
|
|
|
padding: 30px 10px 10px 10px;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
#content h1 {
|
|
|
|
line-height: 1.2em;
|
|
|
|
margin-bottom: 0px;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
#main {
|
2007-01-24 02:04:16 +00:00
|
|
|
float: left;
|
2005-12-19 18:55:52 +00:00
|
|
|
width: 76%;
|
2007-01-24 02:04:16 +00:00
|
|
|
margin: 0 0 0 3%;
|
2005-12-19 18:55:52 +00:00
|
|
|
min-height: 350px;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2007-01-24 02:04:16 +00:00
|
|
|
.rtl #main {
|
|
|
|
float: right;
|
|
|
|
margin: 0 3% 0 0;
|
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
* html #main {
|
|
|
|
height: 350px;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2005-12-19 18:55:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Tabbed menu
|
|
|
|
Based on: http://www.alistapart.com/articles/slidingdoors2/
|
|
|
|
----------------------------------------*/
|
|
|
|
#tabs {
|
|
|
|
line-height: normal;
|
2006-01-03 13:44:47 +00:00
|
|
|
margin: 0 0 -6px 7px;
|
|
|
|
min-width: 570px;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2007-01-24 02:04:16 +00:00
|
|
|
.rtl #tabs {
|
|
|
|
margin: 0 7px -6px 0;
|
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
#tabs ul {
|
2006-01-03 13:44:47 +00:00
|
|
|
margin:0;
|
|
|
|
padding: 0;
|
2005-12-19 18:55:52 +00:00
|
|
|
list-style: none;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
#tabs li {
|
|
|
|
display: inline;
|
2006-01-03 13:44:47 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
font-size: 1em;
|
2005-12-19 18:55:52 +00:00
|
|
|
font-weight: bold;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
#tabs a {
|
2007-01-24 02:04:16 +00:00
|
|
|
float: left;
|
2006-01-03 13:44:47 +00:00
|
|
|
background:url("../images/bg_tabs1.gif") no-repeat 0% -35px;
|
|
|
|
margin: 0 1px 0 0;
|
|
|
|
padding: 0 0 0 6px;
|
2005-12-19 18:55:52 +00:00
|
|
|
text-decoration: none;
|
|
|
|
position: relative;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2007-01-24 02:04:16 +00:00
|
|
|
.rtl #tabs a {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
#tabs a span {
|
|
|
|
float: left;
|
|
|
|
display: block;
|
2006-01-03 13:44:47 +00:00
|
|
|
background: url("../images/bg_tabs2.gif") no-repeat 100% -35px;
|
|
|
|
padding: 7px 12px 6px 6px;
|
|
|
|
color: #536482;
|
2005-12-19 18:55:52 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
text-transform: uppercase;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2007-02-26 03:30:32 +00:00
|
|
|
.rtl #tabs a span {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
/* Commented Backslash Hack hides rule from IE5-Mac \*/
|
2007-01-24 02:04:16 +00:00
|
|
|
#tabs a span, .rtl #tabs a span { float:none;}
|
2005-12-19 18:55:52 +00:00
|
|
|
/* End hack */
|
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
#tabs a:hover span {
|
|
|
|
color: #DD6900;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
#tabs #activetab a {
|
2006-01-03 13:44:47 +00:00
|
|
|
background-position: 0 0px;
|
|
|
|
border-bottom: 1px solid #FFFFFF;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
#tabs #activetab a span {
|
2006-01-03 13:44:47 +00:00
|
|
|
background-position: 100% 0px;
|
|
|
|
padding-bottom: 7px;
|
|
|
|
color: #333333;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
#tabs a:hover {
|
|
|
|
background-position: 0 -70px;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
#tabs a:hover span {
|
|
|
|
background-position:100% -70px;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
#tabs #activetab a:hover span {
|
|
|
|
color: #333333;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2005-12-19 18:55:52 +00:00
|
|
|
|
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
/* Main Panel
|
2005-12-19 18:55:52 +00:00
|
|
|
---------------------------------------- */
|
2006-01-03 13:44:47 +00:00
|
|
|
.panel {
|
|
|
|
margin: 4px 0;
|
2005-12-19 18:55:52 +00:00
|
|
|
background-color: #FFFFFF;
|
|
|
|
border: solid 1px #A9B8C2;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-01-05 22:47:44 +00:00
|
|
|
span.corners-top, span.corners-bottom,
|
|
|
|
span.corners-top span, span.corners-bottom span {
|
2006-01-03 13:44:47 +00:00
|
|
|
display: none;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2005-12-19 18:55:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Sub-navigation Menu
|
|
|
|
---------------------------------------- */
|
|
|
|
#menu {
|
|
|
|
float: left;
|
|
|
|
width: 20%;
|
|
|
|
font-size: 100%;
|
|
|
|
padding: 0;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2007-01-24 02:04:16 +00:00
|
|
|
.rtl #menu {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
#menu p {
|
2006-01-03 13:44:47 +00:00
|
|
|
font-size: 1em;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
#menu ul {
|
2006-01-03 13:44:47 +00:00
|
|
|
list-style: none;
|
2006-11-21 13:13:01 +00:00
|
|
|
margin: 0;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2005-12-19 18:55:52 +00:00
|
|
|
|
|
|
|
/* Default list state */
|
|
|
|
#menu li {
|
2006-01-03 13:44:47 +00:00
|
|
|
font-size: 1em;
|
2005-12-19 18:55:52 +00:00
|
|
|
font-weight: bold;
|
|
|
|
display: inline;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2005-12-19 18:55:52 +00:00
|
|
|
|
|
|
|
/* Link styles for the sub-section links */
|
2006-03-16 16:26:14 +00:00
|
|
|
#menu li span {
|
2005-12-19 18:55:52 +00:00
|
|
|
display: block;
|
2006-01-03 13:44:47 +00:00
|
|
|
padding: 3px 2px 3px 10px;
|
|
|
|
text-decoration: none;
|
2005-12-19 18:55:52 +00:00
|
|
|
font-weight: normal;
|
|
|
|
color: #006699;
|
|
|
|
font-weight: bold;
|
2006-01-03 13:44:47 +00:00
|
|
|
background-color: #ECECEC;
|
|
|
|
border-top: 1px solid #FFFFFF;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-08-28 17:20:21 +00:00
|
|
|
#menu li a:hover span, #menu li#activemenu span, #menu li a:hover {
|
2006-01-03 13:44:47 +00:00
|
|
|
text-decoration: none;
|
|
|
|
background-color: #FFA34F;
|
|
|
|
color: #FFFFFF;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-03-15 21:52:48 +00:00
|
|
|
#menu li span.completed {
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: #B9DBB3;
|
|
|
|
color: #006699;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
#menu li.header {
|
|
|
|
display: block;
|
2006-01-03 13:44:47 +00:00
|
|
|
padding: 5px;
|
|
|
|
font-size: 0.9em;
|
2006-11-26 14:41:59 +00:00
|
|
|
font-family: "Lucida Grande", Verdana;
|
2005-12-19 18:55:52 +00:00
|
|
|
color: #FFA34F;
|
2006-01-03 13:44:47 +00:00
|
|
|
font-weight: bold;
|
|
|
|
background: #006699 url("../images/cellpic3.gif") 0 0 repeat-x;
|
|
|
|
margin-top: 5px;
|
|
|
|
text-transform: uppercase;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-03-16 16:26:14 +00:00
|
|
|
#menu li#activemenu a span {
|
2005-12-19 18:55:52 +00:00
|
|
|
text-decoration: none;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #000;
|
2006-01-03 13:44:47 +00:00
|
|
|
background-color: #DADFE4;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-03-16 16:26:14 +00:00
|
|
|
#menu li#activemenu a:hover span {
|
2005-12-19 18:55:52 +00:00
|
|
|
text-decoration: none;
|
|
|
|
color: #000;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2005-12-19 18:55:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Table styles
|
|
|
|
---------------------------------------- */
|
|
|
|
|
|
|
|
table {
|
|
|
|
width: 100%;
|
2006-01-03 13:44:47 +00:00
|
|
|
/*background-color: #ACBBC6;*/
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
th, td {
|
2006-11-26 14:41:59 +00:00
|
|
|
font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
|
2006-01-03 13:44:47 +00:00
|
|
|
font-size: 1.1em;
|
|
|
|
text-align: left;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2007-01-24 02:04:16 +00:00
|
|
|
.rtl th, .rtl td {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2006-06-06 20:53:46 +00:00
|
|
|
th {
|
2006-01-03 13:44:47 +00:00
|
|
|
padding: 6px 4px;
|
|
|
|
color: #FFA34F;
|
|
|
|
font-weight: bold;
|
|
|
|
background: #006699 url("../images/cellpic3.gif") 0 0 repeat-x;
|
2006-12-10 17:44:45 +00:00
|
|
|
white-space: nowrap;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
td {
|
|
|
|
padding: 4px;
|
2006-01-03 13:44:47 +00:00
|
|
|
line-height: 1.2em;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2005-12-19 18:55:52 +00:00
|
|
|
|
2007-01-18 12:52:38 +00:00
|
|
|
.row1 { background-color: #EFEFEF;}
|
|
|
|
.row2 { background-color: #DEE3E7;}
|
|
|
|
.row3 { background-color: #D1D7DC;}
|
|
|
|
.row4 { background-color: #E4E8EB;}
|
|
|
|
.col1 { background-color: #DEE3E7;}
|
|
|
|
.col2 { background-color: #EFEFEF;}
|
2005-12-19 18:55:52 +00:00
|
|
|
|
|
|
|
.spacer {
|
|
|
|
background-color: #D1D7DC;
|
|
|
|
height: 1px;
|
|
|
|
line-height: 1px;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2005-12-19 18:55:52 +00:00
|
|
|
|
2005-12-21 18:18:12 +00:00
|
|
|
table.type2 {
|
|
|
|
border: none;
|
|
|
|
background: none;
|
|
|
|
padding: 0;
|
|
|
|
width: 0;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:12 +00:00
|
|
|
table.type2 th {
|
|
|
|
background: none;
|
|
|
|
border-top: none;
|
|
|
|
text-align: center;
|
|
|
|
color: #FFA34F;
|
|
|
|
padding: 2px 0;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:12 +00:00
|
|
|
table.type2 td {
|
|
|
|
padding: 0;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2006-01-03 13:44:47 +00:00
|
|
|
|
2005-12-21 18:18:12 +00:00
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
/* General form styles
|
|
|
|
----------------------------------------*/
|
2007-01-18 12:52:38 +00:00
|
|
|
fieldset {
|
|
|
|
background-color: #DDD;
|
|
|
|
padding: 10px;
|
2005-12-19 18:55:52 +00:00
|
|
|
margin: 15px 0;
|
2006-01-03 13:44:47 +00:00
|
|
|
border-right: 1px solid #AFAEAA;
|
|
|
|
border-bottom: 1px solid #AFAEAA;
|
|
|
|
border-left: 1px solid #D5D5C8;
|
|
|
|
border-top: 1px solid #D5D5C8;
|
2007-01-18 12:52:38 +00:00
|
|
|
background-color: #ECECEC;
|
2005-12-19 18:55:52 +00:00
|
|
|
position: relative;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2007-01-24 02:04:16 +00:00
|
|
|
|
|
|
|
.rtl fieldset {
|
|
|
|
border-right: 1px solid #D5D5C8;
|
|
|
|
border-bottom: 1px solid #AFAEAA;
|
|
|
|
border-left: 1px solid #AFAEAA;
|
|
|
|
border-top: 1px solid #D5D5C8;
|
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
legend {
|
2007-01-18 12:52:38 +00:00
|
|
|
position: absolute;
|
|
|
|
top: -0.5em;
|
2006-01-03 13:44:47 +00:00
|
|
|
font-size: 1.1em;
|
2007-01-18 12:52:38 +00:00
|
|
|
color:#006699;
|
|
|
|
font-family: "Lucida Grande",Arial,Verdana,Sans-serif;
|
2005-12-19 18:55:52 +00:00
|
|
|
font-weight: bold;
|
|
|
|
line-height: 100%;
|
2007-01-18 12:52:38 +00:00
|
|
|
text-transform: uppercase;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2007-01-18 12:52:38 +00:00
|
|
|
fieldset p {
|
|
|
|
font-size: 1.1em;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2005-12-19 18:55:52 +00:00
|
|
|
|
|
|
|
input {
|
2006-11-26 14:41:59 +00:00
|
|
|
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
|
2006-01-03 13:44:47 +00:00
|
|
|
font-size: 100%;
|
2005-12-19 18:55:52 +00:00
|
|
|
font-weight: normal;
|
2006-01-03 13:44:47 +00:00
|
|
|
background-color: #FAFAFA;
|
|
|
|
border-left: 1px solid #AFAEAA;
|
|
|
|
border-top: 1px solid #AFAEAA;
|
|
|
|
border-right: 1px solid #D5D5C8;
|
|
|
|
border-bottom: 1px solid #D5D5C8;
|
|
|
|
color: #333333;
|
|
|
|
padding: 2px;
|
|
|
|
cursor: text;
|
2005-12-19 18:55:52 +00:00
|
|
|
vertical-align: middle;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2007-01-24 02:04:16 +00:00
|
|
|
.rtl input {
|
|
|
|
border-left: 1px solid #D5D5C8;
|
|
|
|
border-top: 1px solid #AFAEAA;
|
|
|
|
border-right: 1px solid #AFAEAA;
|
|
|
|
border-bottom: 1px solid #D5D5C8;
|
|
|
|
}
|
|
|
|
|
2007-01-21 17:32:26 +00:00
|
|
|
input.langvalue, textarea.langvalue {
|
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
select {
|
2006-11-26 14:41:59 +00:00
|
|
|
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
|
2006-01-03 13:44:47 +00:00
|
|
|
font-size: 100%;
|
2005-12-19 18:55:52 +00:00
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
2006-01-03 13:44:47 +00:00
|
|
|
cursor: default;
|
2005-12-19 18:55:52 +00:00
|
|
|
vertical-align: middle;
|
|
|
|
width: auto;
|
2006-01-03 13:44:47 +00:00
|
|
|
border: 1px solid #666666;
|
|
|
|
padding: 1px;
|
|
|
|
background-color: #FAFAFA;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
optgroup {
|
|
|
|
font-weight: bold;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
option {
|
2007-01-24 02:04:16 +00:00
|
|
|
padding: 0 1em 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rtl option {
|
|
|
|
padding: 0 0 0 1em;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
.sep {
|
2006-03-22 10:33:30 +00:00
|
|
|
color: black;
|
2007-01-18 12:52:38 +00:00
|
|
|
font-weight: bold;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
textarea {
|
2006-11-26 14:41:59 +00:00
|
|
|
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
|
2006-01-03 13:44:47 +00:00
|
|
|
font-size: 100%;
|
2005-12-19 18:55:52 +00:00
|
|
|
width: 60%;
|
|
|
|
padding: 2px;
|
2006-01-03 13:44:47 +00:00
|
|
|
background-color: #FAFAFA;
|
|
|
|
border-left: 1px solid #AFAEAA;
|
|
|
|
border-top: 1px solid #AFAEAA;
|
|
|
|
border-right: 1px solid #D5D5C8;
|
|
|
|
border-bottom: 1px solid #D5D5C8;
|
|
|
|
cursor: text;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2007-01-24 02:04:16 +00:00
|
|
|
.rtl textarea {
|
|
|
|
border-left: 1px solid #D5D5C8;
|
|
|
|
border-top: 1px solid #AFAEAA;
|
|
|
|
border-right: 1px solid #AFAEAA;
|
|
|
|
border-bottom: 1px solid #D5D5C8;
|
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
label {
|
2007-01-24 02:04:16 +00:00
|
|
|
cursor: pointer;
|
2006-01-03 13:44:47 +00:00
|
|
|
font-size: 1.1em;
|
2007-01-24 02:04:16 +00:00
|
|
|
padding: 0 5px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rtl label {
|
|
|
|
padding: 0 0 0 5px;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
label input {
|
|
|
|
font-size: 100%;
|
|
|
|
vertical-align: middle;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
label img {
|
|
|
|
vertical-align: middle;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2005-12-19 18:55:52 +00:00
|
|
|
|
2006-11-24 02:04:43 +00:00
|
|
|
fieldset.quick, p.quick {
|
2007-01-24 02:04:16 +00:00
|
|
|
margin: 0 0 5px;
|
|
|
|
padding: 5px 0 0;
|
2005-12-19 18:55:52 +00:00
|
|
|
border: none;
|
|
|
|
background-color: transparent;
|
|
|
|
text-align: right;
|
2006-01-03 13:44:47 +00:00
|
|
|
font-size: 1.1em;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2007-01-24 02:04:16 +00:00
|
|
|
.rtl fieldset.quick, .rtl p.quick {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2006-11-24 02:04:43 +00:00
|
|
|
fieldset.quick legend {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldset.tabulated {
|
2006-11-30 15:05:51 +00:00
|
|
|
/* background-color: #DADFE4;*/
|
|
|
|
background: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
padding-top: 5px;
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldset.tabulated legend {
|
|
|
|
display: none;
|
2006-11-24 02:04:43 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
fieldset.nobg {
|
|
|
|
margin: 15px 0 0 0;
|
|
|
|
padding: 0;
|
|
|
|
border: none;
|
|
|
|
background-color: transparent;
|
2006-01-03 13:44:47 +00:00
|
|
|
font-size: 1.1em;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
fieldset.display-options {
|
|
|
|
margin: 15px 0 2px 0;
|
|
|
|
padding: 0 0 4px 0;
|
|
|
|
border: none;
|
|
|
|
background-color: transparent;
|
|
|
|
text-align: center;
|
2006-01-03 13:44:47 +00:00
|
|
|
font-size: 1.1em;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
fieldset.display-options select, fieldset.display-options input, fieldset.display-options label {
|
|
|
|
font-size: 100%;
|
|
|
|
vertical-align: middle;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
select option.disabled {
|
|
|
|
background-color: #bbb;
|
|
|
|
color: #fff;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2006-01-03 13:44:47 +00:00
|
|
|
|
|
|
|
/* Special case inputs */
|
|
|
|
select#board_timezone,
|
|
|
|
select#full_folder_action {
|
|
|
|
width: 95%;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2006-01-03 13:44:47 +00:00
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
|
|
|
|
/* Definition list layout for forms
|
|
|
|
Other general def. list properties defined in prosilver_main.css
|
|
|
|
---------------------------------------- */
|
|
|
|
dl {
|
2006-11-26 14:41:59 +00:00
|
|
|
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
dt {
|
|
|
|
float: left;
|
|
|
|
width: auto;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2005-12-19 18:55:52 +00:00
|
|
|
|
2007-01-24 02:04:16 +00:00
|
|
|
.rtl dt {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2007-01-18 12:52:38 +00:00
|
|
|
dd { color: #000;}
|
|
|
|
dd + dd { padding-top: 5px;}
|
2007-01-24 02:04:16 +00:00
|
|
|
dt span { padding: 0 5px 0 0;}
|
|
|
|
.rtl dt span { padding: 0 0 0 5px;}
|
2005-12-19 18:55:52 +00:00
|
|
|
|
2007-01-18 12:52:38 +00:00
|
|
|
dt .explain { font-style: italic;}
|
2006-05-06 15:50:59 +00:00
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
dt label {
|
|
|
|
font-size: 100%;
|
|
|
|
text-align: left;
|
|
|
|
font-weight: bold;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2007-01-24 02:04:16 +00:00
|
|
|
.rtl dt label {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
dd label {
|
2007-02-08 22:11:14 +00:00
|
|
|
font-size:100%;
|
2005-12-19 18:55:52 +00:00
|
|
|
white-space: nowrap;
|
2007-01-24 02:04:16 +00:00
|
|
|
margin: 0 10px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rtl dd label {
|
|
|
|
margin: 0 0 0 10px;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2005-12-19 18:55:52 +00:00
|
|
|
|
2007-01-18 12:52:38 +00:00
|
|
|
html>body dd label input { vertical-align: text-bottom;} /* Tweak for Moz to align checkboxes/radio buttons nicely */
|
2006-06-06 20:53:46 +00:00
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
dd input,
|
|
|
|
dd select {
|
|
|
|
max-width: 100%;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
dd textarea {
|
|
|
|
width: 100%;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
input.radio, input.permissions-checkbox {
|
2006-01-03 13:44:47 +00:00
|
|
|
width: auto !important;
|
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
cursor: default;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
dd select {
|
|
|
|
width: auto;
|
|
|
|
font-size: 100%;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
fieldset dl {
|
|
|
|
margin-bottom: 10px;
|
2006-01-03 13:44:47 +00:00
|
|
|
font-size: 1.1em;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
fieldset dt {
|
|
|
|
width: 45%;
|
|
|
|
text-align: left;
|
2007-01-24 02:04:16 +00:00
|
|
|
border: none;
|
2005-12-19 18:55:52 +00:00
|
|
|
border-right: 1px solid #CCC;
|
|
|
|
padding-top: 3px;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2007-01-24 02:04:16 +00:00
|
|
|
.rtl fieldset dt {
|
|
|
|
text-align: right;
|
|
|
|
border: none;
|
|
|
|
border-left: 1px solid #CCC;
|
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
fieldset dd {
|
2007-01-24 02:04:16 +00:00
|
|
|
margin: 0 0 0 45%;
|
|
|
|
padding: 0 0 0 5px;
|
|
|
|
border: none;
|
2005-12-19 18:55:52 +00:00
|
|
|
border-left: 1px solid #CCC;
|
|
|
|
vertical-align: top;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2007-01-24 02:04:16 +00:00
|
|
|
.rtl fieldset dd {
|
|
|
|
margin: 0 45% 0 0;
|
|
|
|
padding: 0 5px 0 0;
|
|
|
|
border: none;
|
|
|
|
border-right: 1px solid #CCC;
|
|
|
|
}
|
|
|
|
|
2007-02-26 01:24:14 +00:00
|
|
|
dd.full, .rtl dd.full {
|
2007-01-24 02:04:16 +00:00
|
|
|
margin: 0;
|
2005-12-19 18:55:52 +00:00
|
|
|
border: 0;
|
2007-01-24 02:04:16 +00:00
|
|
|
padding: 0;
|
2005-12-19 18:55:52 +00:00
|
|
|
padding-top: 3px;
|
|
|
|
text-align: center;
|
|
|
|
width: 95%;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2005-12-19 18:55:52 +00:00
|
|
|
|
|
|
|
/* Hover highlights for form rows */
|
2006-01-03 13:44:47 +00:00
|
|
|
fieldset dl:hover dt label {
|
|
|
|
color: #000000;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
input:focus, textarea:focus {
|
|
|
|
color: #000000;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2005-12-19 18:55:52 +00:00
|
|
|
|
|
|
|
|
2006-11-24 02:04:43 +00:00
|
|
|
/* Submit button fieldset or paragraph
|
2005-12-19 18:55:52 +00:00
|
|
|
---------------------------------------- */
|
|
|
|
fieldset.submit-buttons {
|
|
|
|
text-align: center;
|
2006-01-03 13:44:47 +00:00
|
|
|
background-color: #DADFE4;
|
2005-12-19 18:55:52 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 4px;
|
|
|
|
margin-top: -1px;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-11-24 02:04:43 +00:00
|
|
|
p.submit-buttons {
|
|
|
|
text-align: center;
|
|
|
|
margin: 0;
|
|
|
|
padding: 4px;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
fieldset.submit-buttons input, p.submit-buttons input {
|
2005-12-19 18:55:52 +00:00
|
|
|
padding: 3px 2px;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2006-01-03 13:44:47 +00:00
|
|
|
|
2006-11-24 02:04:43 +00:00
|
|
|
fieldset.submit-buttons legend {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
|
|
|
|
/* Input field styles
|
|
|
|
---------------------------------------- */
|
|
|
|
.inputbox {
|
|
|
|
border-left: 1px solid #AFAEAA;
|
|
|
|
border-top: 1px solid #AFAEAA;
|
|
|
|
border-right: 1px solid #D5D5C8;
|
|
|
|
border-bottom: 1px solid #D5D5C8;
|
|
|
|
background-color: #E3DFD8;
|
|
|
|
color: #111111;
|
|
|
|
font-size: 100%;
|
|
|
|
padding:2px;
|
|
|
|
cursor: text;
|
|
|
|
width: 75%;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2007-01-24 02:04:16 +00:00
|
|
|
.rtl .inputbox {
|
|
|
|
border-left: 1px solid #D5D5C8;
|
|
|
|
border-top: 1px solid #AFAEAA;
|
|
|
|
border-right: 1px solid #AFAEAA;
|
|
|
|
border-bottom: 1px solid #D5D5C8;
|
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
select.inputbox {
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 0;
|
|
|
|
width: auto;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
.inputbox:hover {
|
2007-01-24 02:04:16 +00:00
|
|
|
border: 1px solid #AFAEAA;
|
2005-12-19 18:55:52 +00:00
|
|
|
background-color: #E9E9E2;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
.inputbox:focus {
|
|
|
|
border: 1px solid #BC2A4D;
|
|
|
|
background-color: #E9E9E2;
|
|
|
|
color: #BC2A4D;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2005-12-19 18:55:52 +00:00
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
input.full,
|
|
|
|
textarea.full {
|
|
|
|
width: 99%;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2007-01-18 12:52:38 +00:00
|
|
|
* html input.full, * html textarea.full { width: 95%;}
|
|
|
|
input.medium { width: 50%;}
|
|
|
|
input.narrow { width: 25%;}
|
|
|
|
input.tiny { width: 10%;}
|
|
|
|
input.autowidth { width: auto !important;}
|
|
|
|
.box2 .inputbox { background-color: #E9E9E9;}
|
2005-12-19 18:55:52 +00:00
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
/* Pagination
|
|
|
|
---------------------------------------- */
|
|
|
|
.pagination {
|
|
|
|
height: 1%; /* IE tweak (holly hack) */
|
|
|
|
width: auto;
|
|
|
|
text-align: right;
|
|
|
|
margin-top: 5px;
|
2006-01-03 13:44:47 +00:00
|
|
|
font-size: 1em;
|
2005-12-19 18:55:52 +00:00
|
|
|
padding-bottom: 2px;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2007-01-24 02:04:16 +00:00
|
|
|
.rtl .pagination {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
.pagination strong,
|
|
|
|
.pagination b {
|
2005-12-19 18:55:52 +00:00
|
|
|
font-weight: normal;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2007-02-09 20:48:08 +00:00
|
|
|
.pagination span.page-sep {
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
.pagination span strong {
|
|
|
|
padding: 0 2px;
|
|
|
|
margin: 0 2px;
|
|
|
|
font-weight: normal;
|
|
|
|
color: #FFFFFF;
|
|
|
|
background: #069;
|
|
|
|
border: 1px solid #069;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
.pagination span a, .pagination span a:link, .pagination span a:visited, .pagination span a:active {
|
|
|
|
font-weight: normal;
|
|
|
|
text-decoration: none;
|
|
|
|
color: #5C758C;
|
|
|
|
margin: 0 2px;
|
|
|
|
padding: 0 2px;
|
|
|
|
background: #ECEDEE;
|
|
|
|
border: 1px solid #B4BAC0;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
.pagination span a:hover {
|
|
|
|
border-color: #069;
|
|
|
|
background: #069;
|
|
|
|
color: #FFF;
|
|
|
|
text-decoration: none;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
.pagination img {
|
|
|
|
vertical-align: middle;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2006-01-03 13:44:47 +00:00
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
|
|
|
|
/* Form button styles
|
|
|
|
---------------------------------------- */
|
|
|
|
a.button1, input.button1, input.button3,
|
|
|
|
a.button2, input.button2 {
|
|
|
|
width: auto !important;
|
2006-01-03 13:44:47 +00:00
|
|
|
padding: 1px 3px 0 3px;
|
2006-11-26 14:41:59 +00:00
|
|
|
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
|
2005-12-19 18:55:52 +00:00
|
|
|
color: #000;
|
2006-01-03 13:44:47 +00:00
|
|
|
background-color: #EFEFEF;
|
|
|
|
cursor: pointer;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
a.button1, input.button1 {
|
|
|
|
font-weight: bold;
|
|
|
|
border: 1px solid #666666;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
a.button2, input.button2 {
|
|
|
|
border: 1px solid #666666;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2005-12-19 18:55:52 +00:00
|
|
|
|
|
|
|
/* <a> button in the style of the form buttons */
|
|
|
|
a.button1, a.button1:link, a.button1:visited, a.button1:active,
|
|
|
|
a.button2, a.button2:link, a.button2:visited, a.button2:active {
|
|
|
|
text-decoration: none;
|
|
|
|
color: #000000;
|
|
|
|
padding: 4px 8px;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2006-01-03 13:44:47 +00:00
|
|
|
|
2007-01-26 16:09:51 +00:00
|
|
|
input.disabled {
|
|
|
|
font-weight: normal;
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
/* Action Highlighting
|
2005-12-19 18:55:52 +00:00
|
|
|
---------------------------------------- */
|
|
|
|
.success {
|
|
|
|
color: #282 !important;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
.error {
|
|
|
|
color: #BC2A4D !important;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
.successbox, .errorbox {
|
|
|
|
padding: 10px;
|
|
|
|
margin: 20px 0;
|
|
|
|
color: #1F5B13;
|
|
|
|
text-align: center;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
.successbox {
|
|
|
|
background-color: #B9DBB3;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
.errorbox {
|
2006-10-12 12:37:13 +00:00
|
|
|
background-color: #ECD7DA;
|
|
|
|
color: #990000;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
.successbox h3, .errorbox h3 {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.4em;
|
|
|
|
margin-bottom: 0.5em;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
.successbox p, .errorbox p {
|
|
|
|
font-size: 1.1em;
|
|
|
|
margin-bottom: 0;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-01-03 13:44:47 +00:00
|
|
|
.successbox a, .errorbox a {
|
2005-12-19 18:55:52 +00:00
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: none;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2005-12-19 18:55:52 +00:00
|
|
|
|
|
|
|
|
2006-01-05 22:47:44 +00:00
|
|
|
/* Special cases for the error page */
|
|
|
|
#errorpage #page-header a {
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 6em;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-01-05 22:47:44 +00:00
|
|
|
#errorpage #content {
|
|
|
|
padding-top: 10px;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-01-05 22:47:44 +00:00
|
|
|
#errorpage #content h1 {
|
|
|
|
color: #DF075C;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-01-05 22:47:44 +00:00
|
|
|
#errorpage #content h2 {
|
|
|
|
margin-top: 20px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
border-bottom: 1px solid #CCCCCC;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
color: #333333;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2006-01-05 22:47:44 +00:00
|
|
|
|
2006-04-23 14:23:22 +00:00
|
|
|
/* Tooltip for permission roles */
|
2006-04-17 22:36:43 +00:00
|
|
|
.tooltip {
|
|
|
|
width: 200px;
|
|
|
|
color: #000;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tooltip span.top {
|
|
|
|
background: #EFEFEF;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tooltip span.bottom {
|
|
|
|
padding: 5px;
|
|
|
|
color: #000;
|
|
|
|
background: #fff;
|
|
|
|
}
|
2006-01-05 22:47:44 +00:00
|
|
|
|
2005-12-21 18:18:12 +00:00
|
|
|
/*
|
|
|
|
Format Buttons for signature editor
|
|
|
|
*/
|
|
|
|
#format-buttons {
|
|
|
|
margin: 15px 0 2px 0;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2005-12-21 18:18:12 +00:00
|
|
|
#format-buttons input, #format-buttons select {
|
|
|
|
vertical-align: middle;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2005-12-21 18:18:12 +00:00
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
/* Nice method for clearing floated blocks without having to insert any extra markup
|
|
|
|
From http://www.positioniseverything.net/easyclearing.html */
|
|
|
|
.clearfix:after, #tabs:after, .row:after, #content:after, fieldset dl:after, #page-body:after {
|
|
|
|
content: ".";
|
|
|
|
display: block;
|
|
|
|
height: 0;
|
|
|
|
clear: both;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
2006-06-06 20:53:46 +00:00
|
|
|
|
2005-12-19 18:55:52 +00:00
|
|
|
/* Hide from Mac IE, Windows IE uses this as it doesn't support the :after method above \*/
|
2006-02-02 21:06:30 +00:00
|
|
|
.clearfix, #tabs, .row, #content, fieldset dl, #page-body {
|
2005-12-19 18:55:52 +00:00
|
|
|
height: 1%;
|
|
|
|
}
|
|
|
|
/* End hide */
|
2006-06-03 22:19:41 +00:00
|
|
|
|
|
|
|
/* Syntax Highlighting
|
|
|
|
---------------------------------------- */
|
|
|
|
.sourcenum {
|
|
|
|
color: gray;
|
2006-11-26 14:41:59 +00:00
|
|
|
font-family: Monaco, 'Courier New', monospace;
|
2006-06-03 22:19:41 +00:00
|
|
|
font-size: 125%;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 120%;
|
|
|
|
text-align: right;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
2006-06-06 20:53:46 +00:00
|
|
|
|
2007-01-24 02:04:16 +00:00
|
|
|
.rtl .sourcenum {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2006-06-03 22:19:41 +00:00
|
|
|
.source {
|
2006-11-26 14:41:59 +00:00
|
|
|
font-family: Monaco, 'Courier New', monospace;
|
2006-06-03 22:19:41 +00:00
|
|
|
font-size: 125%;
|
|
|
|
line-height: 120%;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
2006-06-06 20:53:46 +00:00
|
|
|
|
2006-06-03 22:19:41 +00:00
|
|
|
.syntaxbg {
|
|
|
|
color: #FFFFFF;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-06-03 22:19:41 +00:00
|
|
|
.syntaxcomment {
|
|
|
|
color: #FF8000;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-06-03 22:19:41 +00:00
|
|
|
.syntaxdefault {
|
|
|
|
color: #0000BB;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-06-03 22:19:41 +00:00
|
|
|
.syntaxhtml {
|
|
|
|
color: #000000;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-06-03 22:19:41 +00:00
|
|
|
.syntaxkeyword {
|
|
|
|
color: #007700;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
2006-06-03 22:19:41 +00:00
|
|
|
.syntaxstring {
|
|
|
|
color: #DD0000;
|
2006-06-06 20:53:46 +00:00
|
|
|
}
|
2007-01-18 12:52:38 +00:00
|
|
|
|
|
|
|
/* Permission interface
|
|
|
|
---------------------------------------- */
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
fieldset.permissions legend {
|
2007-01-18 12:52:38 +00:00
|
|
|
text-transform: none;
|
|
|
|
}
|
2007-03-05 23:13:50 +00:00
|
|
|
fieldset.permissions legend input{
|
2007-01-18 16:57:46 +00:00
|
|
|
height: 1.1em;
|
|
|
|
}
|
2007-01-18 12:52:38 +00:00
|
|
|
|
|
|
|
/* Permission sections */
|
2007-03-05 23:13:50 +00:00
|
|
|
fieldset.permissions .permissions-simple {
|
2007-01-18 12:52:38 +00:00
|
|
|
text-align: left;
|
|
|
|
padding-top: 3px;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.rtl fieldset.permissions .permissions-simple {
|
2007-01-24 02:04:16 +00:00
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
fieldset.permissions .permissions-advanced {
|
2007-01-24 02:04:16 +00:00
|
|
|
padding: 10px 0 0 5px;
|
2007-01-18 12:52:38 +00:00
|
|
|
vertical-align: top;
|
|
|
|
clear: right;
|
2007-01-24 02:04:16 +00:00
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.rtl fieldset.permissions .permissions-advanced {
|
2007-01-24 02:04:16 +00:00
|
|
|
padding: 10px 5px 0 0;
|
|
|
|
clear: left;
|
2007-01-18 12:52:38 +00:00
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
fieldset.permissions .permissions-switch {
|
2007-01-18 12:52:38 +00:00
|
|
|
float: right;
|
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.rtl fieldset.permissions .permissions-switch {
|
2007-01-24 02:04:16 +00:00
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-switch a {
|
2007-01-18 12:52:38 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Tabbed menu */
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-category {
|
2007-01-18 12:52:38 +00:00
|
|
|
line-height: normal;
|
2007-01-24 02:04:16 +00:00
|
|
|
margin: 0 0 0 7px;
|
2007-01-18 12:52:38 +00:00
|
|
|
min-width: 570px;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.rtl .permissions-category {
|
2007-01-24 02:04:16 +00:00
|
|
|
margin: 0 7px 0 0;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-category ul {
|
2007-01-24 02:04:16 +00:00
|
|
|
margin: 0;
|
2007-01-18 12:52:38 +00:00
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-category li {
|
2007-01-18 12:52:38 +00:00
|
|
|
display: inline;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
font-size: 1em;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-category a {
|
2007-01-18 12:52:38 +00:00
|
|
|
float: left;
|
|
|
|
background: url("../images/bg_tabs1.gif") no-repeat 0% -35px;
|
|
|
|
margin: 0 1px 0 0;
|
|
|
|
padding: 0 0 0 6px;
|
|
|
|
text-decoration: none;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.rtl .permissions-category a {
|
2007-01-24 02:04:16 +00:00
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-category a span.tabbg {
|
2007-01-18 12:52:38 +00:00
|
|
|
float: left;
|
|
|
|
display: block;
|
|
|
|
background: url("../images/bg_tabs2.gif") no-repeat 100% -35px;
|
|
|
|
padding: 7px 12px 6px 6px;
|
|
|
|
color: #536482;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.rtl .permissions-category a span.tabbg {
|
2007-02-26 03:30:32 +00:00
|
|
|
float: right;
|
2007-01-24 02:04:16 +00:00
|
|
|
}
|
|
|
|
|
2007-01-18 12:52:38 +00:00
|
|
|
/* Commented Backslash Hack hides rule from IE5-Mac \*/
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-category a span.tabbg, .rtl .permissions-category a span.tabbg { float: none;}
|
2007-01-18 12:52:38 +00:00
|
|
|
/* End hack */
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-category a:hover span.tabbg {
|
2007-01-18 12:52:38 +00:00
|
|
|
color: #DD6900;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-category .activetab a {
|
2007-01-18 12:52:38 +00:00
|
|
|
background-position: 0 0px;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-category .activetab a span.tabbg {
|
2007-01-18 12:52:38 +00:00
|
|
|
background-position: 100% 0px;
|
|
|
|
padding-bottom: 7px;
|
|
|
|
color: #333333;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-category a:hover {
|
2007-01-18 12:52:38 +00:00
|
|
|
background-position: 0 -70px;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-category a:hover span.tabbg {
|
2007-01-18 12:52:38 +00:00
|
|
|
background-position: 100% -70px;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-category .activetab a:hover span.tabbg {
|
2007-01-18 12:52:38 +00:00
|
|
|
color: #333333;
|
|
|
|
background-position: 100% 0px;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-category .activetab a:hover {
|
2007-01-18 12:52:38 +00:00
|
|
|
background-position: 0 0px;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-category a span.colour {
|
2007-01-18 12:52:38 +00:00
|
|
|
border: 1px solid #536482;
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
2007-01-24 02:04:16 +00:00
|
|
|
margin: 0 5px 0 0;
|
|
|
|
}
|
|
|
|
|
2007-02-26 03:30:32 +00:00
|
|
|
/* Most browsers will have to live with a left aligned icon in RTL mode, as (currently) only Firefox 3.0 Alpha 3 renders it correctly without destroying it
|
2007-03-05 23:13:50 +00:00
|
|
|
.rtl .permissions-category a span.colour {
|
2007-01-24 02:04:16 +00:00
|
|
|
float: right;
|
|
|
|
margin: 0 0 0 5px;
|
2007-01-18 12:52:38 +00:00
|
|
|
}
|
2007-02-26 03:30:32 +00:00
|
|
|
*/
|
2007-01-18 12:52:38 +00:00
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-category .activetab span.colour {
|
2007-01-18 12:52:38 +00:00
|
|
|
border-color: #333333;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-category a:hover span.colour {
|
2007-01-18 12:52:38 +00:00
|
|
|
border-color: #DD6900;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-category .activetab a:hover span.colour {
|
2007-01-18 12:52:38 +00:00
|
|
|
border-color: #333333;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Permission preset colours */
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-preset-yes span.colour,
|
2007-01-18 12:52:38 +00:00
|
|
|
.yes {
|
|
|
|
background-color: #86F786;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-preset-custom span.colour {
|
2007-01-18 12:52:38 +00:00
|
|
|
background-color: #B2BBDD;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-preset-never span.colour {
|
2007-01-18 12:52:38 +00:00
|
|
|
background-color: #DD0000;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-preset-no span.colour,
|
2007-01-18 12:52:38 +00:00
|
|
|
.never {
|
|
|
|
background-color: #EFB0B2;
|
|
|
|
}
|
|
|
|
|
2007-02-26 03:30:32 +00:00
|
|
|
/* Permission panel
|
2007-01-18 12:52:38 +00:00
|
|
|
---------------------------------------- */
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-panel {
|
2007-01-18 12:52:38 +00:00
|
|
|
float: left;
|
|
|
|
background-color: #FFF;
|
|
|
|
width: 100%;
|
|
|
|
border: 1px solid #A9B8C2;
|
|
|
|
margin-top: -1px;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.rtl .permissions-panel {
|
2007-01-24 02:04:16 +00:00
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-panel span.corners-top {
|
2007-01-18 12:52:38 +00:00
|
|
|
background-image: url("../images/corners_left2.gif");
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-panel span.corners-top span {
|
2007-01-18 12:52:38 +00:00
|
|
|
background-image: url("../images/corners_right2.gif");
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-panel span.corners-bottom {
|
2007-01-18 12:52:38 +00:00
|
|
|
background-image: url("../images/corners_left2.gif");
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-panel span.corners-bottom span {
|
2007-01-18 12:52:38 +00:00
|
|
|
background-image: url("../images/corners_right2.gif");
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-panel span.corners-top, .permissions-panel span.corners-bottom,
|
|
|
|
.permissions-panel span.corners-top span, .permissions-panel span.corners-bottom span {
|
2007-01-18 12:52:38 +00:00
|
|
|
font-size: 1px;
|
|
|
|
line-height: 1px;
|
|
|
|
display: block;
|
|
|
|
height: 5px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-panel span.corners-top {
|
2007-01-18 12:52:38 +00:00
|
|
|
background-image: url("../images/corners_left2.gif");
|
|
|
|
background-position: 0 0;
|
|
|
|
margin: 0 0;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-panel span.corners-top span {
|
2007-01-18 12:52:38 +00:00
|
|
|
background-image: url("../images/corners_right2.gif");
|
|
|
|
background-position: 100% 0;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-panel span.corners-bottom {
|
2007-01-18 12:52:38 +00:00
|
|
|
background-image: url("../images/corners_left2.gif");
|
|
|
|
background-position: 0 100%;
|
|
|
|
margin: 0 0;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-panel span.corners-bottom span {
|
2007-01-18 12:52:38 +00:00
|
|
|
background-image: url("../images/corners_right2.gif");
|
|
|
|
background-position: 100% 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Permission table
|
|
|
|
---------------------------------------- */
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-panel .tablewrap {
|
2007-01-18 12:52:38 +00:00
|
|
|
margin: 0 10px;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-panel table {
|
2007-01-18 12:52:38 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-panel th {
|
2007-01-18 12:52:38 +00:00
|
|
|
text-transform: none;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-panel th.value {
|
2007-01-18 12:52:38 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-panel th.name {
|
2007-01-18 12:52:38 +00:00
|
|
|
text-align: left;
|
|
|
|
width: auto;
|
|
|
|
text-transform: none;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.rtl .permissions-panel th.name {
|
2007-01-24 02:04:16 +00:00
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2007-03-06 00:18:23 +00:00
|
|
|
.permissions-panel th.permissions-name {
|
2007-01-18 12:52:38 +00:00
|
|
|
border: none;
|
|
|
|
color: #536482;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
2007-03-06 00:18:23 +00:00
|
|
|
.permissions-panel th.permissions-name a.trace {
|
2007-01-18 12:52:38 +00:00
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-panel th.row3 {
|
2007-01-18 12:52:38 +00:00
|
|
|
background-image: none;
|
|
|
|
background-color: #D1D7DC;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-panel th.row4 {
|
2007-01-18 12:52:38 +00:00
|
|
|
background-image: none;
|
|
|
|
background-color: #E4E8EB;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-panel th a:link, .permissions-panel th a:hover, .permissions-panel th a:visited {
|
2007-01-18 12:52:38 +00:00
|
|
|
display: block;
|
|
|
|
color: #FFA34F;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-panel td {
|
2007-01-18 12:52:38 +00:00
|
|
|
padding: 0;
|
|
|
|
text-align: center;
|
2007-03-06 00:57:31 +00:00
|
|
|
width: 10%;
|
2007-01-18 12:52:38 +00:00
|
|
|
}
|
|
|
|
|
2007-03-05 23:13:50 +00:00
|
|
|
.permissions-panel td label {
|
2007-01-18 12:52:38 +00:00
|
|
|
display: block;
|
|
|
|
}
|