552 lines
9.8 KiB
CSS
552 lines
9.8 KiB
CSS
/*PMUI Stylesheet
|
|
pmui 1.0.0
|
|
*/
|
|
|
|
.pmui-icon {
|
|
background-image: url(../img/sprite.png);
|
|
background-repeat: no-repeat;
|
|
display: inline-block;
|
|
}
|
|
|
|
.pmui-icon-help {
|
|
background-position: -16px 0;
|
|
}
|
|
|
|
.pmui-icon-info {
|
|
background-position: 0 0;
|
|
}
|
|
|
|
.pmui-icon-error {
|
|
background-position: -16px -16px;
|
|
}
|
|
|
|
.pmui-icon-warning {
|
|
background-position: 0 -16px;
|
|
}
|
|
|
|
.pmui-tooltip {
|
|
padding: 0.2em 0.3em;
|
|
border-radius: 1em;
|
|
}
|
|
|
|
.pmui-tooltip-message {
|
|
margin: 0 5px 0 3px;
|
|
}
|
|
|
|
.pmui-tooltip-mode-normal .pmui-tooltip-message {
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.pmui-field-message-container {
|
|
display: block;
|
|
}
|
|
|
|
.pmui-tooltip-category-error {
|
|
color: #F00;
|
|
}
|
|
.pmui-window-modal {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0, 0, 0, 0.4);
|
|
left: 0;
|
|
top: 0;
|
|
z-index: 100
|
|
}
|
|
|
|
.pmui-window,
|
|
.pmui-window-header {
|
|
-webkit-border-top-left-radius: 5px;
|
|
-webkit-border-top-right-radius: 5px;
|
|
-moz-border-top-left-radius: 5px;
|
|
-moz-border-top-right-radius: 5px;
|
|
-o-border-top-left-radius: 5px;
|
|
-o-border-top-right-radius: 5px;
|
|
-ms-box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
|
|
cursor: move;
|
|
border-top-left-radius: 5px;
|
|
border-top-right-radius: 5px;
|
|
}
|
|
|
|
.pmui-window {
|
|
padding: 6px;
|
|
position: absolute;
|
|
background: #D8D8D8;
|
|
border: 1px solid #BBB;
|
|
-webkit-box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
|
|
-moz-box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
|
|
-o-box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
|
|
-ms-box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
|
|
box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
.pmui-window-title {
|
|
font-weight: bold;
|
|
display: block;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.pmui-window .pmui-window-close {
|
|
float: right;
|
|
background: #888;
|
|
border: 0;
|
|
width: 1.5em;
|
|
}
|
|
|
|
.pmui-window-body {
|
|
background: #F8F8F8;
|
|
border: 1px solid #aaa;
|
|
overflow: auto;
|
|
cursor: default;
|
|
}
|
|
|
|
.pmui-window-footer {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.pmui-button {
|
|
margin-top: 1%;
|
|
}
|
|
.pmui-button {
|
|
-webkit-border-radius: 3px;
|
|
-moz-border-radius: 3px;
|
|
-ms-border-radius: 3px;
|
|
-o-border-radius: 3px;
|
|
border-radius: 3px;
|
|
border:1px solid #7d99ca;
|
|
text-align:center;
|
|
margin-top: auto;
|
|
margin-bottom: auto;
|
|
font-size:12px;
|
|
font-family:arial, helvetica, sans-serif;
|
|
text-decoration:none;
|
|
display:inline-block;
|
|
font-weight:bold;
|
|
color: #FFFFFF;
|
|
background-color: #AAAAAA;
|
|
background-image: -webkit-gradient(linear, left top, left bottom, from(#A5B8DA), to(#7089B3));
|
|
background-image: -webkit-linear-gradient(top, #A5B8DA, #7089B3);
|
|
background-image: -o-linear-gradient(top, #A5B8DA, #7089B3);
|
|
background-image: -moz-linear-gradient(top, #A5B8DA, #7089B3);
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
}
|
|
.pmui-button:hover{
|
|
background-image: -webkit-gradient(linear, left top, left bottom, from(#819bcb), to(#536f9d));
|
|
background-image: -webkit-linear-gradient(top, #819bcb, #536f9d);
|
|
background-color: #819bcb;
|
|
}
|
|
/**
|
|
* TreePanel Class
|
|
*
|
|
* Styles for TreeItem class as a basic item from TreePanel class
|
|
*/
|
|
|
|
.pmui-tree {
|
|
font-size: 10px;
|
|
}
|
|
.pmui-tree div:hover{
|
|
background-color: #d0e2f4;
|
|
}
|
|
.pmui-item-treeitem span{
|
|
margin: 0 5px 0 5px;
|
|
}
|
|
.pmui-item-selected {
|
|
background-color: #b2adad;
|
|
}
|
|
|
|
.pmui-tree-icon {
|
|
background: url(../img/leaf.gif) no-repeat;
|
|
display: inline-block;
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
.pmui-tree-parent {
|
|
background: url(../img/folder.gif) no-repeat;
|
|
display: inline-block;
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
.pmui-tree-nodeclosed {
|
|
background: url(../img/elbow-plus.gif) no-repeat;
|
|
display: inline-block;
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
.pmui-tree-nodeexpanded {
|
|
background: url(../img/elbow-minus.gif) no-repeat;
|
|
display: inline-block;
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
.pmui-node-icon {
|
|
display: inline-block;
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
.pmui-field:hover {
|
|
background: #F0F0F0;
|
|
}
|
|
|
|
.pmui-field-label {
|
|
display: inline-block;
|
|
text-align: right;
|
|
padding: 4px 2px;
|
|
background: #F0F0F0;
|
|
}
|
|
|
|
.pmui-field-message {
|
|
display: block;
|
|
}
|
|
|
|
input.pmui-element,
|
|
select.pmui-element,
|
|
textarea.pmui-element {
|
|
border: 1px solid #888;
|
|
}
|
|
|
|
.pmui-field-container {
|
|
display: block;
|
|
}
|
|
|
|
.pmui-field-control-table {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
.pmui-formpanel {
|
|
-moz-box-sizing: border-box;
|
|
-webkit-box-sizing: border-box;
|
|
-o-box-sizing: border-box;
|
|
-ms-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
}
|
|
|
|
.pmui-formpanel-legend {
|
|
height: 1em;
|
|
}
|
|
.pmui-form-title,
|
|
.pmui-form-footer {
|
|
text-align: center;
|
|
}
|
|
|
|
.pmui-form-header {
|
|
padding: 0.4em;
|
|
}
|
|
|
|
.pmui-form-title {
|
|
font-size: 1.2em;
|
|
margin: 0;
|
|
line-height: 100%;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.pmui-form-footer {
|
|
padding: 6px;
|
|
}
|
|
|
|
.pmui-menu-container li{
|
|
list-style-type: none;
|
|
}
|
|
.pmui-menu-container a{
|
|
text-decoration: none;
|
|
|
|
}
|
|
.pmui-menu-container {
|
|
background-color: #eaeaea;
|
|
border: 1px solid;
|
|
border-color: rgb(163, 162, 162);
|
|
|
|
-moz-box-shadow: 8px 9px 10px -10px #000;
|
|
-webkit-box-shadow: 8px 9px 10px -10px #000;
|
|
box-shadow: 8px 9px 10px -10px #000;
|
|
}
|
|
.pmui-list {
|
|
padding: 0px 5px 0px 5px;
|
|
margin: 10px 0px 10px 0px;
|
|
}
|
|
.pmui-menu-item-element {
|
|
cursor: pointer;
|
|
}
|
|
.pmui-menu-item-element-disabled {
|
|
cursor: default;
|
|
opacity: .25;
|
|
-moz-opacity: .25;
|
|
filter:alpha(opacity=25);
|
|
}
|
|
.pmui-menu-item-element-disabled a {
|
|
cursor: default;
|
|
}
|
|
.pmui-item-link {
|
|
padding-left: 40px;
|
|
}
|
|
.pmui-menu-icon-empty {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
.pmui-item-separator {
|
|
}
|
|
.pmui-separator {
|
|
border-bottom: 1px solid;
|
|
display: block;
|
|
font-size: 1px;
|
|
line-height: 1px;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
background-color: #999797;
|
|
border-bottom-color: #999797;
|
|
height: 1px;
|
|
}
|
|
|
|
.pmui-check-checked {
|
|
background: url(../img/checked.png) no-repeat;
|
|
background-size: 12px 12px;
|
|
}
|
|
.pmui-check-unchecked {
|
|
background: url(../img/unchecked.png) no-repeat;
|
|
background-size: 16px 16px;
|
|
}
|
|
.pmui-item-active {
|
|
background-color: #cfdef7;
|
|
border-style: solid;
|
|
border-width: 1px 0;
|
|
margin: 0 1px;
|
|
padding: 0;
|
|
border-color: #b0caf4;
|
|
}
|
|
|
|
.pmui-label {
|
|
color: black;
|
|
}
|
|
.pmui-item-icon {
|
|
border-right: 1px solid;
|
|
border-color: #cecece;
|
|
left: 5px;
|
|
padding-right: 10px;
|
|
margin-left: 5px;
|
|
position: absolute;
|
|
width: 16px;
|
|
height: 16px
|
|
}
|
|
.pmui-text{
|
|
font-size: 14px;
|
|
font: normal 8pt "Open Sans", Tahoma, sans-serif, MiscFixed;
|
|
color: black;
|
|
}
|
|
|
|
|
|
.pmui-tabpanel-tabs{
|
|
list-style: none;
|
|
margin: initial;
|
|
padding: initial;
|
|
display: block;
|
|
}
|
|
.pmui-tabItem{
|
|
display: inline-block;
|
|
border-radius: 0.4em 0.4em 0 0;
|
|
border-left: 1px solid #c0c0c0;
|
|
border-right: 1px solid #c0c0c0;
|
|
border-top: 1px solid #c0c0c0;
|
|
margin:0 2px 0 0;
|
|
padding:0.1em 0.4em 0.1em 0.4em;
|
|
}
|
|
|
|
.pmui-tabItem:hover{
|
|
background: #D1D1D1;
|
|
cursor:pointer;
|
|
}
|
|
|
|
.pmui-tabpanel-container{
|
|
width:365px;
|
|
height:400px;
|
|
background:#F3F2F2;
|
|
border: 1px solid #C0C0C0;
|
|
}
|
|
|
|
.pmui-tab-ref{
|
|
text-decoration: none;
|
|
color: #2F4F4F;
|
|
}
|
|
.pmui-datepicker {
|
|
font-size: 12px;
|
|
width: 200px;
|
|
position: absolute;
|
|
border: #888 1px solid;
|
|
background: #F8F8F8;
|
|
}
|
|
|
|
.pmui-datepicker input {
|
|
border: 1px #888 solid;
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.pmui-datepicker a {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
|
|
.pmui-datepicker-header {
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.pmui-datepicker-head-table {
|
|
width: 100%;
|
|
}
|
|
|
|
.pmui-datepicker-month-selector select,
|
|
.pmui-datepicker-year-selector select {
|
|
background: none;
|
|
border: none;
|
|
}
|
|
|
|
.pmui-datepicker-month-selector {
|
|
text-align: left;
|
|
}
|
|
|
|
.pmui-datepicker-year-selector {
|
|
text-align: right;
|
|
}
|
|
|
|
.pmui-datepicker-table {
|
|
width: 100%;
|
|
}
|
|
|
|
.pmui-datepicker-table tr {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.pmui-datepicker-table td {
|
|
text-align: center;
|
|
background: #F0F0F0;
|
|
padding: 1px;
|
|
}
|
|
|
|
.pmui-datepicker-table td a {
|
|
display: block;
|
|
}
|
|
|
|
.pmui-datepicker-table td a:hover,
|
|
.pmui-datepicker-table td .selected {
|
|
background: #D0D0D0;
|
|
}
|
|
|
|
.pmui-datepicker-table thead th {
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.pmui-datepicker-disabled-date {
|
|
color: #888;
|
|
}
|
|
|
|
.pmui-datepicker-footer {
|
|
padding: 4px;
|
|
}
|
|
|
|
.pmui-datepicker-footer div {
|
|
display: inline-block;
|
|
}
|
|
|
|
.pmui-datepicker-button {
|
|
font-family: Arial;
|
|
background: #C0C0C0;
|
|
padding: 1px;
|
|
border: 1px solid #888;
|
|
margin: 1px;
|
|
}
|
|
.pmui-menu-container li{
|
|
list-style-type: none;
|
|
}
|
|
.pmui-menu-container a{
|
|
text-decoration: none;
|
|
|
|
}
|
|
.pmui-menu-container {
|
|
background-color: #eaeaea;
|
|
border: 1px solid;
|
|
border-color: rgb(163, 162, 162);
|
|
|
|
-moz-box-shadow: 8px 9px 10px -10px #000;
|
|
-webkit-box-shadow: 8px 9px 10px -10px #000;
|
|
box-shadow: 8px 9px 10px -10px #000;
|
|
}
|
|
.pmui-list {
|
|
padding: 0px 5px 0px 5px;
|
|
margin: 10px 0px 10px 0px;
|
|
}
|
|
.pmui-menu-item-element {
|
|
cursor: pointer;
|
|
}
|
|
.pmui-menu-item-element-disabled {
|
|
cursor: default;
|
|
opacity: .25;
|
|
-moz-opacity: .25;
|
|
filter:alpha(opacity=25);
|
|
}
|
|
.pmui-menu-item-element-disabled a {
|
|
cursor: default;
|
|
}
|
|
.pmui-item-link {
|
|
padding-left: 40px;
|
|
}
|
|
.pmui-menu-icon-empty {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
.pmui-item-separator {
|
|
}
|
|
.pmui-separator {
|
|
border-bottom: 1px solid;
|
|
display: block;
|
|
font-size: 1px;
|
|
line-height: 1px;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
background-color: #999797;
|
|
border-bottom-color: #999797;
|
|
height: 1px;
|
|
}
|
|
|
|
.pmui-check-checked {
|
|
background: url(../img/checked.png) no-repeat;
|
|
background-size: 12px 12px;
|
|
}
|
|
.pmui-check-unchecked {
|
|
background: url(../img/unchecked.png) no-repeat;
|
|
background-size: 16px 16px;
|
|
}
|
|
.pmui-item-active {
|
|
background-color: #cfdef7;
|
|
border-style: solid;
|
|
border-width: 1px 0;
|
|
margin: 0 1px;
|
|
padding: 0;
|
|
border-color: #b0caf4;
|
|
}
|
|
|
|
.pmui-label {
|
|
color: black;
|
|
}
|
|
.pmui-item-icon {
|
|
border-right: 1px solid;
|
|
border-color: #cecece;
|
|
left: 5px;
|
|
padding-right: 10px;
|
|
margin-left: 5px;
|
|
position: absolute;
|
|
width: 16px;
|
|
height: 16px
|
|
}
|
|
.pmui-text{
|
|
font-size: 14px;
|
|
font: normal 8pt "Open Sans", Tahoma, sans-serif, MiscFixed;
|
|
color: black;
|
|
}
|
|
|
|
|