egroupware_official/pixelegg/less/layout_messages.less

198 lines
4.2 KiB
Plaintext
Raw Normal View History

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>
* @package pixelegg
2013-11-14 20:11:29 +01:00
* @version $Id$
*/
@import (reference) "definitions.less";
//##############################################################################################################
2013-11-14 20:11:29 +01:00
2014-01-14 17:05:31 +01:00
#egwpopup{
2017-05-15 17:34:27 +02:00
top: 43px !important;
right:0px !important;
left: auto !important;
height: ~"calc(100% - 85px)";
width: 300px !important;
position: absolute;
background: white;
box-shadow: -2px 1px 18px 1px silver;
padding: 1em;
overflow-y: auto;
/*Button*/
input#egwpopup_ok_button,
button#desktop_perms{
.Complete_Button_normal;
.dimension_height_m;
padding: 0 5px;
&:hover {.Complete_Button_hover;}
&:active {background-color: @color_positive_action_active !important;}
}
#egwpopup_list {
span.egwpopup_close {
display: block;
float: right;
width: 24px;
height: 24px;
background-image: url(../images/close.png);
background-repeat: no-repeat;
background-position: center;
cursor: pointer;
}
.egwpopup_message {
padding: 10px;
background-color: #fafafa;
border-radius: 3px;
margin-bottom: 10px;
&:hover {
background-color: rgba(103, 159, 210, 0.2);
}
}
}
div#egwpopup_header {
font-size: 16px;
color: silver;
text-align: center;
padding: 15px;
.egwpopup_toggle {
height: 32px;
width: 32px;
cursor: pointer;
position:relative;
margin-top: -2px;
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;
}
}
}
2014-03-13 18:44:52 +01:00
2014-01-14 17:05:31 +01:00
}
2017-05-15 17:34:27 +02:00
#egwpopup_fw_notifications {
cursor: pointer;
display: inline-block;
float: right;
margin-right: 1em;
margin-top: 0px;
z-index: 200;
width: 26px;
height: 16px;
top: 9px;
position: fixed;
right: 109px;
border: 2px solid #656565;
border-radius: 3px;
text-align: center;
color: #646464;
font-weight: bold;
}
#egwpopup_fw_notifications.egwpopup_notify {
color: white;
background: #b9436c;
}
2014-01-17 12:53:23 +01:00
/*popup Messsage*/
div#egwpopup_message {
2014-03-13 18:44:52 +01:00
2014-01-17 12:53:23 +01:00
background-color: .color_gray_0;
padding: 1em;
2014-01-30 19:55:29 +01:00
overflow-y: auto;
2014-03-13 18:44:52 +01:00
2014-01-17 12:53:23 +01:00
}
2013-12-16 10:37:26 +01:00
#msg,.message {
color: red;
font-style: italic;
2013-12-30 18:32:42 +01:00
background: @gray_0;
2013-12-16 10:37:26 +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
border-width: 1px 0px 0px 0px;
2013-11-14 20:11:29 +01:00
border-style: solid;
2013-12-30 18:32:42 +01:00
border-color: @gray_30;
2016-01-28 19:17:40 +01:00
height: auto;
2013-11-14 20:11:29 +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;
}
}
2013-11-14 20:11:29 +01:00
.colselection.ui-widget-content {
width: 33%;
// margin-left: 49%;
2013-11-25 04:16:41 +01:00
}
2013-12-16 10:37:26 +01:00
2014-03-13 18:44:52 +01:00
2013-12-16 10:37:26 +01:00
/*Calendar ##############*/
2014-03-13 18:44:52 +01:00
2013-12-16 10:37:26 +01:00
td.message {
2014-02-06 18:35:54 +01:00
background-color: @gray_10 !important;
height: 0px;
padding: 0px;
span.message {
2013-12-16 10:37:26 +01:00
height: 35px;
2013-12-30 18:32:42 +01:00
border-bottom: 2px solid @gray_10;
2014-02-06 18:35:54 +01:00
color: red;
background: @gray_10;
2013-12-16 10:37:26 +01:00
height: auto;
width: 100%;
}
2014-03-13 18:44:52 +01:00
2013-12-16 10:37:26 +01:00
}
2014-03-13 18:44:52 +01:00
2013-12-16 10:37:26 +01:00
//