2011-08-13 18:51:35 +02:00
|
|
|
/**
|
2013-11-12 18:24:19 +01:00
|
|
|
* Styles for etemplate2 widgets
|
2011-08-13 18:51:35 +02:00
|
|
|
*
|
2013-11-12 18:24:19 +01:00
|
|
|
* @version: $Id$
|
2011-08-13 18:51:35 +02:00
|
|
|
*/
|
2014-02-06 18:22:46 +01:00
|
|
|
/**
|
|
|
|
* Magic suggest / tag list widget
|
|
|
|
*/
|
2015-01-20 11:33:22 +01:00
|
|
|
/* These imports processed by framework */
|
|
|
|
/*@import url("../../../phpgwapi/js/jquery/magicsuggest/magicsuggest.css");*/
|
|
|
|
/*@import url("../../../phpgwapi/js/jquery/blueimp/css/blueimp-gallery.min.css");*/
|
2014-02-06 18:22:46 +01:00
|
|
|
|
2014-04-16 21:47:29 +02:00
|
|
|
|
2012-03-20 16:26:34 +01:00
|
|
|
/**
|
|
|
|
* Top level
|
|
|
|
*/
|
2013-04-12 18:29:40 +02:00
|
|
|
.et2_container {
|
2013-11-25 04:19:58 +01:00
|
|
|
/*margin: 10px;
|
2011-08-22 18:37:04 +02:00
|
|
|
border: 1px solid gray;*/
|
2013-11-25 04:19:58 +01:00
|
|
|
padding: 0px;
|
|
|
|
background-color: white;
|
2013-12-04 21:53:10 +01:00
|
|
|
height: 99%;
|
2013-04-12 18:29:40 +02:00
|
|
|
}
|
|
|
|
.et2_container > div:not([class]) {
|
2013-11-25 04:19:58 +01:00
|
|
|
height: 100%;
|
2011-08-13 18:51:35 +02:00
|
|
|
}
|
2012-07-11 21:01:06 +02:00
|
|
|
/**
|
|
|
|
* Basic rules
|
|
|
|
*/
|
2013-11-25 04:19:58 +01:00
|
|
|
input,
|
|
|
|
button,
|
|
|
|
select {
|
|
|
|
margin: 1px;
|
|
|
|
padding: 0px;
|
2012-07-11 21:01:06 +02:00
|
|
|
}
|
2011-08-16 18:46:22 +02:00
|
|
|
/**
|
|
|
|
* VBox widget
|
|
|
|
*/
|
2013-11-25 04:19:58 +01:00
|
|
|
div.et2_vbox > * {
|
|
|
|
display: block;
|
2011-08-16 18:46:22 +02:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* HBox widget
|
|
|
|
*/
|
|
|
|
div.et2_hbox div.et2_hbox {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: inline;
|
2011-08-16 18:46:22 +02:00
|
|
|
}
|
2012-04-09 21:46:33 +02:00
|
|
|
div.et2_hbox {
|
2013-11-25 04:19:58 +01:00
|
|
|
white-space: nowrap;
|
2012-04-09 21:46:33 +02:00
|
|
|
}
|
2013-11-25 04:19:58 +01:00
|
|
|
div.et2_hbox > * {
|
|
|
|
text-align: left;
|
2014-01-14 15:01:30 +01:00
|
|
|
white-space: normal;
|
2016-03-31 11:21:55 +02:00
|
|
|
margin-right: 5px;
|
2015-03-20 21:30:33 +01:00
|
|
|
display: inline-block;
|
2011-08-16 18:46:22 +02:00
|
|
|
}
|
2014-07-01 17:56:09 +02:00
|
|
|
div.et2_hbox > *:empty {
|
2016-03-31 11:21:55 +02:00
|
|
|
margin-right: 0;
|
2014-07-01 17:56:09 +02:00
|
|
|
}
|
2011-08-16 18:46:22 +02:00
|
|
|
div.et2_hbox_left {
|
2013-11-25 04:19:58 +01:00
|
|
|
float: left;
|
2011-08-16 18:46:22 +02:00
|
|
|
}
|
|
|
|
div.et2_hbox_al_center {
|
2013-11-25 04:19:58 +01:00
|
|
|
text-align: center;
|
2011-08-16 18:46:22 +02:00
|
|
|
}
|
|
|
|
div.et2_hbox_al_right {
|
2013-11-25 04:19:58 +01:00
|
|
|
text-align: right;
|
2011-08-16 18:46:22 +02:00
|
|
|
}
|
|
|
|
div.et2_hbox_right {
|
2013-11-25 04:19:58 +01:00
|
|
|
float: right;
|
|
|
|
clear: right;
|
2011-08-16 18:46:22 +02:00
|
|
|
}
|
2013-11-25 04:19:58 +01:00
|
|
|
div.et2_hbox > div {
|
|
|
|
display: inline-block;
|
2012-04-09 21:46:33 +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 {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: inline-block;
|
|
|
|
border: 1px solid cornflowerblue;
|
|
|
|
background-color: #FCFCFC;
|
|
|
|
padding: 3px;
|
|
|
|
margin: 1px;
|
2011-08-13 18:51:35 +02:00
|
|
|
}
|
|
|
|
.et2_placeholder .et2_caption {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: block;
|
|
|
|
font-size: 8pt;
|
|
|
|
margin: 0 0 5px 0;
|
|
|
|
font-weight: bold;
|
|
|
|
color: #2E2E2E;
|
|
|
|
cursor: pointer;
|
|
|
|
text-shadow: rgba(255, 255, 255, 0.5) 0 1px 0;
|
|
|
|
}
|
2011-08-13 18:51:35 +02:00
|
|
|
.et2_placeholder .et2_attr {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: block;
|
|
|
|
font-size: 8pt;
|
|
|
|
color: #3030A0;
|
|
|
|
margin: 2px 0 2px 0;
|
2011-08-13 18:51:35 +02:00
|
|
|
}
|
2013-02-22 01:25:41 +01:00
|
|
|
/**
|
|
|
|
* Splitter widget - split pane
|
|
|
|
*/
|
|
|
|
.et2_split {
|
2013-11-25 04:19:58 +01:00
|
|
|
width: 100%;
|
|
|
|
min-width: 100px;
|
|
|
|
min-height: 100px;
|
|
|
|
}
|
|
|
|
.splitter-bar-vertical {
|
|
|
|
cursor: ew-resize;
|
|
|
|
width: 5px;
|
|
|
|
}
|
|
|
|
.splitter-bar-horizontal {
|
|
|
|
cursor: ns-resize;
|
|
|
|
height: 5px;
|
2013-02-22 01:25:41 +01:00
|
|
|
}
|
|
|
|
/* Hide iframes so moving works */
|
2013-11-25 04:19:58 +01:00
|
|
|
.splitter-iframe-hide {
|
|
|
|
display: none;
|
|
|
|
}
|
2013-02-22 01:25:41 +01:00
|
|
|
.et2_split div.splitter-bar-vertical div.ui-icon {
|
2013-11-25 04:19:58 +01:00
|
|
|
position: absolute;
|
|
|
|
margin-left: -5px;
|
|
|
|
top: 45%;
|
2013-02-22 01:25:41 +01:00
|
|
|
}
|
|
|
|
.et2_split div.splitter-bar-horizontal div.ui-icon {
|
2013-11-25 04:19:58 +01:00
|
|
|
position: absolute;
|
|
|
|
margin-top: -6px;
|
|
|
|
left: 47%;
|
2013-02-22 01:25:41 +01:00
|
|
|
}
|
2013-05-27 18:58:24 +02:00
|
|
|
/* Make sure there's no overflow, or hidden bits still appear */
|
|
|
|
* > .et2_split {
|
2013-11-25 04:19:58 +01:00
|
|
|
overflow: hidden;
|
2013-05-27 18:58:24 +02:00
|
|
|
}
|
2015-02-11 00:03:35 +01:00
|
|
|
/* These need to be applied to tame the sizing before printing */
|
|
|
|
.et2_split.print, .et2_split.print > .splitter-pane {
|
|
|
|
height: auto !important;
|
|
|
|
width: auto !important;
|
|
|
|
}
|
|
|
|
.et2_split.print > * {
|
|
|
|
position: relative !important;
|
|
|
|
}
|
2015-03-20 21:30:33 +01:00
|
|
|
|
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 {
|
2013-11-25 04:19:58 +01:00
|
|
|
color: #101050;
|
2015-02-10 15:21:01 +01:00
|
|
|
white-space: pre-wrap;
|
2011-08-13 18:51:35 +02:00
|
|
|
}
|
2016-03-31 11:21:55 +02:00
|
|
|
label.et2_label > * {
|
|
|
|
margin-left: 5px !important;
|
|
|
|
}
|
2016-03-31 15:05:03 +02:00
|
|
|
label.et2_label.et2_label_empty > * {
|
2016-03-31 11:21:55 +02:00
|
|
|
margin-left: 0 !important;
|
|
|
|
}
|
2016-03-31 16:47:49 +02:00
|
|
|
/*do not pre-wrap label as it would cause empty space*/
|
|
|
|
.et2_vbox > .et2_label.et2_label_empty {
|
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
|
2013-11-25 04:19:58 +01:00
|
|
|
#msg,
|
|
|
|
.message {
|
|
|
|
color: red;
|
|
|
|
font-style: italic;
|
2013-04-11 12:34:13 +02:00
|
|
|
}
|
2012-07-25 01:07:33 +02:00
|
|
|
input.et2_url {
|
2013-11-25 04:19:58 +01:00
|
|
|
margin-right: 6px;
|
|
|
|
padding-right: 8px;
|
2012-07-25 01:07:33 +02:00
|
|
|
}
|
2011-08-26 00:42:07 +02:00
|
|
|
a.et2_url {
|
2013-11-25 04:19:58 +01:00
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: -4px;
|
|
|
|
padding: 2px;
|
|
|
|
padding-left: 16px;
|
|
|
|
margin-left: -10px;
|
|
|
|
}
|
2011-08-26 00:42:07 +02:00
|
|
|
a.et2_url.email {
|
2013-11-25 04:19:58 +01:00
|
|
|
background-image: url(images/email.png);
|
2011-08-26 00:42:07 +02:00
|
|
|
}
|
|
|
|
a.et2_url.phone {
|
2013-11-25 04:19:58 +01:00
|
|
|
background-image: url(images/phone.png);
|
2011-08-26 00:42:07 +02:00
|
|
|
}
|
|
|
|
a.et2_url.url {
|
2013-11-25 04:19:58 +01:00
|
|
|
background-image: url(images/url.png);
|
2011-08-26 00:42:07 +02:00
|
|
|
}
|
2014-09-02 10:39:57 +02:00
|
|
|
.et2_url_email_contactPlus >img {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
2014-08-29 16:56:14 +02:00
|
|
|
.et2_email_popup {
|
|
|
|
border:0 !important;
|
|
|
|
padding: 0 !important;
|
|
|
|
box-shadow: none !important;
|
|
|
|
background: transparent !important;
|
|
|
|
}
|
2016-03-18 17:44:51 +01:00
|
|
|
.et2_email > span.email {
|
|
|
|
display: none;
|
|
|
|
}
|
2012-03-20 16:26:34 +01:00
|
|
|
/**
|
|
|
|
* Button widget - text only, and icon
|
|
|
|
*/
|
2012-03-08 18:10:26 +01:00
|
|
|
.et2_button {
|
2016-02-25 14:23:22 +01:00
|
|
|
text-align: center;
|
|
|
|
font-size: 9pt;
|
|
|
|
text-shadow: 1px 1px #E0E0E0;
|
|
|
|
white-space: nowrap;
|
2013-11-25 04:19:58 +01:00
|
|
|
}
|
|
|
|
.et2_button_text,
|
|
|
|
input[type=button] {
|
2016-02-25 14:23:22 +01:00
|
|
|
background-color: #E0E0E0;
|
|
|
|
background-image: url(images/gradient01.png);
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: repeat-x;
|
|
|
|
margin: 5px;
|
2016-03-31 11:21:55 +02:00
|
|
|
margin-left: 0;
|
2016-02-25 14:23:22 +01:00
|
|
|
padding: 3px;
|
|
|
|
border: 1px solid silver;
|
|
|
|
color: #101010;
|
2013-11-12 18:24:19 +01:00
|
|
|
}
|
2012-03-08 18:10:26 +01:00
|
|
|
.et2_button_icon {
|
2016-02-25 14:23:22 +01:00
|
|
|
border: none;
|
|
|
|
background-color: transparent;
|
|
|
|
padding: 0px;
|
2013-11-25 04:19:58 +01:00
|
|
|
}
|
|
|
|
button.et2_button_text:hover,
|
2014-03-21 17:27:09 +01:00
|
|
|
.et2_file_spanHover,
|
2014-12-18 10:37:19 +01:00
|
|
|
span.et2_button_text:hover,
|
2013-11-25 04:19:58 +01:00
|
|
|
input[type=button]:hover {
|
2016-02-25 14:23:22 +01:00
|
|
|
color: #050505;
|
|
|
|
border: 1px solid gray;
|
|
|
|
background-color: #D0D0EE;
|
2013-11-25 04:19:58 +01:00
|
|
|
}
|
|
|
|
button.et2_button_text:active,
|
2014-12-18 10:37:19 +01:00
|
|
|
span.et2_button_text:active,
|
2013-11-25 04:19:58 +01:00
|
|
|
input[type=button]:active {
|
2016-02-25 14:23:22 +01:00
|
|
|
background-image: url(images/gradient02.png);
|
|
|
|
background-color: #D0D0E0;
|
2013-11-25 04:19:58 +01:00
|
|
|
}
|
|
|
|
button.et2_button_text:focus,
|
2014-12-18 10:37:19 +01:00
|
|
|
span.et2_button_text:focus,
|
2014-03-21 17:27:09 +01:00
|
|
|
.et2_file_spanActive,
|
2013-11-25 04:19:58 +01:00
|
|
|
input[type=button]:focus {
|
2016-02-25 14:23:22 +01:00
|
|
|
border: 1px solid #2c3d6f;
|
|
|
|
color: #202d52;
|
|
|
|
outline: none;
|
2013-11-25 04:19:58 +01:00
|
|
|
}
|
2014-01-09 13:26:34 +01:00
|
|
|
button.et2_button_with_image {
|
2016-02-25 14:23:22 +01:00
|
|
|
padding-left: 20px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 4px center;
|
|
|
|
background-size: 16px;
|
|
|
|
height: 24px;
|
|
|
|
}
|
2014-03-04 10:30:39 +01:00
|
|
|
/* et2_box_widget ###*/
|
|
|
|
button[id="cancel"],
|
|
|
|
button#cancel {
|
|
|
|
padding-left: 6px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: left;
|
|
|
|
}
|
|
|
|
.ui-dialog-buttonset button {
|
2015-12-23 19:37:23 +01:00
|
|
|
padding-left: 6px;
|
|
|
|
background-position: left;
|
2014-03-04 10:30:39 +01:00
|
|
|
background-repeat: no-repeat !important;
|
|
|
|
}
|
2013-02-27 19:13:54 +01:00
|
|
|
/**
|
|
|
|
* Drop down button
|
|
|
|
*/
|
|
|
|
.et2_dropdown button {
|
2013-11-25 04:19:58 +01:00
|
|
|
height: 3.0ex;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-right: -2px;
|
|
|
|
padding: 0px 1ex;
|
2013-02-27 19:13:54 +01:00
|
|
|
}
|
|
|
|
.et2_dropdown button > div {
|
2013-11-25 04:19:58 +01:00
|
|
|
vertical-align: middle;
|
2013-02-27 19:13:54 +01:00
|
|
|
}
|
|
|
|
.et2_dropdown button:last-child {
|
2013-11-25 04:19:58 +01:00
|
|
|
padding: 0px;
|
2013-02-27 19:13:54 +01:00
|
|
|
}
|
|
|
|
.et2_dropdown + ul.ui-menu {
|
2013-11-25 04:19:58 +01:00
|
|
|
position: absolute;
|
|
|
|
z-index: 2;
|
2013-02-27 19:13:54 +01:00
|
|
|
}
|
2012-05-03 00:29:15 +02:00
|
|
|
/**
|
|
|
|
* Color picker widget
|
|
|
|
*/
|
|
|
|
.et2_color {
|
2013-11-25 04:19:58 +01:00
|
|
|
padding: .5ex;
|
|
|
|
height: 2ex;
|
|
|
|
width: 2ex;
|
|
|
|
border: 1px solid silver;
|
2012-05-03 00:29:15 +02:00
|
|
|
}
|
2012-03-20 16:26:34 +01:00
|
|
|
/**
|
|
|
|
* Text box
|
|
|
|
*/
|
2011-08-13 18:51:35 +02:00
|
|
|
.et2_textbox {
|
2014-12-01 17:09:40 +01:00
|
|
|
height: auto;
|
2011-08-13 18:51:35 +02:00
|
|
|
}
|
2013-06-26 16:11:54 +02:00
|
|
|
.et2_textbox_ro {
|
2013-11-25 04:19:58 +01:00
|
|
|
white-space: pre-wrap;
|
2013-06-26 16:11:54 +02:00
|
|
|
}
|
2014-06-23 16:43:12 +02:00
|
|
|
/*Switch of FF red border validation*/
|
|
|
|
.et2_textbox:invalid{
|
2014-09-04 16:04:54 +02:00
|
|
|
box-shadow: none;
|
2014-06-23 16:43:12 +02:00
|
|
|
}
|
2011-08-13 18:51:35 +02:00
|
|
|
.et2_bold {
|
2013-11-25 04:19:58 +01:00
|
|
|
font-weight: bold;
|
2011-08-13 18:51:35 +02:00
|
|
|
}
|
|
|
|
.et2_italic {
|
2013-11-25 04:19:58 +01:00
|
|
|
font-style: italic;
|
2011-08-13 18:51:35 +02:00
|
|
|
}
|
2012-03-15 23:57:55 +01:00
|
|
|
/**
|
|
|
|
* Multi-select widget
|
|
|
|
*/
|
2015-10-28 16:55:57 +01:00
|
|
|
button.et2_selectbox_expand {
|
2014-02-24 19:19:41 +01:00
|
|
|
width: 16px;
|
2015-10-13 22:43:49 +02:00
|
|
|
display: inline-block;
|
2014-02-24 19:19:41 +01:00
|
|
|
}
|
2012-03-15 23:57:55 +01:00
|
|
|
.et2_selectbox .ui-widget-header {
|
2013-11-25 04:19:58 +01:00
|
|
|
padding: 0px 6px 0px 6px;
|
|
|
|
text-align: center;
|
2012-03-15 23:57:55 +01:00
|
|
|
}
|
|
|
|
.et2_selectbox .ui-widget-header ul {
|
2013-11-25 04:19:58 +01:00
|
|
|
float: left;
|
|
|
|
margin-left: -5px;
|
|
|
|
text-align: left;
|
2012-03-15 23:57:55 +01:00
|
|
|
}
|
|
|
|
.et2_selectbox .ui-widget-header li {
|
2013-11-25 04:19:58 +01:00
|
|
|
float: left;
|
|
|
|
padding-top: 0px;
|
2012-03-15 23:57:55 +01:00
|
|
|
}
|
2013-11-25 04:19:58 +01:00
|
|
|
.et2_selectbox .ui-widget-header li > span.ui-icon {
|
|
|
|
float: left;
|
|
|
|
margin-top: -2px;
|
2012-03-15 23:57:55 +01:00
|
|
|
}
|
2013-11-25 04:19:58 +01:00
|
|
|
.et2_selectbox .ui-widget-header li > div.et2_link_entry {
|
|
|
|
/* Shrink search box to same size as header */
|
|
|
|
margin-top: -2px;
|
|
|
|
margin-bottom: -2px;
|
|
|
|
margin-right: 1ex;
|
2013-06-06 00:45:19 +02:00
|
|
|
}
|
2013-11-25 04:19:58 +01:00
|
|
|
.et2_selectbox .ui-widget-header li > div.et2_link_entry input {
|
|
|
|
height: 14px;
|
2013-06-06 00:45:19 +02:00
|
|
|
}
|
2012-03-15 23:57:55 +01:00
|
|
|
.et2_selectbox .ui-multiselect-checkboxes {
|
2013-11-25 04:19:58 +01:00
|
|
|
overflow-y: scroll;
|
|
|
|
position: relative;
|
|
|
|
text-align: left;
|
2012-03-15 23:57:55 +01:00
|
|
|
}
|
2015-03-03 16:28:54 +01:00
|
|
|
.et2_selectbox .ui-multiselect-checkboxes label:hover{
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2012-03-15 23:57:55 +01:00
|
|
|
.et2_selectbox .ui-multiselect-checkboxes li {
|
2013-11-25 04:19:58 +01:00
|
|
|
margin: 0px;
|
|
|
|
clear: both;
|
|
|
|
padding-left: 26px;
|
|
|
|
padding-right: 3px;
|
|
|
|
text-decoration: none;
|
|
|
|
list-style-image: none;
|
|
|
|
list-style-type: none;
|
2015-03-03 16:28:54 +01:00
|
|
|
text-indent: -20px;
|
2012-03-15 23:57:55 +01:00
|
|
|
}
|
2012-05-30 00:47:21 +02:00
|
|
|
.et2_selectbox .ui-multiselect-checkboxes ul {
|
2013-11-25 04:19:58 +01:00
|
|
|
margin: 0px auto;
|
|
|
|
padding-left: 0px;
|
|
|
|
clear: both;
|
|
|
|
text-decoration: none;
|
|
|
|
list-style-image: none;
|
|
|
|
list-style-type: none;
|
2012-05-30 00:47:21 +02:00
|
|
|
}
|
2013-11-25 04:19:58 +01:00
|
|
|
.et2_selectbox .ui-multiselect-checkboxes ul > label {
|
|
|
|
border-bottom: 1px solid black;
|
2012-05-30 00:47:21 +02:00
|
|
|
}
|
2012-03-15 23:57:55 +01:00
|
|
|
.et2_selectbox .ui-multiselect-checkboxes label {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: block;
|
|
|
|
border: 1px solid transparent;
|
2012-03-15 23:57:55 +01:00
|
|
|
}
|
|
|
|
.et2_selectbox input[type="checkbox"] {
|
2013-11-25 04:19:58 +01:00
|
|
|
margin: 3px;
|
2012-03-15 23:57:55 +01:00
|
|
|
}
|
2015-10-15 19:28:56 +02:00
|
|
|
.et2_selectbox .ui-multiselect-checkboxes img, .et2_selectbox .ui-multiselect-checkboxes div {
|
2013-11-25 04:19:58 +01:00
|
|
|
float: right;
|
|
|
|
height: 1.8em;
|
2015-10-15 19:28:56 +02:00
|
|
|
width: 1.8em;
|
|
|
|
background-size: contain;
|
|
|
|
background-repeat: no-repeat;
|
2012-03-15 23:57:55 +01:00
|
|
|
}
|
2013-06-06 00:45:19 +02:00
|
|
|
.et2_selectbox .ui-multiselect-checkboxes div.ui-icon-close {
|
2013-11-25 04:19:58 +01:00
|
|
|
visibility: hidden;
|
|
|
|
padding: 0px;
|
2013-06-06 00:45:19 +02:00
|
|
|
}
|
|
|
|
.et2_selectbox .ui-multiselect-checkboxes li:hover div.ui-icon-close {
|
2013-11-25 04:19:58 +01:00
|
|
|
visibility: visible;
|
2013-06-06 00:45:19 +02:00
|
|
|
}
|
2014-03-19 13:07:09 +01:00
|
|
|
/* Read-only (multi-)select */
|
2012-04-17 01:08:28 +02:00
|
|
|
ul.et2_selectbox {
|
2013-11-25 04:19:58 +01:00
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
2014-03-19 13:07:09 +01:00
|
|
|
display: inline-block;
|
|
|
|
}
|
2014-04-07 15:11:07 +02:00
|
|
|
/* padding between selectbox/textbox and it's label */
|
2016-03-31 11:21:55 +02:00
|
|
|
input, select {
|
2014-03-19 13:07:09 +01:00
|
|
|
padding-left: 5px;
|
2012-04-17 01:08:28 +02:00
|
|
|
}
|
|
|
|
.et2_selectbox li {
|
2013-11-25 04:19:58 +01:00
|
|
|
text-decoration: none;
|
|
|
|
list-style-image: none;
|
|
|
|
list-style-type: none;
|
2012-04-17 01:08:28 +02:00
|
|
|
}
|
2012-05-30 00:47:21 +02:00
|
|
|
/**
|
|
|
|
* Select account dialog
|
|
|
|
*/
|
2012-03-15 23:57:55 +01:00
|
|
|
/**
|
|
|
|
* Date / Time widgets
|
|
|
|
*/
|
2011-08-31 21:58:38 +02:00
|
|
|
span.et2_date {
|
2013-11-25 04:19:58 +01:00
|
|
|
min-width: 130px;
|
2011-08-31 21:58:38 +02:00
|
|
|
}
|
|
|
|
span.et2_date input.et2_date {
|
2013-11-25 04:19:58 +01:00
|
|
|
min-width: 16.5ex;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: top right;
|
|
|
|
background-size: contain;
|
2011-08-31 21:58:38 +02:00
|
|
|
}
|
2013-08-20 11:42:00 +02:00
|
|
|
span.et2_date input.et2_time {
|
2013-11-25 04:19:58 +01:00
|
|
|
min-width: 6ex;
|
2012-03-13 19:03:53 +01:00
|
|
|
}
|
2011-08-31 21:58:38 +02:00
|
|
|
span.et2_date span {
|
2013-11-25 04:19:58 +01:00
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
color: #101010;
|
|
|
|
cursor: pointer;
|
|
|
|
padding-top: 3px;
|
|
|
|
padding-left: 22px;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 9pt;
|
|
|
|
}
|
2014-03-12 14:13:18 +01:00
|
|
|
span.et2_date_duration input.et2_date_duration{
|
2015-01-09 16:01:36 +01:00
|
|
|
width: 5em;
|
2014-03-12 14:13:18 +01:00
|
|
|
}
|
2016-01-22 21:47:58 +01:00
|
|
|
/* customize calendar layout */
|
|
|
|
.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
|
|
|
|
margin-left: 2px;
|
|
|
|
margin-right: 4.6em;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
|
2016-01-26 23:05:56 +01:00
|
|
|
left: auto;
|
2016-01-22 21:47:58 +01:00
|
|
|
right: 4em;
|
|
|
|
}
|
|
|
|
.ui-datepicker .ui-datepicker-buttonpane button[data-handler="today"] {
|
|
|
|
position: absolute;
|
|
|
|
top: -2px;
|
|
|
|
right: 24px;
|
|
|
|
width: 23px;
|
|
|
|
height: 23px;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: white;
|
|
|
|
margin-left: 3px;
|
|
|
|
text-indent: 20px;
|
|
|
|
background-size: contain;
|
|
|
|
background-image: url(images/today.png);
|
|
|
|
}
|
|
|
|
|
2013-04-16 20:50:43 +02:00
|
|
|
/**
|
|
|
|
* Dialog widget
|
|
|
|
* It uses jQueryUI, so this is just our little bits - icon on left
|
|
|
|
*/
|
|
|
|
.ui-dialog-content .dialog_icon {
|
2013-11-25 04:19:58 +01:00
|
|
|
margin-right: 2ex;
|
|
|
|
vertical-align: middle;
|
2013-04-16 20:50:43 +02:00
|
|
|
}
|
2013-11-25 04:19:58 +01:00
|
|
|
.ui-dialog-content {
|
|
|
|
vertical-align: middle;
|
2013-04-16 20:50:43 +02:00
|
|
|
}
|
2014-05-27 14:11:09 +02:00
|
|
|
.ui-dialog-content > div {
|
|
|
|
white-space: pre-wrap;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2013-04-16 20:50:43 +02:00
|
|
|
/* These change button alignment, but it seems the standard is right-aligned for
|
|
|
|
action buttons, left aligned for "extra" controls
|
|
|
|
.ui-dialog .ui-dialog-buttonpane {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-buttonpane button {
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
*/
|
2014-01-18 14:16:27 +01:00
|
|
|
/**
|
|
|
|
* Custom field list
|
|
|
|
*/
|
|
|
|
.et2_customfield_list {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2014-12-02 23:37:15 +01:00
|
|
|
.et2_customfield_list input, .et2_customfield_list textarea {
|
2014-01-18 14:16:27 +01:00
|
|
|
max-width: 100ex;
|
|
|
|
}
|
2014-03-24 19:33:26 +01:00
|
|
|
/* Custom field list inside nextmatch rows gets an icon for each row */
|
|
|
|
.et2_nextmatch .egwGridView_grid .et2_customfield_list > tbody > tr {
|
|
|
|
background-image: url('images/hint.png');
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 1em;
|
|
|
|
}
|
|
|
|
.et2_nextmatch .egwGridView_grid .et2_customfield_list > tbody > tr > td:first-child {
|
|
|
|
padding-left: 1.2em;
|
|
|
|
}
|
2014-12-17 17:58:09 +01:00
|
|
|
/*stops a tags inside next match extends to their parents width,
|
|
|
|
which caused click on free space infront of a tag stops nm row selection*/
|
|
|
|
.et2_nextmatch .egwGridView_grid tr td div.et2_vbox a {
|
|
|
|
display: table-row;
|
|
|
|
}
|
2016-02-09 18:11:44 +01:00
|
|
|
|
2016-02-10 10:45:33 +01:00
|
|
|
/*Default cat color*/
|
|
|
|
tr.row_category {
|
|
|
|
border-left: 6px solid transparent;
|
2016-02-09 18:11:44 +01:00
|
|
|
}
|
2016-02-10 10:45:33 +01:00
|
|
|
|
2015-02-05 22:52:29 +01:00
|
|
|
/*
|
|
|
|
These are set via javascript before printing to help tame nextmatch's layout
|
|
|
|
for printing
|
|
|
|
*/
|
2015-01-27 17:26:59 +01:00
|
|
|
.et2_nextmatch.print .egwGridView_scrollarea {
|
2015-02-05 22:52:29 +01:00
|
|
|
width: auto !important;
|
2015-01-27 17:26:59 +01:00
|
|
|
}
|
|
|
|
.et2_nextmatch.print > div {
|
|
|
|
height: auto !important;
|
|
|
|
}
|
2015-02-05 22:52:29 +01:00
|
|
|
.et2_nextmatch.print {
|
|
|
|
/* This is fairly arbitrary, but makes it fit in Chrome and Firefox*/
|
|
|
|
max-width: 700pt !important;
|
|
|
|
}
|
2014-01-09 13:26:34 +01:00
|
|
|
/**
|
2012-05-24 17:45:29 +02:00
|
|
|
* Diff widget
|
|
|
|
*/
|
2013-11-25 04:19:58 +01:00
|
|
|
.diff thead,
|
|
|
|
.author {
|
|
|
|
display: none;
|
2012-05-24 17:45:29 +02:00
|
|
|
}
|
|
|
|
.diff .ui-icon {
|
2013-11-25 04:19:58 +01:00
|
|
|
margin-top: -16px;
|
|
|
|
float: right;
|
2012-05-24 17:45:29 +02:00
|
|
|
}
|
2011-09-08 01:32:24 +02:00
|
|
|
/** Display a loading icon **/
|
|
|
|
.loading {
|
2013-11-25 04:19:58 +01:00
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
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
|
|
|
|
*/
|
2014-02-17 16:39:53 +01:00
|
|
|
div.et2_file {
|
|
|
|
display: inline-block;
|
2014-03-21 17:27:09 +01:00
|
|
|
position: relative;
|
2016-02-25 14:23:22 +01:00
|
|
|
vertical-align: top;
|
2014-04-30 13:02:13 +02:00
|
|
|
margin-top: 0;
|
2014-02-17 16:39:53 +01:00
|
|
|
}
|
2014-10-01 16:19:36 +02:00
|
|
|
.et2_file .progress_dropDown_fileList {
|
|
|
|
background: white;
|
|
|
|
position: absolute;
|
|
|
|
border: 1px solid gray;
|
|
|
|
border-top: 0;
|
|
|
|
margin-top: 6px !important;
|
|
|
|
margin-left: 0 !important;
|
|
|
|
border-bottom-left-radius: 5px;
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
max-height: 300px;
|
|
|
|
width: 181px !important;
|
|
|
|
z-index: 201 !important;
|
|
|
|
box-shadow: 6px 6px 9px gray;
|
|
|
|
}
|
2014-10-01 17:16:13 +02:00
|
|
|
.et2_file .progress_dropDown_fileList > li {
|
|
|
|
border-bottom: 1px solid lightgray;
|
|
|
|
}
|
2014-10-01 16:19:36 +02:00
|
|
|
.et2_file .totalProgress_loader {
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-image: url('images/ajax-loader.gif');
|
|
|
|
}
|
|
|
|
|
2011-09-02 00:07:30 +02:00
|
|
|
.et2_file .progress {
|
2013-11-25 04:19:58 +01:00
|
|
|
width: 300px;
|
|
|
|
max-height: 6em;
|
|
|
|
overflow: auto;
|
|
|
|
margin-left: 20px;
|
2011-09-06 21:55:52 +02:00
|
|
|
}
|
|
|
|
.et2_file .progress span.progressBar {
|
2013-11-25 04:19:58 +01:00
|
|
|
height: 5px;
|
|
|
|
width: 150px;
|
|
|
|
max-width: 150px;
|
|
|
|
display: inline;
|
2011-09-06 21:55:52 +02:00
|
|
|
}
|
|
|
|
/* Remove icon displayed when hovering */
|
|
|
|
.et2_file .progress li div.remove {
|
2014-08-15 10:55:11 +02:00
|
|
|
display: inline;
|
2013-11-25 04:19:58 +01:00
|
|
|
cursor: pointer;
|
|
|
|
margin: 0px;
|
2014-04-01 22:48:40 +02:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
2014-08-15 10:55:11 +02:00
|
|
|
padding: 0;
|
|
|
|
border-radius: 0;
|
2011-09-06 21:55:52 +02:00
|
|
|
}
|
|
|
|
.et2_file .progress li:hover div.remove {
|
2013-11-25 04:19:58 +01:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
float: right;
|
|
|
|
display: block;
|
|
|
|
background-image: url("images/close.png");
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
2013-11-18 20:57:38 +01:00
|
|
|
}
|
2013-11-25 04:19:58 +01:00
|
|
|
.et2_file .progress p {
|
|
|
|
background-color: green;
|
|
|
|
height: 5px;
|
|
|
|
margin: 0px;
|
2014-10-01 17:05:01 +02:00
|
|
|
width: 0px;
|
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 {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: none;
|
2011-09-02 00:07:30 +02:00
|
|
|
}
|
2014-03-21 17:27:09 +01:00
|
|
|
/* Customize file upload styling */
|
|
|
|
span.et2_file_span{
|
|
|
|
display: block;
|
2014-04-03 15:32:18 +02:00
|
|
|
background-position: 2px;
|
2016-03-21 10:26:03 +01:00
|
|
|
background-image: url(images/upload.png);
|
2014-03-21 17:27:09 +01:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 16px;
|
|
|
|
cursor: pointer;
|
|
|
|
height: 15px;
|
|
|
|
text-align: left;
|
2016-02-25 14:23:22 +01:00
|
|
|
text-indent: 22px;
|
2014-04-03 15:32:18 +02:00
|
|
|
white-space: nowrap;
|
2014-04-30 13:02:13 +02:00
|
|
|
margin-top:0;
|
2014-03-21 17:27:09 +01:00
|
|
|
}
|
|
|
|
div.et2_file input.et2_file_upload{
|
|
|
|
position: absolute;
|
2016-02-29 16:59:45 +01:00
|
|
|
top: 4px;
|
2014-03-21 17:27:09 +01:00
|
|
|
cursor: pointer;
|
2014-04-30 13:02:13 +02:00
|
|
|
width: 98%;
|
2014-03-21 17:27:09 +01:00
|
|
|
opacity: 0;
|
|
|
|
}
|
2011-09-08 01:32:24 +02:00
|
|
|
/**
|
|
|
|
* Autocomplete - used in link widget
|
|
|
|
* Restricting result size
|
|
|
|
*/
|
|
|
|
.ui-autocomplete {
|
2013-11-25 04:19:58 +01:00
|
|
|
max-height: 20ex;
|
|
|
|
overflow-y: auto;
|
|
|
|
/* prevent horizontal scrollbar */
|
|
|
|
overflow-x: hidden;
|
2011-09-08 01:32:24 +02:00
|
|
|
}
|
2013-08-21 01:08:35 +02:00
|
|
|
/**
|
|
|
|
* Autocomplete in dialogs - fix so they go over/out of the dialog
|
|
|
|
*/
|
|
|
|
.ui-dialog * ul.ui-autocomplete {
|
2013-11-25 04:19:58 +01:00
|
|
|
position: fixed;
|
2013-08-21 01:08:35 +02:00
|
|
|
}
|
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 {
|
2014-03-11 13:28:03 +01:00
|
|
|
width: 99%;
|
2013-11-25 04:19:58 +01:00
|
|
|
white-space: nowrap;
|
2012-04-24 23:27:48 +02:00
|
|
|
}
|
|
|
|
div.et2_link_entry:after {
|
2013-11-25 04:19:58 +01:00
|
|
|
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 */
|
2012-07-11 21:01:06 +02:00
|
|
|
.et2_nextmatch div.et2_link_entry {
|
2013-11-25 04:19:58 +01:00
|
|
|
padding-right: 4px;
|
2012-07-11 21:01:06 +02:00
|
|
|
}
|
2012-04-24 23:27:48 +02:00
|
|
|
.et2_nextmatch .et2_link_entry:after {
|
2013-11-25 04:19:58 +01:00
|
|
|
margin: -12px;
|
2012-07-11 21:01:06 +02:00
|
|
|
}
|
|
|
|
div.et2_link_entry select {
|
2014-04-15 12:23:36 +02:00
|
|
|
width: 40%;
|
2014-04-29 15:20:50 +02:00
|
|
|
margin-right: 10px;
|
2012-07-11 21:01:06 +02:00
|
|
|
}
|
|
|
|
div.et2_link_entry input.ui-autocomplete-input {
|
2014-04-15 12:23:36 +02:00
|
|
|
width: 40%;
|
2013-11-25 04:19:58 +01:00
|
|
|
padding-bottom: 1px;
|
2012-04-24 23:27:48 +02:00
|
|
|
}
|
|
|
|
.et2_link_entry.no_app input.ui-autocomplete-input {
|
2013-11-25 04:19:58 +01:00
|
|
|
width: 100%;
|
2012-04-11 17:43:33 +02:00
|
|
|
}
|
2012-07-11 21:01:06 +02:00
|
|
|
.et2_link_entry.no_app select {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: none;
|
2012-07-11 21:01:06 +02:00
|
|
|
}
|
2012-04-11 17:43:33 +02:00
|
|
|
.et2_link_entry .ui-icon-close {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: inline-block;
|
|
|
|
background-color: inherit;
|
|
|
|
border: none;
|
|
|
|
position: relative;
|
|
|
|
top: 3px;
|
2014-04-15 12:23:36 +02:00
|
|
|
left: -26px;
|
2013-11-25 04:19:58 +01:00
|
|
|
cursor: pointer;
|
|
|
|
margin-top: -3px;
|
|
|
|
}
|
2011-09-09 02:05:46 +02:00
|
|
|
/* Link to */
|
|
|
|
.et2_link_to {
|
2014-02-07 14:13:24 +01:00
|
|
|
overflow-x: visible;
|
2011-09-09 02:05:46 +02:00
|
|
|
}
|
|
|
|
.et2_link_to button {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: inline;
|
|
|
|
float: right;
|
2011-09-09 02:05:46 +02:00
|
|
|
}
|
|
|
|
.et2_link_to span.status {
|
2013-11-25 04:19:58 +01:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 3px center;
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
display: block;
|
|
|
|
float: right;
|
2011-09-09 02:05:46 +02:00
|
|
|
}
|
2013-08-27 19:26:02 +02:00
|
|
|
.et2_link_to span.status.success {
|
2013-11-25 04:19:58 +01:00
|
|
|
background-image: url(images/tick.png);
|
2013-08-27 19:26:02 +02:00
|
|
|
}
|
|
|
|
.et2_link_to span.status.error {
|
2013-11-25 04:19:58 +01:00
|
|
|
background-image: url(images/error.png);
|
2013-08-27 19:26:02 +02:00
|
|
|
}
|
2011-09-09 02:05:46 +02:00
|
|
|
.et2_link_to .progress {
|
2013-11-25 04:19:58 +01:00
|
|
|
max-height: 12em;
|
2014-02-06 18:36:03 +01:00
|
|
|
overflow-y: auto;
|
2011-09-09 02:05:46 +02:00
|
|
|
}
|
|
|
|
.et2_link_to .progress > .success input {
|
2013-11-25 04:19:58 +01:00
|
|
|
width: 100%;
|
|
|
|
margin-right: -20px;
|
|
|
|
/* Leave room for remove icon */
|
2011-09-09 02:05:46 +02:00
|
|
|
}
|
2013-08-27 19:26:02 +02:00
|
|
|
.et2_link_to .progress li {
|
2013-11-25 04:19:58 +01:00
|
|
|
list-style: none;
|
|
|
|
padding-bottom: 1px;
|
|
|
|
padding-top: 0px;
|
2013-08-27 19:26:02 +02:00
|
|
|
}
|
2011-09-09 02:05:46 +02:00
|
|
|
.et2_link_to .progress li.success span.ui-icon-comment {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: none;
|
|
|
|
float: right;
|
|
|
|
cursor: pointer;
|
|
|
|
margin-right: 5px;
|
2011-09-09 02:05:46 +02:00
|
|
|
}
|
|
|
|
.et2_link_to .progress li:hover.success span.ui-icon-comment {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: inline;
|
2011-09-09 02:05:46 +02:00
|
|
|
}
|
2012-06-27 01:01:04 +02:00
|
|
|
.et2_link_to .et2_button_icon {
|
2013-11-25 04:19:58 +01:00
|
|
|
float: left;
|
|
|
|
width: 22px;
|
2012-06-27 01:01:04 +02:00
|
|
|
}
|
2014-07-15 18:21:38 +02:00
|
|
|
.et2_link_to button.et2_vfs_btn{
|
|
|
|
float: left;
|
|
|
|
margin: 0;
|
|
|
|
text-align: left;
|
|
|
|
height: 24px !important;
|
|
|
|
padding-left: 30px !important;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 4px center;
|
|
|
|
background-size: 20px auto;
|
|
|
|
width: 35%;
|
|
|
|
}
|
|
|
|
.et2_link_to div.et2_file{
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
vertical-align: middle;
|
|
|
|
width: 37%;
|
|
|
|
margin-left: 8px;
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2011-09-13 01:43:39 +02:00
|
|
|
.et2_link {
|
2013-11-25 04:19:58 +01:00
|
|
|
cursor: pointer;
|
|
|
|
color: #003075;
|
|
|
|
text-decoration: none;
|
2012-03-20 16:51:39 +01:00
|
|
|
}
|
|
|
|
.et2_link:hover {
|
2013-11-25 04:19:58 +01:00
|
|
|
text-decoration: underline;
|
2011-09-13 01:43:39 +02:00
|
|
|
}
|
|
|
|
ul.et2_link_string {
|
2013-11-25 04:19:58 +01:00
|
|
|
list-style-type: none;
|
|
|
|
display: inline;
|
|
|
|
padding: 0px;
|
2011-09-13 01:43:39 +02:00
|
|
|
}
|
|
|
|
.et2_link_string li {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: inline;
|
2011-09-13 01:43:39 +02:00
|
|
|
}
|
|
|
|
.et2_link_string li:not(:last-child):after {
|
2016-01-07 11:06:05 +01:00
|
|
|
content: '\002C\00A0';
|
2011-09-13 01:43:39 +02:00
|
|
|
}
|
2013-03-20 19:26:18 +01:00
|
|
|
.et2_link_list {
|
2013-11-25 04:19:58 +01:00
|
|
|
border-collapse: collapse;
|
2014-07-15 00:34:55 +02:00
|
|
|
-webkit-touch-callout: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
2015-11-04 10:27:00 +01:00
|
|
|
white-space: normal;
|
2013-03-20 19:26:18 +01:00
|
|
|
}
|
2012-03-05 22:40:44 +01:00
|
|
|
.et2_link_list tr {
|
2013-11-25 04:19:58 +01:00
|
|
|
cursor: pointer;
|
2012-03-05 22:40:44 +01:00
|
|
|
}
|
2011-09-14 02:06:04 +02:00
|
|
|
.et2_link_list td.remark {
|
2013-11-25 04:19:58 +01:00
|
|
|
font-style: italic;
|
2011-09-14 02:06:04 +02:00
|
|
|
}
|
2015-09-02 21:52:47 +02:00
|
|
|
.et2_link_list td div.delete, .et2_vfs td div.delete {
|
2013-11-25 04:19:58 +01:00
|
|
|
visibility: hidden;
|
|
|
|
background-image: url("images/close.png");
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
.et2_link_list .icon img,
|
2015-09-02 21:52:47 +02:00
|
|
|
.et2_link_list .icon,
|
|
|
|
.et2_vfs .icon img, .et2_vfs .icon {
|
2013-11-25 04:19:58 +01:00
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
display: inline-block;
|
2013-11-11 20:10:28 +01:00
|
|
|
}
|
2015-09-02 21:52:47 +02:00
|
|
|
.et2_link_list tr:hover div.delete, .et2_vfs tr:hover div.delete {
|
2013-11-25 04:19:58 +01:00
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
.egw_tooltip {
|
|
|
|
position: fixed;
|
|
|
|
border: 1px solid #897f51;
|
|
|
|
background-color: #FDF9DB;
|
|
|
|
max-width: 300px;
|
|
|
|
color: black;
|
2015-12-22 21:36:39 +01:00
|
|
|
z-index: 100;
|
2015-10-27 21:08:56 +01:00
|
|
|
-webkit-box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.75);
|
|
|
|
-moz-box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.75);
|
|
|
|
box-shadow: 2px 2px 10px 0px rgba(0,0,0,0.75);
|
2013-11-25 04:19:58 +01:00
|
|
|
}
|
2011-08-17 11:07:09 +02:00
|
|
|
/**
|
|
|
|
* Tabs widget
|
|
|
|
*/
|
|
|
|
.et2_tabflag {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: inline-block;
|
|
|
|
margin-right: 5px;
|
|
|
|
padding: 5px;
|
2014-03-12 14:51:47 +01:00
|
|
|
min-width: 60px;
|
2013-11-25 04:19:58 +01:00
|
|
|
cursor: pointer;
|
|
|
|
border: 1px solid silver;
|
|
|
|
background-color: #E0E0E0;
|
|
|
|
background-image: url(images/gradient01.png);
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: repeat-x;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
2011-08-17 11:07:09 +02:00
|
|
|
.et2_tabflag:hover {
|
2013-11-25 04:19:58 +01:00
|
|
|
color: #050505;
|
|
|
|
border: 1px solid gray;
|
|
|
|
background-color: #D0D0EE;
|
2011-08-17 11:07:09 +02:00
|
|
|
}
|
|
|
|
.et2_tabflag:active {
|
2013-11-25 04:19:58 +01:00
|
|
|
background-image: url(images/gradient02.png);
|
|
|
|
background-color: #D0D0E0;
|
2013-11-11 20:10:28 +01:00
|
|
|
}
|
|
|
|
.et2_tabs {
|
2013-11-25 04:19:58 +01:00
|
|
|
border-width: 0px 1px 1px 1px;
|
|
|
|
border-style: solid;
|
|
|
|
border-color: silver;
|
|
|
|
padding: 5px;
|
|
|
|
overflow-y: auto;
|
2013-11-12 18:24:19 +01:00
|
|
|
}
|
|
|
|
.et2_tabflag.active {
|
2013-11-25 04:19:58 +01:00
|
|
|
border-bottom: 1px solid white;
|
|
|
|
background-color: white;
|
|
|
|
background-image: none;
|
2011-08-17 11:07:09 +02:00
|
|
|
}
|
|
|
|
.et2_tabheader {
|
2013-11-25 04:19:58 +01:00
|
|
|
background-image: url(images/tab_header_bg.png);
|
|
|
|
background-position: bottom;
|
|
|
|
background-repeat: repeat-x;
|
2014-10-31 11:12:53 +01:00
|
|
|
white-space: nowrap;
|
2011-08-17 11:07:09 +02:00
|
|
|
}
|
2016-01-28 12:26:22 +01:00
|
|
|
|
|
|
|
.et2_tabbox.vertical .et2_tabflag {
|
|
|
|
display: block;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.et2_tabbox.vertical .et2_tabflag .et2_tabcntr{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.et2_tabbox.vertical .et2_tabflag.active .et2_tabcntr {
|
|
|
|
display: block;
|
2016-02-16 18:18:02 +01:00
|
|
|
|
2016-01-28 12:26:22 +01:00
|
|
|
}
|
|
|
|
.et2_tabbox.vertical .et2_tabflag div.et2_tabtitle {
|
|
|
|
background-color: #C4C4C4;
|
|
|
|
padding: 6px 0 6px 0;
|
|
|
|
}
|
|
|
|
.et2_tabbox.vertical .et2_tabflag div.et2_tabtitle:before {
|
|
|
|
content: "+";
|
|
|
|
color: white;
|
|
|
|
font-size: 12pt;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 3px;
|
|
|
|
float: right;
|
|
|
|
background-color: #636363;
|
|
|
|
border-radius: 3px;
|
|
|
|
margin-top: -6px;
|
|
|
|
}
|
|
|
|
.et2_tabbox.vertical .et2_tabflag.active div.et2_tabtitle:before {
|
|
|
|
content: "\2212";
|
|
|
|
}
|
|
|
|
|
2016-03-04 16:36:05 +01:00
|
|
|
/**
|
|
|
|
* Tag list
|
|
|
|
*/
|
2016-03-07 23:39:11 +01:00
|
|
|
.ms-ctn,
|
|
|
|
.ms-res-ctn {
|
|
|
|
/* It doesn't really work smaller than this */
|
|
|
|
min-width: 150px;
|
|
|
|
border: solid 1px #bbbbbb;
|
|
|
|
}
|
|
|
|
.ms-ctn .loading {
|
|
|
|
position: relative;
|
|
|
|
margin: 0px auto -16px auto;
|
|
|
|
top: 5px;
|
|
|
|
}
|
|
|
|
.et2_taglist div.ms-sel-ctn .ms-close-btn {
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
2016-03-15 20:02:49 +01:00
|
|
|
background-position: 0px -10px;
|
2016-03-07 23:39:11 +01:00
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
margin: 2px -16px 0 10px;
|
|
|
|
}
|
|
|
|
.et2_taglist .ms-res-ctn {
|
|
|
|
position:absolute;
|
|
|
|
background: #FFF;
|
|
|
|
overflow-y: auto;
|
|
|
|
z-index: 9999;
|
|
|
|
-webkit-border-radius: 3px;
|
|
|
|
-moz-border-radius: 3px;
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid #CCC;
|
|
|
|
left: -1px;
|
|
|
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
|
|
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
|
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
|
|
border-top: 0;
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
padding: 1px 0px;
|
|
|
|
}
|
|
|
|
.et2_taglist div.ms-sel-ctn {
|
|
|
|
padding-right: 0px;
|
|
|
|
overflow-x: hidden;
|
|
|
|
}
|
|
|
|
.et2_taglist div.ms-sel-ctn .ms-sel-item {
|
|
|
|
margin: 0px 5px 3px 0px;
|
|
|
|
padding: 3px 20px 3px 5px;
|
|
|
|
border: 1px solid #aaa;
|
|
|
|
border-radius: 3px;
|
|
|
|
background-color: #e4e4e4;
|
|
|
|
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
|
|
|
|
background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
|
|
|
background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
|
|
|
background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
|
|
|
background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
|
|
|
background-clip: padding-box;
|
|
|
|
box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
|
|
|
|
color: #333;
|
|
|
|
line-height: 13px;
|
|
|
|
font-size: 11px;
|
|
|
|
cursor: default;
|
2016-03-09 01:42:33 +01:00
|
|
|
word-break: break-word;
|
|
|
|
white-space: normal;
|
|
|
|
max-width: calc(100% - 30px);
|
2016-03-07 23:39:11 +01:00
|
|
|
}
|
|
|
|
.et2_taglist.ui-state-hover,
|
|
|
|
.et2_taglist.ui-state-active {
|
|
|
|
font-weight: inherit;
|
2016-03-09 01:42:33 +01:00
|
|
|
border: inherit;
|
|
|
|
background: inherit;
|
2016-03-07 23:39:11 +01:00
|
|
|
}
|
|
|
|
.et2_taglist div.ms-ctn {
|
|
|
|
background-color: white;
|
2016-03-08 16:37:52 +01:00
|
|
|
padding-right: 0;
|
2016-03-07 23:39:11 +01:00
|
|
|
}
|
|
|
|
.et2_taglist div.ms-ctn input {
|
|
|
|
padding: 3px 5px;
|
|
|
|
}
|
|
|
|
.et2_taglist div.ms-ctn input:focus {
|
|
|
|
min-width: 10em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.et2_taglist .ms-res-ctn .ms-res-item {
|
|
|
|
line-height: 13px;
|
|
|
|
padding: 3px 6px;
|
|
|
|
}
|
2013-12-04 19:58:51 +01:00
|
|
|
.et2_taglist_ro ul {
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
2014-01-16 16:58:27 +01:00
|
|
|
.et2_taglist .mailinglist {
|
|
|
|
width: 100%;
|
|
|
|
background-image: url(images/email.png);
|
|
|
|
padding-right: 20px;
|
|
|
|
background-position: right;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2014-03-24 21:50:53 +01:00
|
|
|
/* min-height to fix calculations done while hidden */
|
2016-03-09 17:20:53 +01:00
|
|
|
.et2_taglist, .et2_taglist > div.ms-ctn {
|
2016-03-07 23:39:11 +01:00
|
|
|
min-height: 23px;
|
2014-03-24 21:50:53 +01:00
|
|
|
}
|
2016-03-04 16:36:05 +01:00
|
|
|
/* Toggle single / multiple */
|
|
|
|
.et2_taglist_toggle {
|
|
|
|
}
|
|
|
|
.et2_taglist_toggle > div.ms-ctn {
|
|
|
|
display: inline-block;
|
2016-03-09 17:20:53 +01:00
|
|
|
width: calc(100% - 16px);
|
|
|
|
padding-right: 2px;
|
|
|
|
}
|
|
|
|
.et2_taglist_toggle.ui-state-hover,
|
|
|
|
.et2_taglist_toggle.ui-state-active {
|
|
|
|
z-index: 1;
|
2016-03-04 16:36:05 +01:00
|
|
|
}
|
2016-03-09 01:42:33 +01:00
|
|
|
.et2_taglist_toggle:not(.et2_taglist_single) .ms-ctn {
|
|
|
|
/* height: 100%;*/
|
|
|
|
}
|
2016-03-04 16:36:05 +01:00
|
|
|
.et2_taglist_toggle.et2_taglist_single > div.ms-ctn {
|
|
|
|
padding-right: 7px
|
|
|
|
}
|
2016-03-07 23:39:11 +01:00
|
|
|
.et2_taglist_toggle > div.toggle {
|
2016-03-04 16:36:05 +01:00
|
|
|
margin-left: -1px;
|
|
|
|
float: right;
|
2016-03-04 18:00:20 +01:00
|
|
|
|
2016-03-09 17:20:53 +01:00
|
|
|
width: 25px;
|
2016-03-04 16:36:05 +01:00
|
|
|
height: 23px;
|
|
|
|
position: relative;
|
|
|
|
|
2016-03-09 17:20:53 +01:00
|
|
|
z-index: 5;
|
|
|
|
|
2016-03-04 16:36:05 +01:00
|
|
|
border: 1px solid #BBB;
|
2016-03-09 17:20:53 +01:00
|
|
|
background-color: white;
|
2016-03-04 16:36:05 +01:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center center;
|
|
|
|
background-image: url("../../../phpgwapi/templates/default/images/foldertree_nolines_minus.gif");
|
|
|
|
}
|
2016-03-09 17:20:53 +01:00
|
|
|
|
|
|
|
.et2_taglist_toggle.et2_taglist_single:not(.expanded) > div.toggle {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.et2_taglist_toggle.et2_taglist_single.expanded > div.toggle {
|
2016-03-04 16:36:05 +01:00
|
|
|
background-image: url("../../../phpgwapi/templates/default/images/foldertree_nolines_plus.gif");
|
2016-03-09 17:20:53 +01:00
|
|
|
display: block;
|
2016-03-04 16:36:05 +01:00
|
|
|
}
|
|
|
|
.et2_taglist_toggle:not(.et2_taglist_single) .ms-trigger {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
/* Single select */
|
|
|
|
.et2_taglist_single .ms-ctn {
|
|
|
|
padding: 0px 7px;
|
2016-03-07 23:39:11 +01:00
|
|
|
min-width: 50px;
|
2016-03-04 16:36:05 +01:00
|
|
|
}
|
|
|
|
.et2_taglist_single div.ms-ctn .ms-sel-item + input {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.et2_taglist_single .ms-ctn .ms-trigger .ms-trigger-ico {
|
|
|
|
margin-top: 9px;
|
|
|
|
}
|
|
|
|
div .et2_taglist_single div.ms-sel-ctn div.ms-sel-item {
|
|
|
|
border: none;
|
|
|
|
background: inherit;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
padding-bottom: 6px;
|
2016-03-07 23:39:11 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2016-03-09 01:42:33 +01:00
|
|
|
div .et2_taglist_single:not(.et2_taglist_small) div.ms-sel-ctn div.ms-sel-item {
|
|
|
|
width: calc(100% - 43px);
|
|
|
|
}
|
|
|
|
.et2_taglist_single div.ms-sel-item > span:first-child {
|
|
|
|
max-width: 100%;
|
2016-03-09 17:20:53 +01:00
|
|
|
width: 100%;
|
2016-03-09 01:42:33 +01:00
|
|
|
display: inline-block;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
.et2_taglist_toggle.et2_taglist_small.et2_taglist_single::before {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.et2_taglist_single div.ms-sel-ctn .ms-close-btn {
|
|
|
|
position: relative;
|
|
|
|
top: 0px;
|
2016-03-09 17:20:53 +01:00
|
|
|
right: 10px;
|
2016-03-09 01:42:33 +01:00
|
|
|
float: none;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2016-03-07 23:39:11 +01:00
|
|
|
|
|
|
|
/* Taglist that is limited in size - does not grow */
|
|
|
|
.et2_taglist.et2_taglist_small .ms-ctn,
|
|
|
|
.et2_taglist.et2_taglist_small .ms-res-ctn {
|
|
|
|
min-width: auto;
|
|
|
|
}
|
|
|
|
.et2_taglist_small {
|
|
|
|
position: relative;
|
|
|
|
max-height: 3em;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.et2_taglist_small::before {
|
|
|
|
content: attr(data-content) '';
|
|
|
|
text-align: right;
|
|
|
|
position: absolute;
|
2016-03-09 17:20:53 +01:00
|
|
|
z-index: 10;
|
2016-03-07 23:39:11 +01:00
|
|
|
top: 1px;
|
|
|
|
bottom: 0px;
|
|
|
|
right: 0;
|
|
|
|
padding-top: 1em;
|
|
|
|
padding-bottom: 3px;
|
|
|
|
padding-right: 1em;
|
|
|
|
padding-left: 2em;
|
|
|
|
min-height: 1.2em;
|
|
|
|
min-width: 25%;
|
|
|
|
background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 25%);
|
|
|
|
}
|
2016-03-09 17:20:53 +01:00
|
|
|
.et2_taglist_small:not(.et2_taglist_single) {
|
|
|
|
border-bottom: 1px solid silver;
|
|
|
|
}
|
2016-03-09 01:42:33 +01:00
|
|
|
div .et2_taglist_small.et2_taglist_single div.ms-sel-ctn div.ms-sel-item {
|
|
|
|
max-width: calc(100% - 43px);
|
2016-03-09 17:20:53 +01:00
|
|
|
width: 100%;
|
2016-03-09 01:42:33 +01:00
|
|
|
}
|
2016-03-07 23:39:11 +01:00
|
|
|
.et2_taglist_toggle.et2_taglist_small::before {
|
|
|
|
}
|
|
|
|
.et2_taglist_small.ui-state-hover,
|
|
|
|
.et2_taglist_small.ui-state-active {
|
|
|
|
max-height: none;
|
|
|
|
min-width: 15em;
|
|
|
|
background: white;
|
|
|
|
z-index: 5;
|
2016-03-09 01:42:33 +01:00
|
|
|
margin-top: 0px;
|
2016-03-07 23:39:11 +01:00
|
|
|
transition-duration: 0s;
|
|
|
|
font-weight: normal;
|
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
.et2_taglist_small.ui-state-hover::before,
|
|
|
|
.et2_taglist_small.ui-state-active::before {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.et2_taglist_small div.ms-sel-item {
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2016-02-29 21:29:49 +01:00
|
|
|
|
|
|
|
/* Taglist category */
|
|
|
|
.et2_taglist_category span[class*="cat_"] {
|
|
|
|
height: 1.7em;
|
|
|
|
width: 6px;
|
|
|
|
margin: -3px -6px;
|
|
|
|
float: left;
|
|
|
|
}
|
2016-03-04 16:36:05 +01:00
|
|
|
.et2_taglist_category.et2_taglist_single span[class*="cat_"] {
|
|
|
|
height: 2em;
|
|
|
|
margin-bottom: -6px
|
|
|
|
}
|
2016-02-29 21:29:49 +01:00
|
|
|
.et2_taglist_category .ms-res-item > span {
|
|
|
|
margin-left: 3px;
|
|
|
|
}
|
|
|
|
.et2_taglist_category .ms-sel-item > span:first-child {
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-26 21:46:51 +02:00
|
|
|
/**
|
|
|
|
* VFS widget(s)
|
|
|
|
*/
|
2012-03-27 01:30:27 +02:00
|
|
|
ul.et2_vfs {
|
2013-11-25 04:19:58 +01:00
|
|
|
padding-left: 0px;
|
|
|
|
margin: 1px;
|
2012-03-27 01:30:27 +02:00
|
|
|
}
|
2012-03-26 21:46:51 +02:00
|
|
|
.et2_vfs li.vfsFilename {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: inline;
|
2012-03-26 21:46:51 +02:00
|
|
|
}
|
|
|
|
.et2_vfs li.vfsFilename:not(:last-child):after {
|
2013-11-25 04:19:58 +01:00
|
|
|
padding: 0.25ex;
|
2012-03-26 21:46:51 +02:00
|
|
|
}
|
2015-09-01 00:32:50 +02:00
|
|
|
.et2_vfs table {
|
|
|
|
width: 100%;
|
|
|
|
max-height: 6em;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
.et2_vfs td.icon {
|
|
|
|
width: 16px;
|
2015-09-02 21:52:47 +02:00
|
|
|
max-width: 16px;
|
2015-09-01 00:32:50 +02:00
|
|
|
}
|
2014-04-30 13:02:13 +02:00
|
|
|
button.et2_vfs_btn {
|
|
|
|
margin: 0;
|
|
|
|
text-align: left;
|
|
|
|
height: 24px !important;
|
|
|
|
padding-left: 30px !important;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 4px center;
|
|
|
|
background-size: 20px auto;
|
|
|
|
}
|
2015-01-13 11:45:10 +01:00
|
|
|
img.vfsMimeIcon, #filemanager-select img.vfsMimeIcon {
|
|
|
|
max-height: 16px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
img.vfsMimeIcon[src*="/etemplate/thumbnail.php"] {
|
|
|
|
max-height: none;
|
|
|
|
}
|
2014-04-30 13:02:13 +02:00
|
|
|
|
2011-08-17 23:36:08 +02:00
|
|
|
/**
|
|
|
|
* Validation
|
|
|
|
*/
|
2014-02-03 17:50:36 +01:00
|
|
|
.et2_required, [required] {
|
2013-11-25 04:19:58 +01:00
|
|
|
background-color: #ffffd0;
|
2011-08-17 23:36:08 +02:00
|
|
|
}
|
2014-03-10 16:08:18 +01:00
|
|
|
td.et2_required {
|
2014-03-19 17:52:25 +01:00
|
|
|
background-color: transparent;
|
2014-03-10 16:08:18 +01:00
|
|
|
}
|
2013-06-26 16:11:54 +02:00
|
|
|
.invalid {
|
2013-11-25 04:19:58 +01:00
|
|
|
border: 1px solid #a6261d;
|
|
|
|
background-color: #faecec;
|
2011-08-17 23:36:08 +02:00
|
|
|
}
|
|
|
|
.error {
|
2013-11-25 04:19:58 +01:00
|
|
|
-moz-border-radius: 0 4px 4px 0;
|
|
|
|
-moz-box-shadow: 0 0 6px #DDDDDD;
|
|
|
|
background-color: #FFFE36;
|
|
|
|
border: 1px solid #E1E16D;
|
|
|
|
color: #000000;
|
|
|
|
font-size: 11px;
|
2015-07-01 14:44:34 +02:00
|
|
|
min-height: 15px;
|
2013-11-25 04:19:58 +01:00
|
|
|
padding: 4px 10px;
|
2011-08-17 23:36:08 +02:00
|
|
|
}
|
|
|
|
.error p {
|
2013-11-25 04:19:58 +01:00
|
|
|
margin: 0;
|
2011-08-17 23:36:08 +02:00
|
|
|
}
|
2011-08-21 15:24:20 +02:00
|
|
|
/**
|
|
|
|
* hrule widget
|
|
|
|
*/
|
|
|
|
hr {
|
2013-11-25 04:19:58 +01:00
|
|
|
border-style: none;
|
|
|
|
border-top: 1px solid silver;
|
|
|
|
height: 1px;
|
|
|
|
margin: 10px 0px 10px 0px;
|
2011-08-21 15:24:20 +02:00
|
|
|
}
|
2011-08-22 17:58:47 +02:00
|
|
|
/**
|
|
|
|
* grid widget
|
|
|
|
*/
|
|
|
|
table.et2_grid {
|
2013-11-25 04:19:58 +01:00
|
|
|
border-collapse: collapse;
|
2011-08-22 17:58:47 +02:00
|
|
|
}
|
2011-08-22 18:37:04 +02:00
|
|
|
.et2_grid td {
|
2013-11-25 04:19:58 +01:00
|
|
|
/* border: 1px dashed silver;*/
|
2011-08-22 18:37:04 +02:00
|
|
|
}
|
2016-04-01 12:18:38 +02:00
|
|
|
.et2_grid td[align="right"] {
|
|
|
|
padding-right: 8px;
|
|
|
|
}
|
2013-07-04 01:16:15 +02:00
|
|
|
/**
|
|
|
|
* Sortable grid
|
|
|
|
*/
|
2015-06-10 23:51:28 +02:00
|
|
|
table.et2_grid tbody.ui-sortable:not(.ui-sortable-disabled) > tr:not(.th) {
|
2013-11-25 04:19:58 +01:00
|
|
|
cursor: ns-resize;
|
2013-07-04 01:16:15 +02:00
|
|
|
}
|
2014-01-18 17:55:16 +01:00
|
|
|
|
2015-06-22 19:18:34 +02:00
|
|
|
.et2_scrollable_tbody {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.et2_scrollable_tbody thead {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
width: calc(100% - 0.9em);
|
|
|
|
display: table;
|
|
|
|
table-layout: fixed;
|
|
|
|
}
|
|
|
|
.et2_scrollable_tbody tbody > tr{
|
|
|
|
width: 100%;
|
|
|
|
display: table;
|
|
|
|
table-layout: fixed;
|
|
|
|
}
|
|
|
|
.et2_scrollable_tbody tbody {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
display: block;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
2014-01-18 17:55:16 +01:00
|
|
|
/**
|
|
|
|
* irame & loader
|
|
|
|
*/
|
|
|
|
.et2_iframe.loading {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2011-08-23 16:59:49 +02:00
|
|
|
/**
|
|
|
|
* Message styles
|
|
|
|
*/
|
|
|
|
/* Style used for a generic message (such as success messages or validation errors) */
|
2013-06-03 20:08:55 +02:00
|
|
|
div.message {
|
2013-11-25 04:19:58 +01:00
|
|
|
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;
|
|
|
|
}
|
2013-06-03 20:08:55 +02:00
|
|
|
div.message.floating {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: inline-block;
|
|
|
|
margin: 0px 5px 0px 5px;
|
2011-08-23 16:59:49 +02:00
|
|
|
}
|
|
|
|
.message.validation_error {
|
2013-11-25 04:19:58 +01:00
|
|
|
color: #a93030;
|
|
|
|
font-style: italic;
|
|
|
|
background-color: #f3d4d0;
|
|
|
|
border-color: #a93030;
|
|
|
|
background-image: url(images/error.png);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
2011-08-23 16:59:49 +02:00
|
|
|
.message.success {
|
2013-11-25 04:19:58 +01:00
|
|
|
font-style: normal;
|
|
|
|
background-color: #e5f3d0;
|
|
|
|
color: #98a930;
|
|
|
|
border-color: #9ea930;
|
|
|
|
background-image: url(images/tick.png);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
padding-left: 20px;
|
2014-04-01 22:48:40 +02:00
|
|
|
white-space: nowrap;
|
2013-11-25 04:19:58 +01:00
|
|
|
}
|
2011-08-23 16:59:49 +02:00
|
|
|
.message.hint {
|
2013-11-25 04:19:58 +01:00
|
|
|
font-style: normal;
|
|
|
|
background-color: #d9e2ed;
|
|
|
|
border-color: #56729a;
|
|
|
|
color: #56729a;
|
|
|
|
background-image: url(images/hint.png);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
2011-08-25 15:35:53 +02:00
|
|
|
/**
|
|
|
|
* Nextmatch widget
|
|
|
|
*/
|
|
|
|
.et2_nextmatch {
|
2013-11-25 04:19:58 +01: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 {
|
2013-11-25 04:19:58 +01:00
|
|
|
margin-top: -20px;
|
|
|
|
border: none;
|
2012-03-14 23:57:54 +01:00
|
|
|
}
|
2016-02-17 14:23:27 +01:00
|
|
|
.nextmatch_header_row {
|
|
|
|
width: 100%;
|
|
|
|
padding-bottom: 5px;
|
2016-02-17 20:56:54 +01:00
|
|
|
position: relative;
|
2016-02-17 14:23:27 +01:00
|
|
|
}
|
2011-10-12 21:06:52 +02:00
|
|
|
.nextmatch_header .header_count {
|
2016-02-17 14:23:27 +01:00
|
|
|
padding: 0px 10px;
|
2016-02-25 22:35:27 +01:00
|
|
|
margin: 1px 6px 1px;
|
2016-02-17 14:23:27 +01:00
|
|
|
height: 22px;
|
|
|
|
border: 1px solid silver;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 3px;
|
|
|
|
float: right;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.nextmatch_header .header_count span {
|
|
|
|
position: relative;
|
|
|
|
top: 4px;
|
|
|
|
font-size: 11px;
|
|
|
|
color: gray;
|
|
|
|
}
|
|
|
|
.nextmatch_header .et2_dropdown button {
|
|
|
|
border: 1px solid silver;
|
2011-09-27 02:16:00 +02:00
|
|
|
}
|
2014-03-12 11:10:41 +01:00
|
|
|
.nextmatch_header_row > select,.nextmatch_header_row > label > select {
|
2014-03-12 10:47:40 +01:00
|
|
|
max-width: 14%;
|
|
|
|
margin-right: 2ex;
|
2012-04-05 22:08:57 +02:00
|
|
|
}
|
2014-03-12 10:47:40 +01:00
|
|
|
.nextmatch_header_row > .header_row_right {
|
|
|
|
float: right;
|
|
|
|
padding-right: 1ex;
|
2011-09-27 02:16:00 +02:00
|
|
|
}
|
2014-03-12 10:47:40 +01:00
|
|
|
.nextmatch_header_row > .header_row_right > * {
|
|
|
|
display: inline-block;
|
2016-02-17 20:56:54 +01:00
|
|
|
float: left;
|
2012-04-05 23:32:57 +02:00
|
|
|
}
|
2013-04-10 16:05:01 +02:00
|
|
|
.et2_nextmatch .nextmatch_header {
|
2013-11-25 04:19:58 +01:00
|
|
|
border: none;
|
|
|
|
background-image: none;
|
|
|
|
background-color: transparent;
|
2013-04-10 16:05:01 +02:00
|
|
|
}
|
2014-03-11 22:54:19 +01:00
|
|
|
.et2_nextmatch .nextmatch_header_row > div {
|
|
|
|
display: inline-block;
|
2013-04-10 16:05:01 +02:00
|
|
|
}
|
2014-10-28 17:37:55 +01:00
|
|
|
/* Firefox only search clear button */
|
|
|
|
.et2_nextmatch .nextmatch_header_row input[type="search"] + span {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
top: 4px;
|
|
|
|
margin-left: -16px;
|
|
|
|
/* Clear icon (x) ui-icon-clear */
|
|
|
|
background-position: -80px -128px;
|
|
|
|
}
|
|
|
|
|
2013-02-27 19:13:54 +01:00
|
|
|
/* Favorites */
|
2013-07-20 19:20:55 +02:00
|
|
|
.nextmatch_header div[id$=favorite_wrapper] {
|
2016-02-17 14:23:27 +01:00
|
|
|
position: relative;
|
2016-02-17 20:56:54 +01:00
|
|
|
float: left;
|
2013-02-27 19:13:54 +01:00
|
|
|
}
|
2013-11-25 04:19:58 +01:00
|
|
|
#nm_favorites_popup_filters .filter_id,
|
|
|
|
#nm_favorites_popup_filters .filter_value {
|
2016-02-17 14:23:27 +01:00
|
|
|
width: 45%;
|
|
|
|
display: inline-block;
|
2013-02-27 19:13:54 +01:00
|
|
|
}
|
2013-04-24 21:53:51 +02:00
|
|
|
.nextmatch_header ul.favorites {
|
2016-02-17 14:23:27 +01:00
|
|
|
min-width: 30ex;
|
|
|
|
border: 1px solid silver;
|
|
|
|
box-shadow: 6px 6px 9px gray;
|
2013-04-24 21:53:51 +02:00
|
|
|
}
|
2014-04-23 13:46:42 +02:00
|
|
|
.ui-fav-sortable-placeholder {
|
|
|
|
height: 24px;
|
|
|
|
border: 1px dashed silver;
|
|
|
|
border-radius: 2px;
|
|
|
|
margin: 0px;
|
|
|
|
padding: 2px 5px;
|
|
|
|
}
|
2013-07-20 19:20:55 +02:00
|
|
|
.nextmatch_header .favorites li .ui-menu .ui-menu-item a {
|
2013-11-25 04:19:58 +01:00
|
|
|
text-indent: -22px;
|
|
|
|
margin-left: 21px;
|
2013-04-24 21:53:51 +02:00
|
|
|
}
|
|
|
|
.nextmatch_header .favorites.ui-menu li.ui-menu-item a.ui-state-hover {
|
2013-11-25 04:19:58 +01:00
|
|
|
margin-left: 20px;
|
2013-03-05 00:33:58 +01:00
|
|
|
}
|
2013-11-11 20:10:28 +01:00
|
|
|
.favorites li span.ui-state-active {
|
2013-11-25 04:19:58 +01:00
|
|
|
border: none;
|
2013-03-06 01:02:48 +01:00
|
|
|
}
|
2013-11-25 04:19:58 +01:00
|
|
|
.favorites input,
|
|
|
|
.favorites img {
|
|
|
|
margin-right: 1ex;
|
2013-03-06 18:56:09 +01:00
|
|
|
}
|
2013-11-11 20:10:28 +01:00
|
|
|
.favorites div.ui-icon-trash {
|
2013-11-25 04:19:58 +01:00
|
|
|
position: relative;
|
|
|
|
float: right;
|
|
|
|
display: none;
|
2013-03-13 16:24:18 +01:00
|
|
|
}
|
2013-11-12 18:24:19 +01:00
|
|
|
.favorites li:hover div.ui-icon {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: inline-block;
|
2013-11-12 18:24:19 +01:00
|
|
|
}
|
|
|
|
.favorites .sideboxstar {
|
2013-11-25 04:19:58 +01:00
|
|
|
height: 9px;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0px 4px;
|
|
|
|
margin: 0px 5px;
|
|
|
|
/* TODO: This is template specific */
|
2016-03-21 10:27:41 +01:00
|
|
|
background-image: url(images/bullet.png);
|
2013-11-12 18:24:19 +01:00
|
|
|
}
|
2013-11-11 20:10:28 +01:00
|
|
|
.sidebox-favorites ul.favorites {
|
2013-11-25 04:19:58 +01:00
|
|
|
width: 99%;
|
|
|
|
padding: 0px;
|
|
|
|
border: none;
|
|
|
|
background: white;
|
2013-11-11 20:10:28 +01:00
|
|
|
}
|
2013-11-12 18:24:19 +01:00
|
|
|
.sidebox-favorites .ui-menu .ui-menu-item a {
|
2013-11-25 04:19:58 +01:00
|
|
|
line-height: inherit;
|
|
|
|
padding: 2px 0px;
|
2013-11-11 20:10:28 +01:00
|
|
|
}
|
2013-11-12 18:24:19 +01:00
|
|
|
.sidebox-favorites .ui-menu .ui-menu-item a:hover {
|
2013-11-25 04:19:58 +01:00
|
|
|
text-decoration: underline;
|
2013-11-11 20:10:28 +01:00
|
|
|
}
|
2013-11-25 04:19:58 +01:00
|
|
|
.sidebox-favorites .favorites div.ui-icon-heart {
|
|
|
|
position: relative;
|
|
|
|
float: left;
|
|
|
|
display: inline-block;
|
|
|
|
margin: -3px 1px 0px 1px;
|
2013-11-11 20:10:28 +01:00
|
|
|
}
|
2013-11-25 04:19:58 +01:00
|
|
|
.sidebox-favorites .favorites div.ui-icon-trash {
|
|
|
|
margin-top: -5px;
|
|
|
|
margin-right: 2px;
|
2013-03-05 00:33:58 +01:00
|
|
|
}
|
2015-11-11 17:00:37 +01:00
|
|
|
ul[id$='favorites_popup_state'] span.filter_value {
|
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2011-08-25 15:35:53 +02:00
|
|
|
.nextmatch_sortheader {
|
2013-11-25 04:19:58 +01:00
|
|
|
color: #003075;
|
|
|
|
cursor: pointer;
|
|
|
|
padding-right: 10px;
|
|
|
|
margin-right: 10px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: right center;
|
|
|
|
}
|
2011-08-25 15:35:53 +02:00
|
|
|
.nextmatch_sortheader:hover {
|
2013-11-25 04:19:58 +01:00
|
|
|
text-decoration: underline;
|
2011-08-25 15:35:53 +02:00
|
|
|
}
|
|
|
|
.nextmatch_sortheader.asc {
|
2013-11-25 04:19:58 +01:00
|
|
|
font-weight: bold;
|
|
|
|
background-image: url(images/up.png);
|
2011-08-25 15:35:53 +02:00
|
|
|
}
|
|
|
|
.nextmatch_sortheader.desc {
|
2013-11-25 04:19:58 +01:00
|
|
|
font-weight: bold;
|
|
|
|
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 {
|
2013-11-25 04:19:58 +01:00
|
|
|
border-right: 1px dotted gray;
|
|
|
|
min-height: 100%;
|
|
|
|
background-color: gray;
|
|
|
|
opacity: 0.5;
|
2011-09-30 00:57:42 +02:00
|
|
|
}
|
2014-04-08 22:26:06 +02:00
|
|
|
|
|
|
|
@media print {
|
|
|
|
/** Keeps rows from breaking */
|
|
|
|
.et2_nextmatch .egwGridView_grid > tbody > tr {
|
|
|
|
display: block;
|
|
|
|
}
|
2015-01-27 17:26:59 +01:00
|
|
|
.et2_nextmatch .egwGridView_spacer {
|
|
|
|
display:none;
|
|
|
|
}
|
2015-02-10 00:33:03 +01:00
|
|
|
.et2_nextmatch .nextmatch_header {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
.egwGridView_outer > thead {
|
|
|
|
border-bottom: 1px solid;
|
|
|
|
}
|
|
|
|
.egwGridView_outer > thead select {
|
|
|
|
appearance: none;
|
|
|
|
-webkit-appearance: none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
}
|
2014-04-08 22:26:06 +02:00
|
|
|
.egwGridView_grid > tbody > tr {
|
|
|
|
page-break-inside: avoid;
|
|
|
|
-webkit-region-break-inside: avoid;
|
|
|
|
}
|
|
|
|
.et2_nextmatch > div {
|
2015-02-05 22:52:29 +01:00
|
|
|
width: auto !important;
|
2015-01-27 17:26:59 +01:00
|
|
|
height: auto !important;
|
2014-04-08 22:26:06 +02:00
|
|
|
}
|
2015-02-05 22:52:29 +01:00
|
|
|
.et2_nextmatch table.egwGridView_outer thead tr th div.innerContainer {
|
|
|
|
max-height: inherit;
|
|
|
|
}
|
2014-09-25 13:12:04 +02:00
|
|
|
#cke_1_top.cke_top {
|
|
|
|
display: none;
|
|
|
|
border:none;
|
|
|
|
}
|
2015-02-11 00:03:35 +01:00
|
|
|
.et2_split, .et2_split > .splitter-pane {
|
|
|
|
height: auto !important;
|
|
|
|
width: auto !important;
|
|
|
|
}
|
2014-04-08 22:26:06 +02:00
|
|
|
}
|
2013-04-24 21:53:51 +02:00
|
|
|
/**
|
2014-01-09 13:26:34 +01:00
|
|
|
* Grid / nextmatch Hierarchy
|
2013-04-24 21:53:51 +02:00
|
|
|
*/
|
|
|
|
/* Make sure arrow & cell content don't overlap */
|
2014-09-10 01:14:42 +02:00
|
|
|
.et2_nextmatch .egwGridView_grid span.arrow {
|
2013-11-25 04:19:58 +01:00
|
|
|
margin: 6px -12px 4px 4px;
|
|
|
|
float: left;
|
|
|
|
position: relative;
|
2013-04-24 21:53:51 +02:00
|
|
|
}
|
|
|
|
/* Indent the sub-grid */
|
|
|
|
.egwGridView_grid .egwGridView_grid {
|
2013-11-25 04:19:58 +01:00
|
|
|
margin-left: 10px;
|
|
|
|
border-left: 1px solid silver;
|
2013-04-24 21:53:51 +02:00
|
|
|
}
|
2014-01-08 17:10:07 +01:00
|
|
|
|
|
|
|
/** Initial height used for calculating average heights, before content is loaded */
|
|
|
|
.egwGridView_grid > tbody > tr > td > .loading{
|
|
|
|
min-height: 1.6em;
|
|
|
|
}
|
2014-01-09 13:26:34 +01:00
|
|
|
/**
|
2013-04-24 21:53:51 +02:00
|
|
|
* This class' margin-right is used to line up columns at each indent level
|
|
|
|
* Classes level_# are created programmatically with margin-right * depth
|
|
|
|
* Margin-right = -(indent + border)
|
|
|
|
*/
|
2013-11-25 04:19:58 +01:00
|
|
|
.indentation {
|
|
|
|
margin-right: -11px;
|
|
|
|
}
|
2013-04-24 21:53:51 +02:00
|
|
|
/* End of hierarchy */
|
2014-12-31 18:55:06 +01:00
|
|
|
|
|
|
|
/* Nextmatch tiled view */
|
|
|
|
.et2_nextmatch .egwGridView_grid tr.tile {
|
|
|
|
display: inline-block;
|
|
|
|
width: 240px;
|
|
|
|
float: left;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
.et2_nextmatch .egwGridView_grid tr.tile > td > div > *:first-child {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2013-08-27 19:26:02 +02:00
|
|
|
/* Mangled link-to widget inside a nextmatch - used for DnD uploads */
|
|
|
|
.et2_nextmatch * .et2_link_to {
|
2013-11-25 04:19:58 +01:00
|
|
|
position: fixed;
|
|
|
|
left: 0px;
|
|
|
|
background-color: white;
|
|
|
|
border: 1px gray;
|
|
|
|
padding: 5px;
|
2013-08-27 19:26:02 +02:00
|
|
|
}
|
2011-09-08 22:44:53 +02:00
|
|
|
.et2_clickable {
|
2013-11-25 04:19:58 +01:00
|
|
|
cursor: pointer;
|
2011-09-09 10:29:31 +02:00
|
|
|
}
|
2013-05-22 22:13:12 +02:00
|
|
|
/**
|
|
|
|
* et2_portlet
|
|
|
|
*/
|
|
|
|
.et2_portlet .ui-widget-header {
|
2013-11-25 04:19:58 +01:00
|
|
|
margin: 0em;
|
|
|
|
padding-bottom: 4px;
|
|
|
|
padding-left: 0.2em;
|
2013-05-22 22:13:12 +02:00
|
|
|
}
|
|
|
|
.et2_portlet .ui-widget-header span.ui-icon {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
2013-05-22 22:13:12 +02:00
|
|
|
}
|
|
|
|
.et2_portlet .ui-widget-header span.ui-icon.ui-icon-gear {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
2013-05-22 22:13:12 +02:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* et2_progress
|
|
|
|
*/
|
2011-09-09 10:29:31 +02:00
|
|
|
div.et2_progress {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: inline-block;
|
|
|
|
border: 1px solid black;
|
|
|
|
background-color: white;
|
|
|
|
width: 30px;
|
|
|
|
padding: 1px;
|
|
|
|
margin: 2px;
|
|
|
|
text-align: left;
|
2011-09-09 10:29:31 +02:00
|
|
|
}
|
|
|
|
div.et2_progress > div {
|
2013-11-25 04:19:58 +01:00
|
|
|
background-color: #D00000;
|
2014-01-16 11:44:04 +01:00
|
|
|
height: 100%;
|
|
|
|
min-height: 5px;
|
2011-09-09 13:44:44 +02:00
|
|
|
}
|
2014-09-09 19:39:33 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* For resizing (nextmatch columns)
|
|
|
|
*/
|
|
|
|
table.egwGridView_outer.egwResizing .fixedWidth {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2016-03-09 18:29:29 +01:00
|
|
|
table.egwGridView_outer thead tr th.noResize:hover {
|
|
|
|
background-image: none;
|
|
|
|
background-color: inherit;
|
|
|
|
}
|
2011-10-03 15:42:56 +02:00
|
|
|
.egwResizeOverlay {
|
2013-11-25 04:19:58 +01:00
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
z-index: 99999;
|
|
|
|
cursor: ew-resize;
|
|
|
|
}
|
2011-10-03 15:42:56 +02:00
|
|
|
.egwResizeHelper {
|
2013-11-25 04:19:58 +01:00
|
|
|
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 {
|
2013-11-25 04:19:58 +01:00
|
|
|
margin-left: 2.5em;
|
2012-03-30 16:20:27 +02:00
|
|
|
}
|
|
|
|
.et2_nextmatch .subentry.level_2 div.et2_vbox {
|
2013-11-25 04:19:58 +01:00
|
|
|
margin-left: 5em;
|
2012-03-30 16:20:27 +02:00
|
|
|
}
|
|
|
|
.et2_nextmatch .subentry.level_3 div.et2_vbox {
|
2013-11-25 04:19:58 +01:00
|
|
|
margin-left: 7.5em;
|
2012-03-30 16:20:27 +02:00
|
|
|
}
|
2012-07-14 17:38:02 +02:00
|
|
|
/**
|
|
|
|
* itempicker widget
|
|
|
|
*/
|
|
|
|
.et2_itempicker {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 256px;
|
2012-07-14 17:38:02 +02:00
|
|
|
}
|
|
|
|
.et2_itempicker_left {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
width: 50px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2012-07-14 17:38:02 +02:00
|
|
|
.et2_itempicker_right {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
margin: 0;
|
|
|
|
top: 0;
|
|
|
|
left: 49px;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
border: 1px solid #b6b6b6;
|
|
|
|
background-color: #f9f9f9;
|
|
|
|
}
|
2012-07-21 12:50:04 +02:00
|
|
|
.et2_itempicker_right_container {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2012-07-21 12:50:04 +02:00
|
|
|
}
|
2012-07-14 17:38:02 +02:00
|
|
|
.et2_itempicker_app_select {
|
2013-11-25 04:19:58 +01:00
|
|
|
list-style-type: none;
|
|
|
|
padding: 0;
|
2012-07-14 17:38:02 +02:00
|
|
|
}
|
|
|
|
.et2_itempicker_app_select li {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 6px;
|
2012-07-14 17:38:02 +02:00
|
|
|
}
|
|
|
|
.et2_itempicker_app_select li.selected {
|
2013-11-25 04:19:58 +01:00
|
|
|
border: 1px solid #b6b6b6;
|
|
|
|
border-right: 1px solid transparent;
|
|
|
|
background-color: #f9f9f9;
|
|
|
|
border-top-left-radius: 4px;
|
|
|
|
border-bottom-left-radius: 4px;
|
2012-07-14 17:38:02 +02:00
|
|
|
}
|
2012-07-21 12:50:04 +02:00
|
|
|
.et2_itempicker_search {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: inline-block;
|
|
|
|
margin: 1em;
|
|
|
|
margin-bottom: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
width: 67%;
|
|
|
|
padding: 0.2em;
|
|
|
|
}
|
2012-08-14 13:52:36 +02:00
|
|
|
.et2_itempicker_clear {
|
2013-11-25 04:19:58 +01:00
|
|
|
position: relative;
|
|
|
|
top: 3px;
|
|
|
|
left: -20px;
|
2012-08-14 13:52:36 +02:00
|
|
|
}
|
|
|
|
.et2_itempicker_button_action {
|
2013-11-25 04:19:58 +01:00
|
|
|
position: absolute;
|
|
|
|
margin: 1em;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2012-08-14 13:52:36 +02:00
|
|
|
}
|
2012-07-21 12:50:04 +02:00
|
|
|
.et2_itempicker_itemlist {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: block;
|
|
|
|
border: 1px solid #b6b6b6;
|
|
|
|
margin: 1em;
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding: 0;
|
|
|
|
height: 67%;
|
|
|
|
background-color: #ffffff;
|
|
|
|
overflow: auto;
|
|
|
|
}
|
2012-07-21 12:50:04 +02:00
|
|
|
.et2_itempicker_itemlist ul {
|
2013-11-25 04:19:58 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
2012-07-21 12:50:04 +02:00
|
|
|
}
|
|
|
|
.et2_itempicker_itemlist li {
|
2013-11-25 04:19:58 +01:00
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 4px;
|
|
|
|
color: #284d8a;
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
2012-07-21 12:50:04 +02:00
|
|
|
.et2_itempicker_itemlist li.row_on {
|
2013-11-25 04:19:58 +01:00
|
|
|
background-color: #f2f9fe;
|
2012-07-21 12:50:04 +02:00
|
|
|
}
|
2012-07-22 20:37:17 +02:00
|
|
|
.et2_itempicker_itemlist li.selected {
|
2013-11-25 04:19:58 +01:00
|
|
|
color: #ffffff;
|
|
|
|
background-color: #3875d7;
|
2012-07-22 20:37:17 +02:00
|
|
|
}
|
2013-04-23 18:51:00 +02:00
|
|
|
/**
|
|
|
|
* et2_dialog: EGroupware left aligns all buttons, but [Delete]
|
|
|
|
*/
|
|
|
|
div.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
|
2013-11-25 04:19:58 +01:00
|
|
|
float: left;
|
2013-04-23 18:51:00 +02:00
|
|
|
}
|
|
|
|
div.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset button {
|
2013-11-25 04:19:58 +01:00
|
|
|
float: left;
|
|
|
|
margin-right: 1em;
|
2016-03-30 16:45:44 +02:00
|
|
|
background-position: 3px;
|
|
|
|
padding-left: 15px;
|
2013-10-03 17:27:00 +02:00
|
|
|
}
|
2013-04-23 18:51:00 +02:00
|
|
|
.et2_prompt #message {
|
2013-11-25 04:19:58 +01:00
|
|
|
white-space: pre-wrap;
|
|
|
|
padding-bottom: 10px;
|
2013-04-23 18:51:00 +02:00
|
|
|
}
|
|
|
|
.et2_prompt #value {
|
2013-11-25 04:19:58 +01:00
|
|
|
width: 100%;
|
2013-10-04 09:29:38 +02:00
|
|
|
}
|
2014-03-04 00:24:05 +01:00
|
|
|
.long_task .message {
|
|
|
|
height: inherit;
|
|
|
|
}
|
2016-03-31 19:07:05 +02:00
|
|
|
div.ui-dialog div.ui-dialog-content > div[id] {
|
2016-03-30 15:38:22 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
2013-07-20 15:53:35 +02:00
|
|
|
/**
|
2014-01-21 14:52:32 +01:00
|
|
|
* et2_toolbar
|
|
|
|
*/
|
2014-02-06 13:18:05 +01:00
|
|
|
.et2_toolbar {
|
2014-03-06 19:34:54 +01:00
|
|
|
border: none;
|
2014-02-06 13:18:05 +01:00
|
|
|
background: none;
|
2014-02-06 15:05:28 +01:00
|
|
|
margin: 0 !important;
|
|
|
|
padding: 0 !important;
|
|
|
|
}
|
2016-02-25 14:23:22 +01:00
|
|
|
.et2_toolbar .et2_toolbar_actionlist button.et2_button_with_image, .nextmatch_header_row .et2_button {
|
2016-01-11 20:38:03 +01:00
|
|
|
width: 24px;
|
|
|
|
background-position: center;
|
2016-01-12 11:22:40 +01:00
|
|
|
background-size: 16px 16px;
|
2016-01-11 20:38:03 +01:00
|
|
|
padding-left: 0;
|
2016-02-25 22:35:27 +01:00
|
|
|
background-color: #fafafa;
|
2016-01-12 11:22:40 +01:00
|
|
|
}
|
2016-02-25 14:23:22 +01:00
|
|
|
.et2_toolbar .et2_toolbar_actionlist button.et2_button_with_image.et2_toolbar_hasCaption, .nextmatch_header_row .et2_button_text {
|
2016-01-12 11:22:40 +01:00
|
|
|
width:auto;
|
|
|
|
background-position: 6px center;
|
2016-02-25 14:23:22 +01:00
|
|
|
padding-left: 26px;
|
|
|
|
padding-right: 5px;
|
|
|
|
color: #5B5B5B;
|
2016-01-11 20:38:03 +01:00
|
|
|
}
|
2016-01-26 14:43:00 +01:00
|
|
|
.et2_toolbar .et2_toolbar_actionlist button.et2_button_with_image.et2_toolbar_onlyCaption {
|
|
|
|
vertical-align: top;
|
|
|
|
width:auto;
|
|
|
|
padding-left: 3px;
|
2016-03-29 12:33:10 +02:00
|
|
|
background-image: none;
|
2016-01-26 14:43:00 +01:00
|
|
|
}
|
2016-02-25 16:07:35 +01:00
|
|
|
.et2_toolbar button, .nextmatch_header_row button, .et2_toolbar div.et2_progress, .nextmatch_header_row div.et2_progress {
|
2016-02-16 18:18:02 +01:00
|
|
|
margin: 1px 4px 1px 0;
|
|
|
|
height: 24px;
|
2016-02-25 16:07:35 +01:00
|
|
|
border-radius: 3px;
|
|
|
|
background-color: #fafafa;
|
|
|
|
border: 1px solid silver;
|
|
|
|
}
|
|
|
|
.et2_toolbar div.et2_progress, .nextmatch_header_row div.et2_progress {
|
|
|
|
padding: 0;
|
|
|
|
height: 22px;
|
|
|
|
}
|
|
|
|
.et2_toolbar .et2_progress > div, .nextmatch_header_row .et2_progress > div {
|
|
|
|
margin: 2px;
|
|
|
|
border-radius: 3px;
|
|
|
|
height: 18px;
|
2016-02-16 18:18:02 +01:00
|
|
|
}
|
2016-03-04 18:00:20 +01:00
|
|
|
.et2_toolbar div.chzn-container-multi, .nextmatch_header_row div.chzn-container-multi {
|
|
|
|
margin-right: 4px;
|
|
|
|
}
|
|
|
|
.et2_toolbar .chzn-container-multi ul.chzn-choices, .nextmatch_header_row .chzn-container-multi ul.chzn-choices {
|
|
|
|
border-radius: 3px;
|
|
|
|
border: 1px solid silver;
|
|
|
|
}
|
|
|
|
.et2_toolbar .chzn-container-multi li.search-choice, .nextmatch_header_row .chzn-container-multi li.search-choice {
|
|
|
|
margin: 1px;
|
|
|
|
}
|
|
|
|
.et2_toolbar .chzn-container-multi li.search-field input, .nextmatch_header_row .chzn-container-multi li.search-field input {
|
|
|
|
padding: 3px;
|
|
|
|
}
|
2016-03-08 13:46:27 +01:00
|
|
|
/**
|
|
|
|
* Fileupload in toolbar or NM header
|
|
|
|
*/
|
|
|
|
.et2_toolbar div.et2_file, .nextmatch_header_row div.et2_file {
|
|
|
|
width: 145px;
|
|
|
|
margin-top: 1px;
|
|
|
|
padding-right: 4px;
|
|
|
|
}
|
|
|
|
.et2_toolbar div.et2_file span, .nextmatch_header_row div.et2_file span,
|
|
|
|
.et2_toolbar div.et2_file input, .nextmatch_header_row div.et2_file input {
|
|
|
|
height: 16px;
|
|
|
|
top: 0;
|
|
|
|
margin: 0;
|
|
|
|
border-radius: 3px;
|
|
|
|
background-color: #fafafa;
|
|
|
|
border: 1px solid silver;
|
|
|
|
text-indent: 0;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Textbox in toolbar or NM header
|
|
|
|
*/
|
|
|
|
.et2_toolbar input.et2_textbox, .nextmatch_header_row input.et2_textbox {
|
|
|
|
height: 18px;
|
|
|
|
margin: 1px 4px 1px 0;
|
|
|
|
border-radius: 3px;
|
|
|
|
background-color: #fafafa;
|
|
|
|
border: 1px solid silver;
|
|
|
|
padding: 2px 5px 2px 2px;
|
|
|
|
}
|
2016-02-17 20:56:54 +01:00
|
|
|
/**
|
|
|
|
* Daterange selection in NM header
|
|
|
|
*/
|
|
|
|
.nextmatch_header_row span.et2_date[name$=date] {
|
|
|
|
min-width: 14ex;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.nextmatch_header_row span.et2_date[name$=date] > input.et2_date {
|
|
|
|
margin: 1px 4px 1px 0;
|
|
|
|
height: 22px;
|
|
|
|
min-width: 14ex;
|
|
|
|
padding: 0;
|
|
|
|
background-color: #fafafa;
|
|
|
|
border: 1px solid silver;
|
|
|
|
border-radius: 3px;
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
.nextmatch_header_row > div {
|
2016-02-16 20:42:31 +01:00
|
|
|
float: left;
|
|
|
|
}
|
2016-02-16 23:27:51 +01:00
|
|
|
.nextmatch_header_row:after {
|
|
|
|
clear: both;
|
|
|
|
display: block;
|
|
|
|
content: "";
|
|
|
|
}
|
2016-02-16 18:18:02 +01:00
|
|
|
.et2_toolbar select, .nextmatch_header_row select {
|
2014-03-04 09:45:20 +01:00
|
|
|
height: 24px;
|
2016-02-16 18:18:02 +01:00
|
|
|
margin: 1px 4px 1px 0;
|
|
|
|
background-color: #fafafa;
|
|
|
|
border: 1px solid silver;
|
|
|
|
border-radius: 3px;
|
2016-02-17 14:23:27 +01:00
|
|
|
padding-left: 5px;
|
2014-02-06 13:18:05 +01:00
|
|
|
}
|
2016-02-16 18:18:02 +01:00
|
|
|
.et2_toolbar button.toolbar_toggled, .et2_searchbox button.et2_button.toolbar_toggled {
|
2016-02-17 20:56:54 +01:00
|
|
|
background-color: lightgray;
|
2015-01-07 18:08:21 +01:00
|
|
|
box-shadow: inset 1px 1px 1px 1px gray !important;
|
2015-01-05 15:37:26 +01:00
|
|
|
}
|
2014-02-19 19:14:41 +01:00
|
|
|
.et2_toolbar-dropdown{
|
|
|
|
margin: 1px;
|
|
|
|
display: inline-block;
|
|
|
|
direction: ltr;
|
|
|
|
background: #E0E0E0 !important;
|
|
|
|
background-color: #E0E0E0 !important;
|
|
|
|
border: 1px solid silver;
|
|
|
|
text-align: left;
|
|
|
|
font-weight: normal !important;
|
2014-02-20 12:03:34 +01:00
|
|
|
font-size: 9pt !important;
|
|
|
|
vertical-align: bottom !important;
|
|
|
|
padding: 1px !important;
|
|
|
|
}
|
|
|
|
.et2_toolbar-dropdown > div{
|
|
|
|
direction: ltr;
|
|
|
|
display: inline;
|
|
|
|
background: #E0E0E0 !important;
|
|
|
|
background-color: #E0E0E0 !important;
|
|
|
|
vertical-align: bottom !important;
|
|
|
|
padding: 0 !important;
|
|
|
|
margin: 0 !important;
|
|
|
|
}
|
|
|
|
.et2_toolbar-dropdown img{
|
|
|
|
padding-left: 7px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 5% center;
|
|
|
|
background-size: 16px;
|
2014-02-19 19:14:41 +01:00
|
|
|
}
|
|
|
|
.et2_toolbar-dropdown button:hover{
|
|
|
|
color: none !important;
|
|
|
|
border: none !important;
|
|
|
|
background-color: none !important;
|
2014-02-20 12:03:34 +01:00
|
|
|
vertical-align: bottom !important;
|
2014-02-19 19:14:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.et2_toolbar-dropdown button{
|
|
|
|
height: 100% !important;
|
|
|
|
border: none !important;
|
|
|
|
background: #E0E0E0 !important;
|
|
|
|
background-color: #E0E0E0 !important;
|
|
|
|
border-radius: 0 !important;
|
|
|
|
color:#101010 !important;
|
|
|
|
font-size: 9pt !important;
|
|
|
|
font-weight: normal !important;
|
2014-02-20 12:03:34 +01:00
|
|
|
vertical-align: bottom !important;
|
|
|
|
padding: 0 !important;
|
|
|
|
margin: 0 !important;
|
|
|
|
min-height: 19px;
|
2014-02-19 19:14:41 +01:00
|
|
|
}
|
|
|
|
.et2_toolbar-dropdown ul> li{
|
|
|
|
width: 100%
|
|
|
|
|
|
|
|
}
|
|
|
|
.et2_toolbar-dropdown-menulist button{
|
|
|
|
height: 100% !important;
|
|
|
|
border: none;
|
|
|
|
background: #E0E0E0 !important;
|
|
|
|
background-color: #E0E0E0 !important;
|
|
|
|
}
|
|
|
|
.et2_toolbar-dropdown-menulist button:nth-child(2){
|
|
|
|
float: right;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.et2_toolbar-dropdown ul{
|
2014-08-22 17:38:23 +02:00
|
|
|
z-index: 1000 !important;
|
2014-02-19 19:14:41 +01:00
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
.et2_toolbar-dropdown ul >li{
|
2014-03-04 09:45:20 +01:00
|
|
|
|
2014-02-19 19:14:41 +01:00
|
|
|
}
|
|
|
|
.et2_toolbar-dropdown-menulist ul{
|
|
|
|
position: relative !important;
|
|
|
|
}
|
2016-01-11 20:38:03 +01:00
|
|
|
.et2_toolbar div.ui-toolbar-menulist button.et2_button_with_image {
|
|
|
|
background-size: 16px 16px;
|
2016-01-12 11:22:40 +01:00
|
|
|
background-color: #fafafa;
|
|
|
|
}
|
|
|
|
.et2_toolbar div.ui-toolbar-menulist span.slideSwitch_container {
|
|
|
|
width:100%;
|
2016-01-11 20:38:03 +01:00
|
|
|
}
|
2014-02-07 10:49:35 +01:00
|
|
|
div.ui-toolbar-menulist{
|
2014-02-06 13:18:05 +01:00
|
|
|
position: absolute;
|
|
|
|
height: inherit !important;
|
|
|
|
z-index: 999 !important;
|
2014-02-07 14:13:24 +01:00
|
|
|
overflow: hidden !important;
|
2014-02-06 15:05:28 +01:00
|
|
|
border: solid black 1px;
|
2014-02-07 10:49:35 +01:00
|
|
|
padding: 0 !important;
|
|
|
|
margin-top: 3px !important;
|
2014-02-11 12:12:25 +01:00
|
|
|
min-width: 150px;
|
2016-01-11 20:38:03 +01:00
|
|
|
padding-top: 3px;
|
2014-02-07 10:49:35 +01:00
|
|
|
}
|
|
|
|
.ui-toolbar-menulist > h {
|
|
|
|
padding-bottom: 7px;
|
2014-02-11 16:31:48 +01:00
|
|
|
margin: 0;
|
2014-02-07 10:49:35 +01:00
|
|
|
}
|
|
|
|
.ui-toolbar-menulist > button {
|
2014-02-06 15:05:28 +01:00
|
|
|
margin: 0 !important;
|
|
|
|
text-align: left;
|
2014-02-07 10:49:35 +01:00
|
|
|
border-radius: 0 !important;
|
|
|
|
width: 100% !important;
|
|
|
|
white-space: nowrap;
|
2016-03-29 11:04:37 +02:00
|
|
|
display: block;
|
2014-02-06 13:18:05 +01:00
|
|
|
}
|
2014-02-19 19:14:41 +01:00
|
|
|
.ui-toolbar-menulist > div{
|
|
|
|
margin: 0 !important;
|
|
|
|
text-align: left;
|
|
|
|
border-radius: 0 !important;
|
|
|
|
width: 100% !important;
|
|
|
|
white-space: nowrap;
|
|
|
|
background-color: #E0E0E0 !important;
|
|
|
|
border: 1px solid silver;
|
|
|
|
}
|
2014-02-06 13:18:05 +01:00
|
|
|
.ui-toolbar-menulistHeader{
|
|
|
|
font-size: xx-small;
|
|
|
|
height:100%;
|
|
|
|
margin-top: 2px;
|
2014-02-06 15:05:28 +01:00
|
|
|
direction: ltr;
|
2014-02-06 13:18:05 +01:00
|
|
|
}
|
2016-01-11 20:38:03 +01:00
|
|
|
.et2_toolbar_more{
|
2014-02-06 13:18:05 +01:00
|
|
|
float:right;
|
|
|
|
direction: rtl;
|
2016-01-11 20:38:03 +01:00
|
|
|
padding-bottom: 3px;
|
2014-02-06 13:18:05 +01:00
|
|
|
}
|
2016-01-11 20:38:03 +01:00
|
|
|
div.et2_toolbar_more .ui-accordion-header-active {
|
2015-02-05 12:52:27 +01:00
|
|
|
font-weight: normal;
|
|
|
|
color:black;
|
|
|
|
}
|
2016-01-11 20:38:03 +01:00
|
|
|
div.et2_toolbar_more h.ui-accordion-header {
|
|
|
|
padding: 4px 14px 3px 25px !important;
|
2015-02-05 12:52:27 +01:00
|
|
|
margin:1px;
|
|
|
|
}
|
2014-02-06 13:18:05 +01:00
|
|
|
.et2_toolbar_actionlist{
|
|
|
|
float:left;
|
2014-09-25 13:12:04 +02:00
|
|
|
height:24px;
|
2014-10-22 10:50:10 +02:00
|
|
|
white-space: nowrap;
|
2014-09-25 13:12:04 +02:00
|
|
|
}
|
|
|
|
.et2_toolbarDropArea{
|
|
|
|
border: 1px dashed lightgray;
|
2014-02-07 17:12:46 +01:00
|
|
|
}
|
2014-03-28 08:55:19 +01:00
|
|
|
.et2_label > input.et2_checkbox {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
2015-11-18 16:42:32 +01:00
|
|
|
|
|
|
|
/*slide switch representing checkbox*/
|
|
|
|
span.et2_checkbox_slideSwitch {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
2016-03-29 16:43:36 +02:00
|
|
|
border: 1px solid silver;
|
2015-11-18 16:42:32 +01:00
|
|
|
}
|
|
|
|
span.et2_checkbox_slideSwitch > span.slideSwitch_container {
|
2016-01-12 15:45:07 +01:00
|
|
|
height: 16px;
|
|
|
|
background-color: #FFF;
|
|
|
|
margin: 0px;
|
|
|
|
min-width: 44px;
|
2015-11-18 16:42:32 +01:00
|
|
|
display: block;
|
|
|
|
position: relative;
|
2016-01-12 15:45:07 +01:00
|
|
|
border-radius: 2px;
|
2016-01-12 14:21:45 +01:00
|
|
|
padding: 3px 0px 3px 0px;
|
2016-01-12 15:45:07 +01:00
|
|
|
font-size: 12px;
|
2015-11-18 16:42:32 +01:00
|
|
|
}
|
|
|
|
span.et2_checkbox_slideSwitch > span.slideSwitch_container > span:first-child {
|
|
|
|
width: 50%;
|
2016-01-12 15:45:07 +01:00
|
|
|
display: inline-block;
|
2015-11-19 17:04:04 +01:00
|
|
|
text-align: center;
|
2016-01-12 15:45:07 +01:00
|
|
|
text-align: -webkit-center;
|
2015-11-19 16:39:39 +01:00
|
|
|
text-align: -moz-center;
|
2015-11-18 16:42:32 +01:00
|
|
|
position: absolute;
|
|
|
|
left:0;
|
2016-01-28 19:17:40 +01:00
|
|
|
|
2015-11-18 16:42:32 +01:00
|
|
|
font-weight: bold;
|
2016-01-11 20:38:03 +01:00
|
|
|
color:#C0C0C0;
|
2016-03-29 16:43:36 +02:00
|
|
|
top: 4px;
|
2015-11-18 16:42:32 +01:00
|
|
|
}
|
|
|
|
span.et2_checkbox_slideSwitch.switchOn > span.slideSwitch_container > span:first-child {
|
2016-01-11 20:38:03 +01:00
|
|
|
color:#FAFAFA;
|
2016-01-20 15:09:51 +01:00
|
|
|
z-index: 1;
|
2015-11-18 16:42:32 +01:00
|
|
|
}
|
|
|
|
span.et2_checkbox_slideSwitch.switchOn > span.slideSwitch_container> span:nth-child(2) {
|
2016-01-11 20:38:03 +01:00
|
|
|
color:#C0C0C0;
|
2016-01-20 15:09:51 +01:00
|
|
|
z-index: 0;
|
2015-11-18 16:42:32 +01:00
|
|
|
}
|
|
|
|
span.et2_checkbox_slideSwitch > span.slideSwitch_container> span:nth-child(2) {
|
|
|
|
width: 50%;
|
2015-11-19 17:04:04 +01:00
|
|
|
display: inline-block;
|
|
|
|
text-align: center;
|
2015-11-18 16:42:32 +01:00
|
|
|
text-align: -webkit-center;
|
2015-11-19 16:39:39 +01:00
|
|
|
text-align: -moz-center;
|
2015-11-18 16:42:32 +01:00
|
|
|
position: absolute;
|
2016-01-20 15:09:51 +01:00
|
|
|
z-index:1;
|
2015-11-18 16:42:32 +01:00
|
|
|
left:50%;
|
|
|
|
font-weight: bold;
|
2016-01-11 20:38:03 +01:00
|
|
|
color:#FAFAFA;
|
2016-03-29 16:43:36 +02:00
|
|
|
top:4px;
|
2015-11-18 16:42:32 +01:00
|
|
|
}
|
|
|
|
span.et2_checkbox_slideSwitch > span.slideSwitch_container a {
|
|
|
|
position: absolute;
|
2016-01-11 20:38:03 +01:00
|
|
|
right: 0px;
|
|
|
|
top: 0px;
|
2016-01-20 15:09:51 +01:00
|
|
|
z-index: 0;
|
2015-11-18 16:42:32 +01:00
|
|
|
display: block;
|
2016-01-11 20:38:03 +01:00
|
|
|
width: 50%;
|
2016-01-12 15:45:07 +01:00
|
|
|
height: 100%;
|
2015-11-18 16:42:32 +01:00
|
|
|
padding-bottom: 0px;
|
2016-01-11 20:38:03 +01:00
|
|
|
background-color: #7B7B7B;
|
2015-11-18 16:42:32 +01:00
|
|
|
border-radius: 3px;
|
|
|
|
-webkit-transition: all 0.5s ease-out;
|
|
|
|
-moz-transition: all 0.5s ease-out;
|
|
|
|
transition: all 0.5s ease-out;
|
|
|
|
}
|
|
|
|
span.et2_checkbox_slideSwitch > input {
|
|
|
|
opacity: 0;
|
2016-01-12 15:45:07 +01:00
|
|
|
position: absolute;
|
|
|
|
z-index: 7;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2015-11-18 16:42:32 +01:00
|
|
|
}
|
|
|
|
span.et2_checkbox_slideSwitch.switchOn > span.slideSwitch_container a {
|
|
|
|
right:50%;
|
|
|
|
}
|
2016-01-09 01:54:02 +01:00
|
|
|
/* Slide switch in a toolbar */
|
|
|
|
.et2_toolbar_actionlist span.et2_checkbox_slideSwitch {
|
|
|
|
vertical-align: bottom;
|
2016-01-12 15:45:07 +01:00
|
|
|
margin: 1px;
|
|
|
|
margin-right: 3px;
|
|
|
|
border-radius: 3px;
|
2016-01-09 01:54:02 +01:00
|
|
|
}
|
2016-01-11 20:38:03 +01:00
|
|
|
.et2_toolbar_more span.et2_checkbox_slideSwitch {
|
2016-01-09 01:54:02 +01:00
|
|
|
text-align: left;
|
|
|
|
color: black;
|
|
|
|
font-size: 11px;
|
|
|
|
font-weight: normal;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2016-01-11 20:38:03 +01:00
|
|
|
.et2_toolbar_more span.et2_checkbox_slideSwitch > span.slideSwitch_container {
|
2016-01-12 11:22:40 +01:00
|
|
|
width: 100%;
|
2016-01-09 01:54:02 +01:00
|
|
|
float: left;
|
|
|
|
}
|
2016-01-11 20:38:03 +01:00
|
|
|
.et2_toolbar_more span.et2_checkbox_slideSwitch > input {
|
2016-01-09 01:54:02 +01:00
|
|
|
display: none;
|
|
|
|
}
|
2015-11-18 16:42:32 +01:00
|
|
|
|
2014-07-01 18:04:01 +02:00
|
|
|
.et2_radiobox {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
2014-02-07 17:12:46 +01:00
|
|
|
|
2014-04-24 00:18:05 +02:00
|
|
|
.et2_gantt, .et2_gantt .gantt_container
|
2014-04-16 21:47:29 +02:00
|
|
|
{
|
|
|
|
width: 100%;
|
|
|
|
min-height: 300px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.et2_gantt .gantt_tree_icon
|
|
|
|
{
|
|
|
|
background-size: 18px;
|
|
|
|
}
|
2014-10-16 00:22:49 +02:00
|
|
|
.et2_gantt .gantt_side_content
|
|
|
|
{
|
|
|
|
overflow: visible;
|
|
|
|
}
|
2015-02-18 18:03:21 +01:00
|
|
|
/* Style the gantt grid (left side) allowing 2 lines */
|
|
|
|
.et2_gantt .gantt_grid_scale :not(.gantt_grid_head_add) {
|
|
|
|
white-space: normal;
|
|
|
|
line-height: 16px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
/* Column selector */
|
|
|
|
.et2_gantt .gantt_grid_scale .gantt_grid_head_add {
|
|
|
|
background-image: url(images/selectcols.png);
|
|
|
|
padding: 0px;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
.et2_gantt .gantt_grid_data .gantt_add {
|
|
|
|
display: none;
|
|
|
|
padding: 0px;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
/* Display inline, since there's only 1 line*/
|
|
|
|
.et2_gantt .gantt_grid_data li {
|
|
|
|
display: inline-block;
|
|
|
|
padding-right: 0.5ex;
|
|
|
|
}
|
2014-06-10 19:41:09 +02:00
|
|
|
.et2_gantt .gantt_task_progress
|
|
|
|
{
|
|
|
|
text-align: left;
|
|
|
|
color: white;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: clip;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
.et2_gantt .gantt_task_progress > span
|
|
|
|
{
|
|
|
|
font-weight: bold;
|
|
|
|
margin: 0 1ex;
|
|
|
|
}
|
|
|
|
.et2_gantt .weekend
|
|
|
|
{
|
|
|
|
background-color: #f4f7f4;
|
|
|
|
}
|
|
|
|
.et2_gantt .gantt_selected .weekend
|
|
|
|
{
|
|
|
|
background-color: #f7eb91;
|
|
|
|
}
|
2014-06-10 20:52:50 +02:00
|
|
|
.et2_gantt .gantt_task_link.invalid_constraint .gantt_line_wrapper div
|
|
|
|
{
|
|
|
|
background-color: red;
|
|
|
|
}
|
|
|
|
.et2_gantt .gantt_task_link.invalid_constraint .gantt_link_arrow_left
|
|
|
|
{
|
|
|
|
border-right-color: red;
|
|
|
|
}
|
|
|
|
.et2_gantt .gantt_task_link.invalid_constraint .gantt_link_arrow_right
|
|
|
|
{
|
|
|
|
border-left-color: red;
|
|
|
|
}
|
2014-10-16 00:22:49 +02:00
|
|
|
.et2_gantt .gantt_task_planned
|
|
|
|
{
|
2014-10-17 19:17:23 +02:00
|
|
|
height: 10px;
|
2014-10-16 00:22:49 +02:00
|
|
|
position: absolute;
|
|
|
|
opacity: 0.3;
|
|
|
|
border-style: outset;
|
|
|
|
border-width: 2px;
|
|
|
|
border-top: none;
|
|
|
|
border-bottom: none;
|
|
|
|
width: 2px;
|
|
|
|
}
|
|
|
|
.et2_gantt .gantt_task_planned:hover span {
|
|
|
|
display:inline;
|
|
|
|
}
|
|
|
|
.et2_gantt .gantt_task_planned span
|
|
|
|
{
|
|
|
|
z-index: 10;
|
|
|
|
display: none;
|
|
|
|
background: white;
|
|
|
|
position: relative;
|
|
|
|
top: 2em;
|
|
|
|
}
|
|
|
|
.et2_gantt .gantt_left .gantt_task_planned
|
|
|
|
{
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
.et2_gantt .gantt_right .gantt_task_planned
|
|
|
|
{
|
|
|
|
border-left: none;
|
2014-10-17 19:17:23 +02:00
|
|
|
top: 25px;
|
2014-10-16 00:22:49 +02:00
|
|
|
}
|
2014-06-10 19:41:09 +02:00
|
|
|
|
2014-02-07 17:12:46 +01:00
|
|
|
/**
|
|
|
|
* Do not wrap content of a single widget incl. a label or children of a hbox.
|
|
|
|
* Taking into eg. select-account widget rendered as ul and prefixed with a label
|
|
|
|
* and maintaining some space between widgets.
|
|
|
|
*/
|
|
|
|
.et2_nowrap{
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
ul.et2_nowrap, div.et2_nowrap{
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
.et2_nowrap > *{
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
|
|
|
.et2_nowrap > *:first-child{
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
.et2_nowrap > label > *{
|
|
|
|
padding-left: 5px;
|
|
|
|
}
|
2014-03-05 12:30:00 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Some general styles usable for all apps (and widgets)
|
|
|
|
*/
|
2014-03-21 17:27:09 +01:00
|
|
|
.et2_fullWidth, .et2_fullWidth input, .et2_fullWidth select,et2_fullWidth.et2_file
|
2014-03-11 13:28:03 +01:00
|
|
|
.et2_fullWidth textarea , .et2_fullWidth input.et2_link_entry {
|
2014-03-05 19:10:35 +01:00
|
|
|
width: 99%;
|
|
|
|
}
|
|
|
|
/* position icons behind input */
|
2014-03-12 19:57:07 +01:00
|
|
|
.et2_fullWidth, .et2_fullWidth span.et2_url_span {
|
2014-03-05 19:10:35 +01:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.et2_fullWidth a.et2_url {
|
|
|
|
position: absolute;
|
|
|
|
height: 16px;
|
|
|
|
right: -16px;
|
|
|
|
top: 8px;
|
2014-03-10 16:19:28 +01:00
|
|
|
}
|
|
|
|
|
2014-03-11 16:50:30 +01:00
|
|
|
.et2_fullWidth input.et2_date_duration {
|
|
|
|
float: left;
|
|
|
|
}
|
2014-03-10 16:19:28 +01:00
|
|
|
.et2_fullWidth select.et2_date_duration {
|
2015-01-09 16:01:36 +01:00
|
|
|
width: 70%;
|
2014-03-11 16:50:30 +01:00
|
|
|
float: right;
|
2014-03-10 16:19:28 +01:00
|
|
|
}
|
2014-09-29 18:29:17 +02:00
|
|
|
|
|
|
|
/*et2_image_widget*/
|
|
|
|
div.et2_image_tooltipPopup {
|
|
|
|
background: white;
|
|
|
|
color: black;
|
|
|
|
border: 1px solid gray;
|
|
|
|
padding: 0;
|
|
|
|
opacity: 1;
|
|
|
|
max-width: 600px;
|
|
|
|
max-height: 480px;
|
|
|
|
box-shadow: 5px 5px 11px gray;
|
|
|
|
overflow:auto;
|
|
|
|
}
|
|
|
|
|
2014-10-17 18:34:14 +02:00
|
|
|
/*egw_action_ddHelper*/
|
|
|
|
div.et2_egw_action_ddHelper {
|
2015-12-22 21:36:39 +01:00
|
|
|
z-index: 100;
|
2014-10-17 18:34:14 +02:00
|
|
|
}
|
2014-10-20 13:41:59 +02:00
|
|
|
/* The last div which shows Ctrl tip to user*/
|
2014-10-17 18:34:14 +02:00
|
|
|
div.et2_egw_action_ddHelper_tip {
|
|
|
|
position: relative;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
float: left;
|
|
|
|
background-color: rgba(0, 0, 0, 0.70);
|
|
|
|
box-shadow: 6px 6px 8px gray;
|
|
|
|
border: 1px solid black;
|
|
|
|
border-top: none;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
div.et2_egw_action_ddHelper table.et2_egw_action_ddHelper_row {
|
|
|
|
background-color: rgba(255, 194, 0, 0.70);
|
|
|
|
box-shadow: 6px 6px 8px gray;
|
|
|
|
border: 1px solid black;
|
|
|
|
}
|
|
|
|
table.et2_egw_action_ddHelper_row tr {
|
|
|
|
background: none;
|
|
|
|
max-height: 20px;
|
|
|
|
}
|
2014-10-20 13:41:59 +02:00
|
|
|
/* Apply to all displaied rows in order to get same result*/
|
2014-10-17 18:34:14 +02:00
|
|
|
table.et2_egw_action_ddHelper_row * {
|
|
|
|
white-space: nowrap !important;
|
2014-10-20 13:41:59 +02:00
|
|
|
max-height: 15px;
|
|
|
|
overflow:hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
max-width: 400px;
|
|
|
|
}
|
2014-10-20 16:07:38 +02:00
|
|
|
table.et2_egw_action_ddHelper_row img {
|
|
|
|
width: 15px !important;
|
|
|
|
height: 15px !important;
|
|
|
|
}
|
2014-10-20 13:41:59 +02:00
|
|
|
/* Last row of items which shows the number of more items*/
|
|
|
|
tr.et2_egw_action_ddHelper_moreRow{
|
2014-10-31 11:12:53 +01:00
|
|
|
|
2014-10-17 18:34:14 +02:00
|
|
|
}
|
2014-10-20 13:41:59 +02:00
|
|
|
/* The big total item counter*/
|
|
|
|
span.et2_egw_action_ddHelper_itemsCnt {
|
2014-10-17 18:34:14 +02:00
|
|
|
background: transparent;
|
|
|
|
position: absolute;
|
|
|
|
left: 20px;
|
|
|
|
top: 8%;
|
|
|
|
font-size: 367%;
|
|
|
|
color: rgba(255, 255, 255, 1);
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2015-01-21 00:58:38 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Etemplate exposé CSS
|
|
|
|
*/
|
|
|
|
/* Paginating with nextmatch */
|
|
|
|
.blueimp-gallery-controls > .indicator.paginating {
|
2015-01-21 12:10:17 +01:00
|
|
|
border-bottom: 2px solid rgba(255, 255, 255, 0.5);
|
|
|
|
border-top: 2px solid rgba(255, 255, 255, 0.5);
|
2015-01-21 00:58:38 +01:00
|
|
|
left: 0px;
|
|
|
|
right: auto;
|
|
|
|
white-space: nowrap;
|
2015-01-21 18:54:35 +01:00
|
|
|
bottom:0;
|
2015-01-21 12:10:17 +01:00
|
|
|
}
|
|
|
|
/*Carousel thumbnails*/
|
|
|
|
.blueimp-gallery>.indicator>li {
|
|
|
|
display: inline-block;
|
2015-01-28 18:45:10 +01:00
|
|
|
width: auto;
|
2015-01-21 18:54:35 +01:00
|
|
|
height: 100px;
|
2015-01-28 18:45:10 +01:00
|
|
|
margin: 0;
|
|
|
|
background: transparent;
|
2015-01-21 18:54:35 +01:00
|
|
|
opacity: 1;
|
2015-01-21 12:10:17 +01:00
|
|
|
cursor: pointer;
|
2015-01-28 18:45:10 +01:00
|
|
|
border-radius: 0;
|
2015-01-21 18:54:35 +01:00
|
|
|
border:0;
|
|
|
|
}
|
2015-01-28 18:45:10 +01:00
|
|
|
|
|
|
|
.blueimp-gallery > .indicator > li > img {
|
|
|
|
display: inline-block;
|
|
|
|
width: auto;
|
|
|
|
height: 100px;
|
|
|
|
margin:0;
|
|
|
|
cursor: pointer;
|
|
|
|
z-index: -1;
|
|
|
|
position: relative;
|
|
|
|
}
|
2015-02-06 10:37:47 +01:00
|
|
|
/*Make indicator visible all the time to be able accuratley estimate
|
|
|
|
current active slide position in thubmnal bar*/
|
|
|
|
.blueimp-gallery>.indicator {
|
|
|
|
opacity:0; /* Hide it through opacity*/
|
|
|
|
white-space: nowrap;
|
|
|
|
display: inline-block; /* Very important to keep gallery indicator always with display inline-block*/
|
|
|
|
}
|
2015-01-21 18:54:35 +01:00
|
|
|
/*Thumbnail border on hover*/
|
|
|
|
.blueimp-gallery>.indicator>li:hover {
|
2015-01-28 18:45:10 +01:00
|
|
|
-webkit-box-shadow: inset 0px 0px 0px 4px rgba(255, 255, 255, 1);
|
|
|
|
-moz-box-shadow: inset 0px 0px 0px 4px rgba(255, 255, 255, 1);
|
|
|
|
box-shadow: inset 0px 0px 0px 4px rgba(255, 255, 255, 1);
|
|
|
|
background: transparent;
|
2015-01-21 18:54:35 +01:00
|
|
|
}
|
|
|
|
/*Active thumbnail border*/
|
|
|
|
.blueimp-gallery>.indicator>.active
|
|
|
|
{
|
2015-01-28 18:45:10 +01:00
|
|
|
-webkit-box-shadow: inset 0px 0px 0px 4px #0c5da5;
|
|
|
|
-moz-box-shadow: inset 0px 0px 0px 4px #0c5da5;
|
|
|
|
box-shadow: inset 0px 0px 0px 4px #0c5da5;
|
|
|
|
background: transparent;
|
2015-01-21 12:10:17 +01:00
|
|
|
}
|
|
|
|
/*Slideshow Play/Pause button*/
|
2015-04-01 17:43:14 +02:00
|
|
|
body:last-child .blueimp-gallery>.play-pause, .blueimp-gallery>.play-pause{
|
|
|
|
right: 50px;
|
|
|
|
top: 20px;
|
|
|
|
background-size: 44px 24px;
|
|
|
|
width:24px;
|
|
|
|
height:24px;
|
2015-01-21 18:54:35 +01:00
|
|
|
}
|
2015-01-28 11:59:05 +01:00
|
|
|
/*fullScreen button*/
|
|
|
|
.blueimp-gallery>.fullscreen{
|
2015-04-01 17:43:14 +02:00
|
|
|
right: 85px;
|
|
|
|
top: 20px;
|
|
|
|
background-size: 24px;
|
|
|
|
width:24px;
|
|
|
|
height:24px;
|
|
|
|
}
|
|
|
|
/* download button*/
|
|
|
|
.blueimp-gallery>.download{
|
|
|
|
right: 120px;
|
|
|
|
top: 20px;
|
|
|
|
background: url(images/download.png) 0 0 no-repeat;
|
|
|
|
background-size: 24px;
|
|
|
|
height:24px;
|
|
|
|
width:24px;
|
|
|
|
}
|
|
|
|
/*close button*/
|
|
|
|
.blueimp-gallery>.close{
|
|
|
|
font-size: 40px;
|
2015-01-28 11:59:05 +01:00
|
|
|
}
|
2015-01-21 18:54:35 +01:00
|
|
|
/*Give room to Carousel indicator when the gallery controls is on*/
|
|
|
|
.blueimp-gallery-controls>.slides {
|
|
|
|
height:85%;
|
2015-01-30 11:56:15 +01:00
|
|
|
}
|
|
|
|
/*indicator bar with controls*/
|
|
|
|
.blueimp-gallery-controls>.indicator {
|
|
|
|
white-space: nowrap;
|
2015-02-06 10:37:47 +01:00
|
|
|
opacity:1; /* When the controls panel is on then we need to show back the indicators*/
|
2015-02-17 10:11:38 +01:00
|
|
|
}
|
2015-03-23 18:00:22 +01:00
|
|
|
/*Generic class for text overflow ellipsis*/
|
|
|
|
.et2_ellipsis {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
2015-10-13 17:07:06 +02:00
|
|
|
}
|
|
|
|
|
2016-01-19 12:42:11 +01:00
|
|
|
.et2_details {
|
|
|
|
width:100%;
|
|
|
|
color: black;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
.et2_details .et2_details_wrapper{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.et2_details .et2_details_toggle {
|
2016-01-21 11:13:57 +01:00
|
|
|
background-color: #636363;
|
2016-01-19 12:42:11 +01:00
|
|
|
border-radius: 3px;
|
|
|
|
float: right;
|
2016-01-21 11:13:57 +01:00
|
|
|
margin: 5px 8px 0px 0px;
|
2016-01-19 12:42:11 +01:00
|
|
|
}
|
|
|
|
.et2_details .et2_details_toggle:after{
|
|
|
|
content: "+";
|
|
|
|
color: white;
|
|
|
|
font-size: 12pt;
|
|
|
|
font-weight: bold;
|
2016-01-21 11:13:57 +01:00
|
|
|
padding: 5px;
|
2016-01-19 12:42:11 +01:00
|
|
|
}
|
|
|
|
.et2_details.et2_details_expanded .et2_details_wrapper{
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.et2_details.et2_details_expanded .et2_details_toggle:after {
|
|
|
|
content: "\2212";
|
|
|
|
}
|
2016-01-20 15:48:04 +01:00
|
|
|
.et2_details .et2_details_title {
|
|
|
|
cursor: pointer;
|
2016-01-21 11:13:57 +01:00
|
|
|
margin-top: 12px;
|
|
|
|
display: inline-block;
|
2016-01-20 15:48:04 +01:00
|
|
|
}
|
2016-01-19 12:42:11 +01:00
|
|
|
.et2_details.et2_details_expanded .et2_details_title {
|
|
|
|
display: none;
|
2016-01-22 17:22:05 +01:00
|
|
|
}
|
|
|
|
td.avatar {
|
|
|
|
border:none;
|
|
|
|
}
|
|
|
|
.avatar {
|
|
|
|
border: 1px solid silver;
|
|
|
|
border-radius: 50%;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
2016-03-21 10:27:41 +01:00
|
|
|
background-image: url(images/photo.png);
|
2016-01-22 17:22:05 +01:00
|
|
|
background-size: 35px 35px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
2016-01-28 19:17:40 +01:00
|
|
|
|
2016-01-22 17:22:05 +01:00
|
|
|
bottom:25%;
|
|
|
|
top:25%;
|
|
|
|
}
|
|
|
|
.avatar img{
|
|
|
|
padding-top:0 !important;
|
|
|
|
width:50px;
|
2016-01-28 19:17:40 +01:00
|
|
|
}
|
2016-02-15 19:38:24 +01:00
|
|
|
|
|
|
|
.et2_searchbox {
|
|
|
|
position: relative;
|
2016-02-26 11:46:00 +01:00
|
|
|
padding: 0;
|
|
|
|
z-index: 10;
|
2016-02-15 19:38:24 +01:00
|
|
|
}
|
2016-02-18 12:16:47 +01:00
|
|
|
.et2_searchbox .flex.overlay input {
|
2016-02-15 19:38:24 +01:00
|
|
|
position: absolute;
|
2016-02-18 12:16:47 +01:00
|
|
|
}
|
|
|
|
.et2_searchbox .flex input{
|
2016-02-15 19:38:24 +01:00
|
|
|
height: 18px;
|
2016-02-16 14:46:16 +01:00
|
|
|
width: 100%;
|
2016-02-29 15:30:47 +01:00
|
|
|
border-color: silver;
|
|
|
|
border-radius: 3px;
|
2016-03-10 15:14:04 +01:00
|
|
|
padding-right: 20px;
|
2016-02-18 18:41:53 +01:00
|
|
|
}
|
|
|
|
.et2_searchbox button.et2_button.toolbar_toggled {
|
|
|
|
background-color: rgba(70, 155, 221, 0.16);
|
|
|
|
box-shadow: inset 1px 1px 1px 0px #656769 !important;
|
2016-02-15 19:38:24 +01:00
|
|
|
}
|
|
|
|
.et2_searchbox span.ui-icon.clear{
|
|
|
|
display: inline-block;
|
2016-02-16 18:18:02 +01:00
|
|
|
background-position: -95px -126px;
|
|
|
|
position: absolute;
|
|
|
|
float: right;
|
2016-03-10 15:14:04 +01:00
|
|
|
right: 8px;
|
2016-02-16 18:18:02 +01:00
|
|
|
top: 3px;
|
2016-02-15 19:38:24 +01:00
|
|
|
}
|
2016-02-16 14:46:16 +01:00
|
|
|
.et2_searchbox .flex {
|
2016-02-29 15:30:47 +01:00
|
|
|
width: 120px;
|
2016-02-18 12:16:47 +01:00
|
|
|
position:relative;
|
2016-02-16 14:46:16 +01:00
|
|
|
display: inline-block;
|
2016-03-10 15:14:04 +01:00
|
|
|
padding-right: 28px;
|
2016-02-18 12:16:47 +01:00
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.et2_searchbox .flex.overlay {
|
2016-02-29 15:30:47 +01:00
|
|
|
width: 120px;
|
2016-02-18 12:16:47 +01:00
|
|
|
position: absolute;
|
2016-02-16 14:46:16 +01:00
|
|
|
}
|
2016-02-19 14:45:20 +01:00
|
|
|
.et2_searchbox .flex.overlay span.ui-icon.clear {
|
|
|
|
right: 0;
|
|
|
|
}
|
2016-02-15 19:38:24 +01:00
|
|
|
.et2_searchbox .hide {
|
|
|
|
display: none !important;
|
|
|
|
}
|