2011-08-13 18:51:35 +02:00
|
|
|
/**
|
2012-03-20 16:26:34 +01:00
|
|
|
* Styles for etemplate2 widgets
|
2011-08-13 18:51:35 +02:00
|
|
|
*
|
|
|
|
* @version: $Id$
|
|
|
|
*/
|
2011-08-16 18:46:22 +02:00
|
|
|
|
2012-03-20 16:26:34 +01:00
|
|
|
/**
|
|
|
|
* Top level
|
|
|
|
*/
|
2011-08-13 18:51:35 +02:00
|
|
|
#container {
|
2011-08-22 18:37:04 +02:00
|
|
|
/*margin: 10px;
|
|
|
|
border: 1px solid gray;*/
|
2011-08-13 18:51:35 +02:00
|
|
|
padding: 10px;
|
2011-08-22 18:37:04 +02:00
|
|
|
background-color: white;
|
2011-08-13 18:51:35 +02:00
|
|
|
}
|
|
|
|
|
2011-08-16 18:46:22 +02:00
|
|
|
/**
|
|
|
|
* VBox widget
|
|
|
|
*/
|
|
|
|
div.et2_vbox>* {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* HBox widget
|
|
|
|
*/
|
|
|
|
|
|
|
|
div.et2_hbox div.et2_hbox {
|
|
|
|
display: inline;
|
|
|
|
}
|
2012-04-09 21:46:33 +02:00
|
|
|
div.et2_hbox {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2011-08-16 18:46:22 +02:00
|
|
|
div.et2_hbox>* {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.et2_hbox_left {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.et2_hbox_al_center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.et2_hbox_al_right {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.et2_hbox_right {
|
|
|
|
float: right;
|
|
|
|
clear: right;
|
|
|
|
}
|
2012-04-09 21:46:33 +02:00
|
|
|
div.et2_hbox>div {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2011-08-16 18:46:22 +02:00
|
|
|
|
2012-03-20 16:26:34 +01:00
|
|
|
/**
|
|
|
|
* Placeholder widget - used for un-implemented widgets
|
|
|
|
*/
|
2011-08-13 18:51:35 +02:00
|
|
|
.et2_placeholder {
|
|
|
|
display: inline-block;
|
|
|
|
border: 1px solid cornflowerblue;
|
|
|
|
background-color: #FCFCFC;
|
|
|
|
padding: 3px;
|
|
|
|
margin: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.et2_placeholder .et2_caption {
|
|
|
|
display: block;
|
|
|
|
font-size: 8pt;
|
|
|
|
margin: 0 0 5px 0;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #2E2E2E;
|
2011-08-19 18:00:44 +02:00
|
|
|
cursor: pointer;
|
2011-08-13 18:51:35 +02:00
|
|
|
text-shadow: rgba(255, 255, 255, 0.5) 0 1px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.et2_placeholder .et2_attr {
|
|
|
|
display: block;
|
|
|
|
font-size: 8pt;
|
|
|
|
color: #3030A0;
|
|
|
|
margin: 2px 0 2px 0;
|
|
|
|
}
|
|
|
|
|
2012-03-20 16:26:34 +01:00
|
|
|
/**
|
|
|
|
* Label widget, and labels for other widgets
|
|
|
|
*/
|
2011-08-13 18:51:35 +02:00
|
|
|
.et2_label {
|
|
|
|
color: #101050;
|
|
|
|
}
|
|
|
|
|
2011-08-26 00:42:07 +02:00
|
|
|
a.et2_url {
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
margin: -4px;
|
|
|
|
padding: 2px;
|
|
|
|
padding-left: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.et2_url.email {
|
2012-03-20 16:26:34 +01:00
|
|
|
background-image: url(images/email.png);
|
2011-08-26 00:42:07 +02:00
|
|
|
}
|
|
|
|
a.et2_url.phone {
|
2012-03-20 16:26:34 +01:00
|
|
|
background-image: url(images/phone.png);
|
2011-08-26 00:42:07 +02:00
|
|
|
}
|
|
|
|
a.et2_url.url {
|
2012-03-20 16:26:34 +01:00
|
|
|
background-image: url(images/url.png);
|
2011-08-26 00:42:07 +02:00
|
|
|
}
|
|
|
|
|
2012-03-20 16:26:34 +01:00
|
|
|
/**
|
|
|
|
* Button widget - text only, and icon
|
|
|
|
*/
|
2012-03-08 18:10:26 +01:00
|
|
|
.et2_button {
|
2011-09-22 21:10:21 +02:00
|
|
|
cursor: pointer;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
font-size: 9pt;
|
|
|
|
|
|
|
|
text-shadow: 1px 1px #E0E0E0;
|
|
|
|
}
|
2012-05-03 00:29:15 +02:00
|
|
|
.et2_button_text, input[type=button] {
|
2011-08-13 18:51:35 +02:00
|
|
|
background-color: #E0E0E0;
|
2012-03-20 16:26:34 +01:00
|
|
|
background-image: url(images/gradient01.png);
|
2011-08-13 18:51:35 +02:00
|
|
|
background-position: center;
|
|
|
|
background-repeat: repeat-x;
|
|
|
|
|
|
|
|
margin: 5px;
|
|
|
|
padding: 3px;
|
|
|
|
|
2011-09-22 21:10:21 +02:00
|
|
|
border: 1px solid silver;
|
|
|
|
color: #101010;
|
2011-08-13 18:51:35 +02:00
|
|
|
}
|
2012-03-08 18:10:26 +01:00
|
|
|
.et2_button_icon {
|
2011-09-22 21:10:21 +02:00
|
|
|
border: none;
|
|
|
|
background: transparent;
|
2012-04-05 23:32:57 +02:00
|
|
|
padding: 2px;
|
2011-09-22 21:10:21 +02:00
|
|
|
}
|
2012-05-03 00:29:15 +02:00
|
|
|
button.et2_button_text:hover, input[type=button]:hover {
|
2011-08-13 18:51:35 +02:00
|
|
|
color: #050505;
|
|
|
|
border: 1px solid gray;
|
|
|
|
background-color: #D0D0EE;
|
|
|
|
}
|
2012-05-03 00:29:15 +02:00
|
|
|
button.et2_button_text:active, input[type=button]:active {
|
2012-03-20 16:26:34 +01:00
|
|
|
background-image: url(images/gradient02.png);
|
2011-08-13 18:51:35 +02:00
|
|
|
background-color: #D0D0E0;
|
|
|
|
}
|
2012-05-03 00:29:15 +02:00
|
|
|
button.et2_button_text:focus, input[type=button]:focus {
|
2011-08-13 18:51:35 +02:00
|
|
|
border: 1px solid #2c3d6f;
|
|
|
|
color: #202d52;
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2012-05-03 00:29:15 +02:00
|
|
|
/**
|
|
|
|
* Color picker widget
|
|
|
|
*/
|
|
|
|
.et2_color {
|
|
|
|
padding: .5ex;
|
|
|
|
height: 2ex;
|
|
|
|
width: 2ex;
|
|
|
|
border: 1px solid silver;
|
|
|
|
}
|
|
|
|
|
2012-03-20 16:26:34 +01:00
|
|
|
/**
|
|
|
|
* Text box
|
|
|
|
*/
|
2011-08-13 18:51:35 +02:00
|
|
|
.et2_textbox {
|
|
|
|
resize: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.et2_bold {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.et2_italic {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
2012-03-15 23:57:55 +01:00
|
|
|
/**
|
|
|
|
* Multi-select widget
|
|
|
|
*/
|
|
|
|
.et2_selectbox .ui-widget-header {
|
|
|
|
padding: 2px 6px 0px 6px;
|
|
|
|
}
|
|
|
|
.et2_selectbox .ui-widget-header ul {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.et2_selectbox .ui-widget-header li {
|
|
|
|
float: left;
|
|
|
|
padding: 2px;
|
|
|
|
padding-top: 0px
|
|
|
|
}
|
|
|
|
.et2_selectbox .ui-widget-header li span.ui-icon {
|
|
|
|
float: left;
|
|
|
|
margin-top: -2px;
|
|
|
|
}
|
|
|
|
.et2_selectbox .ui-multiselect-checkboxes {
|
|
|
|
overflow-y: scroll;
|
|
|
|
position: relative;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.et2_selectbox .ui-multiselect-checkboxes li {
|
|
|
|
margin: 0px;
|
|
|
|
clear: both;
|
|
|
|
padding-left: 26px;
|
|
|
|
padding-right: 3px;
|
|
|
|
text-decoration: none;
|
|
|
|
list-style-image: none;
|
|
|
|
list-style-type: none;
|
|
|
|
text-indent: -26px;
|
|
|
|
}
|
|
|
|
.et2_selectbox .ui-multiselect-checkboxes label {
|
|
|
|
display: block;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
}
|
|
|
|
.et2_selectbox input[type="checkbox"] {
|
|
|
|
margin: 3px;
|
|
|
|
}
|
|
|
|
.et2_selectbox .ui-multiselect-checkboxes img {
|
|
|
|
float: right;
|
|
|
|
height: 1.8em;
|
|
|
|
}
|
|
|
|
|
2012-04-17 01:08:28 +02:00
|
|
|
/* Read-only multi-select */
|
|
|
|
ul.et2_selectbox {
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
.et2_selectbox li {
|
|
|
|
text-decoration: none;
|
|
|
|
list-style-image: none;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
2012-03-15 23:57:55 +01:00
|
|
|
/**
|
|
|
|
* Date / Time widgets
|
|
|
|
*/
|
2011-08-31 21:58:38 +02:00
|
|
|
span.et2_date {
|
|
|
|
min-width: 130px;
|
|
|
|
}
|
|
|
|
span.et2_date input.et2_date {
|
2012-03-13 19:03:53 +01:00
|
|
|
min-width: 16.5ex;
|
2012-03-09 19:46:29 +01:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: top right;
|
|
|
|
background-size: contain;
|
2011-08-31 21:58:38 +02:00
|
|
|
}
|
2012-03-13 19:03:53 +01:00
|
|
|
span.et2_date input[type=time].et2_date {
|
|
|
|
min-width: 6ex;
|
|
|
|
}
|
2011-08-31 21:58:38 +02:00
|
|
|
span.et2_date span {
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
|
|
|
color: #101010;
|
|
|
|
cursor: pointer;
|
|
|
|
padding-top: 3px;
|
|
|
|
padding-left: 22px;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
font-size: 9pt;
|
|
|
|
}
|
|
|
|
|
2012-05-24 17:45:29 +02:00
|
|
|
/**
|
|
|
|
* Diff widget
|
|
|
|
*/
|
|
|
|
.diff thead,.author {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.diff .ui-icon {
|
|
|
|
margin-top: -16px;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2011-09-08 01:32:24 +02:00
|
|
|
/** Display a loading icon **/
|
|
|
|
.loading {
|
2012-03-23 15:51:33 +01:00
|
|
|
background-position: center;
|
2011-09-08 01:32:24 +02:00
|
|
|
background-repeat: no-repeat;
|
2012-03-20 16:26:34 +01:00
|
|
|
background-image: url('images/ajax-loader.gif');
|
2011-09-08 01:32:24 +02:00
|
|
|
}
|
|
|
|
|
2011-09-02 00:07:30 +02:00
|
|
|
/**
|
|
|
|
* File upload
|
|
|
|
*/
|
|
|
|
.et2_file .progress {
|
2011-09-06 21:55:52 +02:00
|
|
|
width: 300px;
|
2011-09-02 00:07:30 +02:00
|
|
|
max-height: 6em;
|
|
|
|
overflow: auto;
|
|
|
|
margin-left: 20px;
|
2011-09-06 21:55:52 +02:00
|
|
|
}
|
2011-09-02 00:07:30 +02:00
|
|
|
|
2011-09-06 21:55:52 +02:00
|
|
|
.et2_file .progress span.progressBar {
|
|
|
|
height: 5px;
|
|
|
|
width: 150px;
|
|
|
|
max-width: 150px;
|
|
|
|
display: inline;
|
|
|
|
}
|
2011-09-02 00:07:30 +02:00
|
|
|
|
2011-09-06 21:55:52 +02:00
|
|
|
/* Remove icon displayed when hovering */
|
|
|
|
.et2_file .progress li div.remove {
|
|
|
|
display: none;
|
2011-09-09 02:05:46 +02:00
|
|
|
cursor: pointer;
|
2012-04-05 22:08:57 +02:00
|
|
|
margin: 0px;
|
2011-09-06 21:55:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.et2_file .progress li:hover div.remove {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
float: right;
|
|
|
|
display: block;
|
2012-03-20 16:26:34 +01:00
|
|
|
background-image: url("images/close.png");
|
2011-09-06 21:55:52 +02:00
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
.et2_file .progress p {
|
|
|
|
background-color: green;
|
|
|
|
height:5px;
|
|
|
|
margin: 0px;
|
2011-09-02 00:07:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.et2_file .progress li {
|
|
|
|
color: blue;
|
2011-09-06 21:55:52 +02:00
|
|
|
margin: .5ex;
|
2011-09-02 00:07:30 +02:00
|
|
|
}
|
2011-09-06 21:55:52 +02:00
|
|
|
/* Hide progress bar when completed */
|
|
|
|
.et2_file .progress li.success > span.progressBar {
|
|
|
|
display: none;
|
2011-09-02 00:07:30 +02:00
|
|
|
}
|
2011-09-08 01:32:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Autocomplete - used in link widget
|
|
|
|
* Restricting result size
|
|
|
|
*/
|
|
|
|
.ui-autocomplete {
|
|
|
|
max-height: 20ex;
|
|
|
|
overflow-y: auto;
|
|
|
|
/* prevent horizontal scrollbar */
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
|
2011-09-09 02:05:46 +02:00
|
|
|
/**
|
|
|
|
* Link wiget(s)
|
|
|
|
*/
|
|
|
|
|
2012-04-11 17:43:33 +02:00
|
|
|
/* Link entry - x button*/
|
|
|
|
div.et2_link_entry {
|
2012-04-24 23:27:48 +02:00
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
div.et2_link_entry:after {
|
|
|
|
display: inline-block;
|
|
|
|
content: ".";
|
|
|
|
height: 0;
|
|
|
|
visibility: hidden;
|
|
|
|
margin: -20px;
|
2012-04-11 17:43:33 +02:00
|
|
|
}
|
2012-04-24 23:27:48 +02:00
|
|
|
/* Special layout for inside nm grid */
|
|
|
|
.et2_nextmatch .et2_link_entry:after {
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
.et2_link_entry.no_app input.ui-autocomplete-input {
|
|
|
|
width: 100%;
|
2012-04-11 17:43:33 +02:00
|
|
|
}
|
|
|
|
.et2_link_entry .ui-icon-close {
|
2012-04-24 23:27:48 +02:00
|
|
|
display: inline-block;
|
2012-04-11 17:43:33 +02:00
|
|
|
background-color: inherit;
|
|
|
|
border: none;
|
|
|
|
position: relative;
|
2012-04-24 23:27:48 +02:00
|
|
|
top: 3px;
|
|
|
|
left: -18px;
|
2012-04-11 17:43:33 +02:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2011-09-09 02:05:46 +02:00
|
|
|
/* Link to */
|
|
|
|
.et2_link_to {
|
|
|
|
width: 350px;
|
|
|
|
overflow-x: show;
|
|
|
|
}
|
|
|
|
.et2_link_to button {
|
|
|
|
display: inline;
|
|
|
|
float: right;
|
|
|
|
height: 5ex;
|
|
|
|
}
|
|
|
|
.et2_link_to span.status {
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 3px center;
|
2012-03-20 16:26:34 +01:00
|
|
|
background-image:url(images/tick.png);
|
2011-09-09 02:05:46 +02:00
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
display: block;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.et2_link_to .progress {
|
|
|
|
max-height: 12em;
|
|
|
|
}
|
|
|
|
.et2_link_to .progress > .success input {
|
|
|
|
width: 100%;
|
|
|
|
margin-right: -20px; /* Leave room for remove icon */
|
|
|
|
}
|
|
|
|
.et2_link_to .progress li.success span.ui-icon-comment {
|
|
|
|
display: none;
|
|
|
|
float: right;
|
|
|
|
cursor: pointer;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
.et2_link_to .progress li:hover.success span.ui-icon-comment {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2011-09-13 01:43:39 +02:00
|
|
|
.et2_link {
|
|
|
|
cursor: pointer;
|
2012-03-20 16:51:39 +01:00
|
|
|
color: #003075;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
.et2_link:hover {
|
|
|
|
text-decoration: underline;
|
2011-09-13 01:43:39 +02:00
|
|
|
}
|
|
|
|
ul.et2_link_string {
|
|
|
|
list-style-type: none;
|
|
|
|
display: inline;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
.et2_link_string li {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
.et2_link_string li:not(:last-child):after {
|
|
|
|
content: ', ';
|
|
|
|
}
|
|
|
|
|
2012-03-05 22:40:44 +01:00
|
|
|
.et2_link_list tr {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2011-09-14 02:06:04 +02:00
|
|
|
.et2_link_list td.remark {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
.et2_link_list td.delete {
|
|
|
|
cursor: pointer;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
float: right;
|
|
|
|
display: none;
|
2012-03-20 16:26:34 +01:00
|
|
|
background-image: url("images/close.png");
|
2011-09-14 02:06:04 +02:00
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
.et2_link_list .icon img, .et2_link_list td.icon {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
.et2_link_list tr:hover td.delete {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2011-08-13 18:51:35 +02:00
|
|
|
.egw_tooltip
|
|
|
|
{
|
|
|
|
position: fixed;
|
|
|
|
border: 1px solid #897f51;
|
|
|
|
padding: 3px;
|
|
|
|
background-color: #FDF9DB;
|
|
|
|
max-width: 300px;
|
|
|
|
color: black;
|
|
|
|
}
|
2011-08-16 18:46:22 +02:00
|
|
|
|
2011-08-17 11:07:09 +02:00
|
|
|
/**
|
|
|
|
* Tabs widget
|
|
|
|
*/
|
|
|
|
|
|
|
|
.et2_tabflag {
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 5px;
|
|
|
|
padding: 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
border: 1px solid silver;
|
|
|
|
|
|
|
|
background-color: #E0E0E0;
|
2012-03-20 16:26:34 +01:00
|
|
|
background-image: url(images/gradient01.png);
|
2011-08-17 11:07:09 +02:00
|
|
|
background-position: center;
|
|
|
|
background-repeat: repeat-x;
|
|
|
|
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.et2_tabflag:hover {
|
|
|
|
color: #050505;
|
|
|
|
border: 1px solid gray;
|
|
|
|
background-color: #D0D0EE;
|
|
|
|
}
|
|
|
|
|
|
|
|
.et2_tabflag:active {
|
2012-03-20 16:26:34 +01:00
|
|
|
background-image: url(images/gradient02.png);
|
2011-08-17 11:07:09 +02:00
|
|
|
background-color: #D0D0E0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.et2_tabs {
|
|
|
|
border-width: 0px 1px 1px 1px;
|
|
|
|
border-style: solid;
|
|
|
|
border-color: silver;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.et2_tabflag.active {
|
|
|
|
border-bottom: 1px solid white;
|
|
|
|
background-color: white;
|
|
|
|
background-image: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.et2_tabheader {
|
2012-03-20 16:26:34 +01:00
|
|
|
background-image: url(images/tab_header_bg.png);
|
2011-08-17 11:07:09 +02:00
|
|
|
background-position: bottom;
|
|
|
|
background-repeat: repeat-x;
|
|
|
|
}
|
2011-08-16 18:46:22 +02:00
|
|
|
|
2012-03-26 21:46:51 +02:00
|
|
|
/**
|
|
|
|
* VFS widget(s)
|
|
|
|
*/
|
2012-03-27 01:30:27 +02:00
|
|
|
ul.et2_vfs {
|
|
|
|
padding-left: 0px;
|
|
|
|
}
|
2012-03-26 21:46:51 +02:00
|
|
|
.et2_vfs li.vfsFilename {
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
.et2_vfs li.vfsFilename:not(:last-child):after {
|
|
|
|
padding: 0.25ex;
|
|
|
|
}
|
2011-08-16 18:46:22 +02:00
|
|
|
|
2011-08-17 23:36:08 +02:00
|
|
|
/**
|
|
|
|
* Validation
|
|
|
|
*/
|
|
|
|
input[required] {
|
|
|
|
background-color: #ffffd0;
|
|
|
|
}
|
|
|
|
input.invalid {
|
2011-08-23 16:59:49 +02:00
|
|
|
border: 1px solid #a6261d;
|
|
|
|
background-color: #faecec;
|
2011-08-17 23:36:08 +02:00
|
|
|
}
|
|
|
|
.error {
|
|
|
|
-moz-border-radius: 0 4px 4px 0;
|
|
|
|
-moz-box-shadow: 0 0 6px #DDDDDD;
|
|
|
|
background-color: #FFFE36;
|
|
|
|
border: 1px solid #E1E16D;
|
|
|
|
color: #000000;
|
|
|
|
display: none;
|
|
|
|
font-size: 11px;
|
|
|
|
height: 15px;
|
|
|
|
padding: 4px 10px;
|
|
|
|
}
|
|
|
|
.error p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2011-08-21 15:24:20 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* hrule widget
|
|
|
|
*/
|
|
|
|
|
|
|
|
hr {
|
|
|
|
border-style: none;
|
|
|
|
border-top: 1px solid silver;
|
|
|
|
height: 1px;
|
|
|
|
margin: 10px 0px 10px 0px;
|
|
|
|
}
|
|
|
|
|
2011-08-22 17:58:47 +02:00
|
|
|
/**
|
|
|
|
* grid widget
|
|
|
|
*/
|
|
|
|
|
|
|
|
table.et2_grid {
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
|
2011-08-22 18:37:04 +02:00
|
|
|
.et2_grid td {
|
|
|
|
/* border: 1px dashed silver;*/
|
|
|
|
}
|
|
|
|
|
2011-08-23 11:45:45 +02:00
|
|
|
/**
|
|
|
|
* Create some spacing for widgets inside labels
|
|
|
|
*/
|
|
|
|
label input, label span, label div, label select, label textarea {
|
|
|
|
margin-left: 1ex;
|
|
|
|
margin-right: 1ex;
|
|
|
|
}
|
|
|
|
|
2011-08-23 16:59:49 +02:00
|
|
|
/**
|
|
|
|
* Message styles
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Style used for a generic message (such as success messages or validation errors) */
|
|
|
|
.message {
|
|
|
|
display: block;
|
|
|
|
border: 1px solid gray;
|
|
|
|
padding: 3px 3px 3px 22px;
|
|
|
|
margin: 5px 0px 5px 0px;
|
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
-moz-border-radius: 3px;
|
|
|
|
border-radius: 3px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 3px center;
|
|
|
|
clear: left;
|
|
|
|
max-width: 500px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message.floating {
|
2012-04-09 23:40:45 +02:00
|
|
|
display: inline-block;
|
2011-08-23 16:59:49 +02:00
|
|
|
margin: 0px 5px 0px 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.message.validation_error {
|
|
|
|
color: #a93030;
|
|
|
|
font-style: italic;
|
|
|
|
background-color: #f3d4d0;
|
|
|
|
border-color: #a93030;
|
2012-03-20 16:26:34 +01:00
|
|
|
background-image:url(images/error.png);
|
2011-08-23 16:59:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.message.success {
|
|
|
|
font-style: normal;
|
|
|
|
background-color: #e5f3d0;
|
|
|
|
color: #98a930;
|
|
|
|
border-color: #9ea930;
|
2012-03-20 16:26:34 +01:00
|
|
|
background-image:url(images/tick.png);
|
2011-08-23 16:59:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.message.hint {
|
|
|
|
font-style: normal;
|
|
|
|
background-color: #d9e2ed;
|
|
|
|
border-color: #56729a;
|
|
|
|
color: #56729a;
|
2012-03-20 16:26:34 +01:00
|
|
|
background-image:url(images/hint.png);
|
2011-08-23 16:59:49 +02:00
|
|
|
}
|
|
|
|
|
2011-08-25 15:35:53 +02:00
|
|
|
/**
|
|
|
|
* Nextmatch widget
|
|
|
|
*/
|
|
|
|
|
|
|
|
.et2_nextmatch {
|
2011-09-09 13:44:44 +02:00
|
|
|
/* background-color: silver;*/
|
2011-08-25 15:35:53 +02:00
|
|
|
}
|
|
|
|
|
2012-03-14 23:57:54 +01:00
|
|
|
/* Left & right headers*/
|
|
|
|
.et2_nextmatch > div > .header {
|
|
|
|
margin-top: -20px;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2011-10-12 21:06:52 +02:00
|
|
|
.nextmatch_header .header_count {
|
|
|
|
padding: 0px 20px;
|
|
|
|
margin: 0px 20px;
|
2012-03-14 23:57:54 +01:00
|
|
|
margin-top: 5px;
|
2011-10-12 21:06:52 +02:00
|
|
|
border: 1px solid #E0E0E0;
|
|
|
|
float:right;
|
|
|
|
font-size: 150%;
|
2011-09-27 02:16:00 +02:00
|
|
|
text-align: center
|
|
|
|
}
|
2011-10-12 21:06:52 +02:00
|
|
|
.nextmatch_header > .filters {
|
2012-03-14 23:57:54 +01:00
|
|
|
padding-left: 5px;
|
2012-03-15 23:57:55 +01:00
|
|
|
}
|
2012-04-05 22:08:57 +02:00
|
|
|
.nextmatch_header > .filters select {
|
|
|
|
margin-right: 2ex;
|
|
|
|
}
|
2011-10-12 21:06:52 +02:00
|
|
|
.nextmatch_header .et2_button_icon {
|
|
|
|
vertical-align: middle;
|
2011-09-27 02:16:00 +02:00
|
|
|
}
|
2012-04-05 23:32:57 +02:00
|
|
|
.nextmatch_header > .filters .et2_button_icon {
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
2011-08-25 15:35:53 +02:00
|
|
|
.nextmatch_sortheader {
|
|
|
|
color: #003075;
|
|
|
|
cursor: pointer;
|
2011-08-26 11:58:25 +02:00
|
|
|
padding-right: 10px;
|
2011-08-25 15:35:53 +02:00
|
|
|
margin-right: 10px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: right center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nextmatch_sortheader:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nextmatch_sortheader.asc {
|
|
|
|
font-weight: bold;
|
2012-03-20 16:26:34 +01:00
|
|
|
background-image: url(images/up.png);
|
2011-08-25 15:35:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.nextmatch_sortheader.desc {
|
|
|
|
font-weight: bold;
|
2012-03-20 16:26:34 +01:00
|
|
|
background-image: url(images/down.png);
|
2011-08-25 15:35:53 +02:00
|
|
|
}
|
|
|
|
|
2011-09-30 00:57:42 +02:00
|
|
|
.nextmatch_resize_helper {
|
|
|
|
border-right: 1px dotted gray;
|
|
|
|
min-height: 100%;
|
|
|
|
background-color: gray;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
2011-09-08 22:44:53 +02:00
|
|
|
.et2_clickable {
|
|
|
|
cursor: pointer;
|
2011-09-09 10:29:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
div.et2_progress {
|
2012-03-13 19:03:53 +01:00
|
|
|
display: inline-block;
|
2011-09-09 10:29:31 +02:00
|
|
|
border: 1px solid black;
|
|
|
|
background-color: white;
|
|
|
|
width: 30px;
|
|
|
|
padding: 1px;
|
2012-03-13 19:03:53 +01:00
|
|
|
margin: 2px;
|
2011-09-09 10:29:31 +02:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
div.et2_progress > div {
|
|
|
|
background-color: #D00000;
|
|
|
|
height: 5px;
|
2011-09-09 13:44:44 +02:00
|
|
|
}
|
2011-10-03 15:42:56 +02:00
|
|
|
|
|
|
|
.egwResizeOverlay {
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
z-index: 99999;
|
|
|
|
cursor: ew-resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
.egwResizeHelper {
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
z-index: 99998;
|
|
|
|
opacity: 0.5;
|
|
|
|
background-color: #829cbc;
|
|
|
|
cursor: ew-resize;
|
|
|
|
}
|
|
|
|
|
2012-03-30 16:20:27 +02:00
|
|
|
/**
|
|
|
|
* Indent grid sublevels
|
|
|
|
*/
|
|
|
|
|
|
|
|
.et2_nextmatch .subentry.level_1 div.et2_vbox {
|
|
|
|
margin-left: 2.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.et2_nextmatch .subentry.level_2 div.et2_vbox {
|
|
|
|
margin-left: 5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.et2_nextmatch .subentry.level_3 div.et2_vbox {
|
|
|
|
margin-left: 7.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|