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
|
|
|
|
*/
|
2014-10-29 12:07:35 +01:00
|
|
|
@import url("../../../phpgwapi/js/jquery/magicsuggest/magicsuggest.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;
|
2014-04-15 14:58:39 +02:00
|
|
|
padding-right: 5px;
|
2011-08-16 18:46:22 +02:00
|
|
|
}
|
2014-07-01 17:56:09 +02:00
|
|
|
div.et2_hbox > *:empty {
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
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
|
|
|
}
|
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;
|
2011-08-13 18:51:35 +02:00
|
|
|
}
|
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;
|
|
|
|
}
|
2012-03-20 16:26:34 +01:00
|
|
|
/**
|
|
|
|
* Button widget - text only, and icon
|
|
|
|
*/
|
2012-03-08 18:10:26 +01:00
|
|
|
.et2_button {
|
2013-11-25 04:19:58 +01:00
|
|
|
text-align: center;
|
|
|
|
font-size: 9pt;
|
|
|
|
text-shadow: 1px 1px #E0E0E0;
|
|
|
|
}
|
|
|
|
.et2_button_text,
|
|
|
|
input[type=button] {
|
|
|
|
background-color: #E0E0E0;
|
|
|
|
background-image: url(images/gradient01.png);
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: repeat-x;
|
|
|
|
margin: 5px;
|
|
|
|
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 {
|
2013-11-25 04:19:58 +01:00
|
|
|
border: none;
|
|
|
|
background: transparent;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
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 {
|
|
|
|
color: #050505;
|
|
|
|
border: 1px solid gray;
|
|
|
|
background-color: #D0D0EE;
|
|
|
|
}
|
|
|
|
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 {
|
|
|
|
background-image: url(images/gradient02.png);
|
|
|
|
background-color: #D0D0E0;
|
|
|
|
}
|
|
|
|
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 {
|
|
|
|
border: 1px solid #2c3d6f;
|
|
|
|
color: #202d52;
|
|
|
|
outline: none;
|
|
|
|
}
|
2014-01-09 13:26:34 +01:00
|
|
|
button.et2_button_with_image {
|
|
|
|
padding-left: 20px;
|
|
|
|
background-repeat: no-repeat;
|
2014-03-06 19:34:54 +01:00
|
|
|
background-position: 4px center;
|
2014-01-09 13:26:34 +01:00
|
|
|
background-size: 16px;
|
2013-12-04 06:23:51 +01:00
|
|
|
}
|
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 {
|
|
|
|
padding-left: 6px !important;
|
|
|
|
background-position: left !important;
|
|
|
|
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
|
|
|
|
*/
|
2014-02-24 19:19:41 +01:00
|
|
|
.et2_selectbox_expand {
|
|
|
|
width: 16px;
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
.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;
|
|
|
|
text-indent: -26px;
|
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
|
|
|
}
|
|
|
|
.et2_selectbox .ui-multiselect-checkboxes img {
|
2013-11-25 04:19:58 +01:00
|
|
|
float: right;
|
|
|
|
height: 1.8em;
|
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 */
|
|
|
|
label.et2_label > .et2_selectbox, label.et2_label > .et2_textbox, label.et2_label > .et2_textbox_ro {
|
2014-03-19 13:07:09 +01:00
|
|
|
padding-left: 5px;
|
2012-04-17 01:08:28 +02:00
|
|
|
}
|
2014-07-01 18:18:01 +02:00
|
|
|
label.et2_label_empty > .et2_textbox_ro{
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
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{
|
|
|
|
width: 3em;
|
|
|
|
}
|
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;
|
|
|
|
}
|
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;
|
|
|
|
vertical-align: middle;
|
2014-04-30 13:02:13 +02:00
|
|
|
margin-left: 8px;
|
|
|
|
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;
|
|
|
|
background-image: url(../../../phpgwapi/templates/default/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;
|
2014-04-03 15:32:18 +02:00
|
|
|
text-indent: 18px;
|
|
|
|
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;
|
|
|
|
top: 4px;
|
|
|
|
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 {
|
2013-11-25 04:19:58 +01:00
|
|
|
content: ', ';
|
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;
|
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
|
|
|
}
|
2013-03-20 19:26:18 +01:00
|
|
|
.et2_link_list 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,
|
|
|
|
.et2_link_list .icon {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
display: inline-block;
|
2013-11-11 20:10:28 +01:00
|
|
|
}
|
2013-11-18 20:57:38 +01:00
|
|
|
.et2_link_list tr:hover div.delete {
|
2013-11-25 04:19:58 +01:00
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
.egw_tooltip {
|
|
|
|
position: fixed;
|
|
|
|
border: 1px solid #897f51;
|
|
|
|
padding: 3px;
|
|
|
|
background-color: #FDF9DB;
|
|
|
|
max-width: 300px;
|
|
|
|
color: black;
|
|
|
|
}
|
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
|
|
|
}
|
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 */
|
|
|
|
.et2_taglist > div {
|
|
|
|
min-height: 2em;
|
|
|
|
}
|
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
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
height: 15px;
|
|
|
|
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
|
|
|
}
|
2013-07-04 01:16:15 +02:00
|
|
|
/**
|
|
|
|
* Sortable grid
|
|
|
|
*/
|
2013-11-25 04:19:58 +01:00
|
|
|
table.et2_grid tbody.ui-sortable > tr:not(.th) {
|
|
|
|
cursor: ns-resize;
|
2013-07-04 01:16:15 +02:00
|
|
|
}
|
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
|
|
|
}
|
2011-10-12 21:06:52 +02:00
|
|
|
.nextmatch_header .header_count {
|
2013-11-25 04:19:58 +01:00
|
|
|
padding: 0px 20px;
|
2014-03-12 10:47:40 +01:00
|
|
|
margin: 0px 6px 0px;
|
2013-11-25 04:19:58 +01:00
|
|
|
border: 1px solid #E0E0E0;
|
|
|
|
font-size: 150%;
|
|
|
|
text-align: center;
|
2011-09-27 02:16:00 +02:00
|
|
|
}
|
2014-03-12 10:47:40 +01:00
|
|
|
.nextmatch_header .search {
|
|
|
|
padding-left: 1ex;
|
2013-11-09 13:10:08 +01: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;
|
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] {
|
2013-11-25 04:19:58 +01:00
|
|
|
margin-top: 6px;
|
2014-03-07 17:36:45 +01:00
|
|
|
position: relative;
|
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 {
|
|
|
|
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 {
|
2013-11-25 04:19:58 +01:00
|
|
|
min-width: 20ex;
|
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 */
|
2014-01-09 13:26:34 +01:00
|
|
|
background-image: url(../../../phpgwapi/templates/default/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
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
.egwGridView_grid > tbody > tr {
|
|
|
|
page-break-inside: avoid;
|
|
|
|
-webkit-region-break-inside: avoid;
|
|
|
|
}
|
|
|
|
.et2_nextmatch > div {
|
|
|
|
width: 100% !important;
|
|
|
|
height: auto;
|
|
|
|
}
|
2014-09-25 13:12:04 +02:00
|
|
|
#cke_1_top.cke_top {
|
|
|
|
display: none;
|
|
|
|
border:none;
|
|
|
|
}
|
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;
|
|
|
|
}
|
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;
|
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;
|
|
|
|
}
|
2013-07-20 15:53:35 +02:00
|
|
|
/**
|
|
|
|
* et2_taglist
|
|
|
|
*/
|
2013-11-25 04:19:58 +01:00
|
|
|
.ms-ctn,
|
|
|
|
.ms-res-ctn {
|
|
|
|
/* It doesn't really work smaller than this */
|
|
|
|
min-width: 150px;
|
2014-12-17 14:09:37 +01:00
|
|
|
border: solid 1px #bbbbbb;
|
2013-07-20 15:53:35 +02:00
|
|
|
}
|
|
|
|
.ms-ctn .loading {
|
2013-11-25 04:19:58 +01:00
|
|
|
position: relative;
|
|
|
|
margin: 0px auto -16px auto;
|
|
|
|
top: 5px;
|
2013-07-20 15:53:35 +02:00
|
|
|
}
|
|
|
|
.ms-res-ctn {
|
2014-12-17 14:09:37 +01:00
|
|
|
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;
|
2013-12-04 19:58:51 +01:00
|
|
|
}
|
2014-03-18 15:03:00 +01:00
|
|
|
div.ms-sel-ctn {
|
|
|
|
padding-right: 0px;
|
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
.et2_toolbar button {
|
2014-09-25 13:43:33 +02:00
|
|
|
margin:1px;
|
|
|
|
margin-right: 3px;
|
2014-03-04 09:45:20 +01:00
|
|
|
height: 24px;
|
2014-02-06 13:18:05 +01:00
|
|
|
}
|
2015-01-05 15:37:26 +01:00
|
|
|
.et2_toolbar button.toolbar_toggled {
|
|
|
|
background-color: white;
|
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;
|
|
|
|
}
|
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;
|
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;
|
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
|
|
|
}
|
|
|
|
.et2_toolbar_activeList{
|
|
|
|
position: relative;
|
|
|
|
float:right;
|
|
|
|
direction: rtl;
|
|
|
|
}
|
|
|
|
.et2_toolbar_actionlist{
|
|
|
|
float:left;
|
2014-09-25 13:12:04 +02:00
|
|
|
width:80%;
|
|
|
|
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;
|
|
|
|
}
|
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;
|
|
|
|
}
|
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 {
|
2014-03-11 16:50:30 +01:00
|
|
|
width: 77%;
|
|
|
|
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 {
|
2014-10-21 17:24:20 +02:00
|
|
|
z-index: 999;
|
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;
|
|
|
|
}
|