2013-11-14 20:11:29 +01:00
|
|
|
/**
|
|
|
|
* EGroupware: CSS with less preprocessor
|
|
|
|
*
|
|
|
|
* et2 Messages
|
|
|
|
*
|
|
|
|
* Please do NOT change css-files directly, instead change less-files and compile them!
|
|
|
|
*
|
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @author Stefan Reinhardt <stefan.reinhardt@pixelegg.de>
|
2016-05-05 20:27:07 +02:00
|
|
|
* @package pixelegg
|
2013-11-14 20:11:29 +01:00
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
2014-07-16 13:24:38 +02:00
|
|
|
@import (reference) "definitions.less";
|
|
|
|
//##############################################################################################################
|
2013-11-14 20:11:29 +01:00
|
|
|
|
2014-01-14 17:05:31 +01:00
|
|
|
|
2020-02-03 16:18:25 +01:00
|
|
|
|
2017-09-15 11:34:30 +02:00
|
|
|
#egwpopup {
|
2019-05-27 17:11:43 +02:00
|
|
|
top: 46px;
|
2017-05-15 17:34:27 +02:00
|
|
|
right:0px !important;
|
|
|
|
left: auto !important;
|
2019-05-27 17:11:43 +02:00
|
|
|
height: ~"calc(100% - 69px)";
|
2018-07-13 16:23:26 +02:00
|
|
|
width: 277px !important;
|
2017-05-15 17:34:27 +02:00
|
|
|
position: absolute;
|
|
|
|
background: white;
|
2018-07-13 16:23:26 +02:00
|
|
|
border:1px solid silver;
|
|
|
|
border-top: none;
|
|
|
|
border-bottom: none;
|
2017-05-15 17:34:27 +02:00
|
|
|
padding: 1em;
|
2017-05-17 14:04:31 +02:00
|
|
|
|
2017-05-15 17:34:27 +02:00
|
|
|
/*Button*/
|
|
|
|
input#egwpopup_ok_button,
|
2017-09-15 11:34:30 +02:00
|
|
|
button#desktop_perms {
|
2017-05-15 17:34:27 +02:00
|
|
|
.Complete_Button_normal;
|
|
|
|
.dimension_height_m;
|
|
|
|
padding: 0 5px;
|
|
|
|
&:hover {.Complete_Button_hover;}
|
|
|
|
&:active {background-color: @color_positive_action_active !important;}
|
|
|
|
}
|
2017-09-15 11:34:30 +02:00
|
|
|
#egwpopup_list::-webkit-scrollbar-track {
|
2017-05-17 14:04:31 +02:00
|
|
|
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
|
|
|
background-color: #fafafa;
|
|
|
|
}
|
|
|
|
|
2017-09-15 11:34:30 +02:00
|
|
|
#egwpopup_list::-webkit-scrollbar {
|
2017-05-17 14:04:31 +02:00
|
|
|
width: 4px;
|
|
|
|
background-color: #fafafa;
|
|
|
|
}
|
|
|
|
|
2017-09-15 11:34:30 +02:00
|
|
|
#egwpopup_list::-webkit-scrollbar-thumb {
|
2017-05-17 14:04:31 +02:00
|
|
|
background-color: #6a6f71;
|
|
|
|
}
|
2017-05-15 17:34:27 +02:00
|
|
|
#egwpopup_list {
|
2017-05-17 14:04:31 +02:00
|
|
|
overflow-y: auto;
|
|
|
|
height: ~"calc(100% - 52px)";
|
2017-09-18 18:47:44 +02:00
|
|
|
.egwpopup_time_label {
|
|
|
|
width: 100%;
|
|
|
|
color: #fafafa;
|
|
|
|
text-align: center;
|
|
|
|
font-style: italic;
|
|
|
|
opacity: 0.5;
|
|
|
|
font-size: 10pt;
|
|
|
|
background: #255ea5;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2017-05-17 14:04:31 +02:00
|
|
|
span.egwpopup_delete {
|
|
|
|
display: inline-block;
|
2017-05-15 17:34:27 +02:00
|
|
|
float: right;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2024-09-12 16:18:55 +02:00
|
|
|
background-image: url(../../node_modules/bootstrap-icons/icons/trash3.svg);
|
2017-05-15 17:34:27 +02:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
2017-05-17 14:04:31 +02:00
|
|
|
background-size: 12px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.egwpopup_mark {
|
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
2017-05-18 15:51:28 +02:00
|
|
|
border: 1px solid #b9436c;
|
2017-05-17 14:04:31 +02:00
|
|
|
border-radius: 50%;
|
|
|
|
margin: 7px;
|
|
|
|
background:#b9436c;
|
2017-05-15 17:34:27 +02:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.egwpopup_message {
|
2018-02-19 18:17:41 +01:00
|
|
|
height: auto;
|
2017-09-15 17:10:11 +02:00
|
|
|
overflow: hidden;
|
2017-05-15 17:34:27 +02:00
|
|
|
padding: 10px;
|
2017-05-17 14:04:31 +02:00
|
|
|
background-color: #fafafa;
|
2018-02-19 18:17:41 +01:00
|
|
|
margin-bottom: 5px;
|
2017-05-15 17:34:27 +02:00
|
|
|
&:hover {
|
|
|
|
background-color: rgba(103, 159, 210, 0.2);
|
|
|
|
}
|
2017-09-15 17:10:11 +02:00
|
|
|
.egwpopup_message_inner_container {
|
2022-11-10 19:12:48 +01:00
|
|
|
height: 63px;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
a {
|
|
|
|
max-width: 60em;
|
|
|
|
display: inline-block;
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
vertical-align: text-top;
|
|
|
|
}
|
|
|
|
}
|
2017-09-15 17:10:11 +02:00
|
|
|
.egwpopup_message_top_toolbar {
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
.egwpopup_message_date {
|
|
|
|
float: left;
|
2017-09-18 18:47:44 +02:00
|
|
|
color: #767676;
|
2017-09-15 17:10:11 +02:00
|
|
|
}
|
|
|
|
.egwpopup_message_open {
|
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2024-09-12 16:18:55 +02:00
|
|
|
background-image: url(../../node_modules/bootstrap-icons/icons/search.svg);
|
2017-09-15 17:10:11 +02:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
background-size: 12px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.egwpopup_collapse {display: none;}
|
|
|
|
}
|
2017-05-23 16:54:20 +02:00
|
|
|
.egwpopup_actions_container {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.egwpopup_actions_container>button {
|
|
|
|
height: 24px;
|
2018-07-24 11:51:36 +02:00
|
|
|
width: 80px;
|
2017-05-23 16:54:20 +02:00
|
|
|
border: none;
|
|
|
|
background: #e6e6e6;
|
|
|
|
background-size: 16px;
|
|
|
|
background-position: 12px center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
padding-left: 26px;
|
|
|
|
}
|
2017-09-18 18:47:44 +02:00
|
|
|
.egwpopup_message_more_info {
|
|
|
|
color:#767676;
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
}
|
2018-03-06 18:33:42 +01:00
|
|
|
span.egwpopup_nav_prev, span.egwpopup_nav_next {
|
|
|
|
display: none;
|
|
|
|
}
|
2017-09-15 17:10:11 +02:00
|
|
|
}
|
|
|
|
.egwpopup_message.egwpopup_expanded {
|
|
|
|
position: fixed;
|
2018-07-13 16:23:26 +02:00
|
|
|
top: 85px;
|
|
|
|
height: ~"calc(100% - 130px)";
|
2017-09-15 17:10:11 +02:00
|
|
|
left: 20vw;
|
|
|
|
width: 60vw;
|
|
|
|
box-shadow: 0 0 40px #666;
|
|
|
|
overflow: auto;
|
|
|
|
&:hover {
|
|
|
|
background-color: #fafafa;
|
|
|
|
}
|
|
|
|
.egwpopup_message_inner_container {
|
2017-12-14 16:56:44 +01:00
|
|
|
height: ~"calc(100% - 62px)";
|
2017-09-15 17:10:11 +02:00
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
.egwpopup_collapse {
|
|
|
|
float: right;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2024-09-12 16:18:55 +02:00
|
|
|
background-image: url(../../node_modules/bootstrap-icons/icons/x-lg.svg);
|
2017-09-15 17:10:11 +02:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
background-size: 12px;
|
|
|
|
cursor: pointer;display: inline-block
|
2017-09-15 11:34:30 +02:00
|
|
|
}
|
2017-09-18 18:47:44 +02:00
|
|
|
.egwpopup_message_more_info {display: none;}
|
2018-03-06 18:33:42 +01:00
|
|
|
span.egwpopup_nav_prev {
|
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2024-09-12 16:18:55 +02:00
|
|
|
background-image: url(../../node_modules/bootstrap-icons/icons/arrow-bar-left.svg);
|
2018-03-06 18:33:42 +01:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
background-size: 16px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.egwpopup_nav_disable {opacity:0.5; pointer-events: none;}
|
|
|
|
span.egwpopup_nav_next {
|
|
|
|
display: inline-block;
|
|
|
|
float: right;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2024-09-12 16:18:55 +02:00
|
|
|
background-image: url(../../node_modules/bootstrap-icons/icons/arrow-bar-right.svg);
|
2018-03-06 18:33:42 +01:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
background-size: 16px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2017-05-15 17:34:27 +02:00
|
|
|
}
|
2017-05-16 18:03:50 +02:00
|
|
|
.egwpopup_message_seen {
|
2017-05-18 15:51:28 +02:00
|
|
|
.egwpopup_mark {cursor: auto;background:none;border-color: #666c6e;}
|
2017-05-16 18:03:50 +02:00
|
|
|
}
|
2017-09-15 17:10:11 +02:00
|
|
|
.egwpopup_message_clone {
|
|
|
|
border:2px dashed silver;
|
|
|
|
opacity: 0.3;
|
2018-02-19 18:17:41 +01:00
|
|
|
height: 125px;
|
2017-09-15 11:34:30 +02:00
|
|
|
}
|
2017-05-15 17:34:27 +02:00
|
|
|
}
|
|
|
|
div#egwpopup_header {
|
|
|
|
font-size: 16px;
|
|
|
|
color: silver;
|
|
|
|
text-align: center;
|
|
|
|
padding: 15px;
|
2017-05-16 18:03:50 +02:00
|
|
|
.egwpopup_seenall {
|
|
|
|
float: right;
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
border: 1px solid silver;
|
|
|
|
border-radius: 50%;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 4px 0px 0px 0px;
|
|
|
|
&:hover {
|
|
|
|
border-color: gray;
|
|
|
|
background: rgba(103, 159, 210, 0.2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.egwpopup_deleteall {
|
2024-09-12 16:18:55 +02:00
|
|
|
background-image: url(../../node_modules/bootstrap-icons/icons/trash3.svg);
|
2017-05-16 18:03:50 +02:00
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
background-position: center;
|
|
|
|
background-size: 12px;
|
|
|
|
float: right;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
margin-right: 15px;
|
|
|
|
margin-top: 4px;
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
opacity: 0.5;
|
|
|
|
&:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2017-05-15 17:34:27 +02:00
|
|
|
}
|
2014-01-14 17:05:31 +01:00
|
|
|
}
|
|
|
|
|
2019-05-27 17:11:43 +02:00
|
|
|
|
2014-01-17 12:53:23 +01:00
|
|
|
/*popup Messsage*/
|
2017-09-15 11:34:30 +02:00
|
|
|
div#egwpopup_message {
|
2020-02-03 16:18:25 +01:00
|
|
|
background-color: @gray_0;
|
2017-09-15 11:34:30 +02:00
|
|
|
padding: 1em;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
2014-01-17 12:53:23 +01:00
|
|
|
|
2013-12-16 10:37:26 +01:00
|
|
|
#msg,.message {
|
2022-05-06 19:49:30 +02:00
|
|
|
color: var(--error-color);
|
2017-09-15 11:34:30 +02:00
|
|
|
font-style: italic;
|
|
|
|
background: @gray_0;
|
2013-12-16 10:37:26 +01:00
|
|
|
}
|
|
|
|
|
2014-02-28 18:44:23 +01:00
|
|
|
// Container für Meldungen / Message Container
|
2013-11-14 20:11:29 +01:00
|
|
|
.egw_fw_ui_app_header_container {
|
2016-01-28 19:17:40 +01:00
|
|
|
height: auto;
|
2022-09-16 13:48:06 +02:00
|
|
|
display: none;
|
2016-02-17 14:23:27 +01:00
|
|
|
// Statusmeldung
|
|
|
|
// Meldung oberhalb iFrame
|
|
|
|
.egw_fw_ui_app_header {
|
|
|
|
padding: 1px 0 0 0;
|
|
|
|
font-weight: normal;
|
|
|
|
color: silver;
|
|
|
|
overflow: hidden;
|
|
|
|
height: 15px;
|
2019-05-28 17:24:12 +02:00
|
|
|
visibility: hidden;
|
2016-02-17 14:23:27 +01:00
|
|
|
}
|
|
|
|
}
|
2013-11-14 20:11:29 +01:00
|
|
|
|
2019-11-19 17:31:59 +01:00
|
|
|
.colselection.ui-widget-content {
|
|
|
|
width: 45%;
|
2019-11-19 18:03:16 +01:00
|
|
|
height:auto;
|
2019-11-19 17:31:59 +01:00
|
|
|
.et2_selectbox {
|
|
|
|
height: ~"calc(100% - 68px)";
|
|
|
|
.ui-multiselect-checkboxes {
|
|
|
|
height: ~"calc(100% - 68px)" !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-03-13 18:44:52 +01:00
|
|
|
|
2013-12-16 10:37:26 +01:00
|
|
|
/*Calendar ##############*/
|
2017-09-15 11:34:30 +02:00
|
|
|
td.message {
|
|
|
|
background-color: @gray_10 !important;
|
|
|
|
height: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
span.message {
|
|
|
|
height: 35px;
|
|
|
|
border-bottom: 2px solid @gray_10;
|
|
|
|
color: red;
|
|
|
|
background: @gray_10;
|
|
|
|
height: auto;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2018-06-06 11:05:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.button_right_toggle {
|
|
|
|
height: 32px;
|
|
|
|
width: 32px;
|
|
|
|
cursor: pointer;
|
|
|
|
position:relative;
|
|
|
|
margin-top: 1px;
|
|
|
|
margin-left: -20px;
|
|
|
|
float:left;
|
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
left: 13px;
|
|
|
|
top: 5px;
|
|
|
|
width: 10px;
|
|
|
|
height: 2px;
|
|
|
|
background-color: silver;
|
|
|
|
backface-visibility: hidden;
|
|
|
|
border-radius: 6px;
|
|
|
|
transform: rotate(145deg) translate(8px, -1px);
|
|
|
|
-ms-transform: rotate(145deg) translate(8px, -1px);
|
|
|
|
-moz-transform: rotate(145deg) translate(8px, -1px);
|
|
|
|
-webkit-transform: rotate(145deg) translate(8px, -1px);
|
|
|
|
}
|
|
|
|
&:before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
left: 0px;
|
|
|
|
top: 0px;
|
|
|
|
width: 10px;
|
|
|
|
height: 2px;
|
|
|
|
background-color: silver;
|
|
|
|
backface-visibility: hidden;
|
|
|
|
border-radius: 6px;
|
|
|
|
transform: rotate(45deg) translate(8px, -2px);
|
|
|
|
-ms-transform: rotate(45deg) translate(8px, -2px);
|
|
|
|
-moz-transform: rotate(45deg) translate(8px, -2px);
|
|
|
|
-webkit-transform: rotate(45deg) translate(8px, -2px);
|
|
|
|
}
|
|
|
|
&:hover:before, &:hover:after {
|
|
|
|
background-color: gray;
|
|
|
|
}
|
2024-09-12 16:18:55 +02:00
|
|
|
}
|