forked from Coded/SIPRP
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
1.2 KiB
85 lines
1.2 KiB
/*
|
|
* After modifying this style sheet, refresh the page being designed to see the effect of the modification.
|
|
* Click the Refresh button in the Visual Designer toolbar to refresh the page.
|
|
*/
|
|
|
|
/* Style rules to make Java Server faces Standarad data tables look better */
|
|
|
|
.list-header {
|
|
background-color: #eeeeee;
|
|
font-size: larger;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.list-paging-header {
|
|
background-color: white;
|
|
}
|
|
|
|
.list-paging-footer {
|
|
background-color: white;
|
|
}
|
|
|
|
.list-row-even {
|
|
}
|
|
|
|
.list-row-odd {
|
|
background-color: #eeeeee;
|
|
}
|
|
|
|
/* Labels */
|
|
|
|
.label{
|
|
font-size : 12px;
|
|
font-weight : bold;
|
|
}
|
|
|
|
/* center blocks */
|
|
|
|
.centerBlock{
|
|
text-align: center;
|
|
left: 0;
|
|
right: 0;
|
|
margin-left: auto;
|
|
margin-right: auto;}
|
|
|
|
/* Grid panel column alignment */
|
|
|
|
.gridColLeft {
|
|
text-align : left;
|
|
}
|
|
|
|
.gridColCenter {
|
|
text-align: center;
|
|
}
|
|
|
|
.gridColRight {
|
|
text-align: right;
|
|
}
|
|
|
|
/* Style rules for message severity levels */
|
|
|
|
.infoMessage {
|
|
font-size : 13px;
|
|
color: black;
|
|
}
|
|
|
|
.warnMessage {
|
|
font-size : 13px;
|
|
color: orange;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.errorMessage {
|
|
color: #990000;
|
|
font-weight: bold;
|
|
font-size : 13px;
|
|
}
|
|
|
|
.fatalMessage {
|
|
color: red;
|
|
font-style: italic;
|
|
font-size : 13px;
|
|
font-weight: bold;
|
|
}
|
|
|