mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
166 lines
3.5 KiB
CSS
166 lines
3.5 KiB
CSS
/**
|
|
* EGroupware - Mail - CSS for message preview
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @package mail
|
|
* @subpackage setup
|
|
* @author EGroupware GmbH [info@egroupware.org]
|
|
* @copyright (c) 2013 by EGroupware GmbH <info-AT-egroupware.org>
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @version $Id$
|
|
*/
|
|
|
|
body, td, textarea {
|
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
body,html {
|
|
height:100%;
|
|
width:100%;
|
|
padding:0px;
|
|
margin:0 !important;
|
|
}
|
|
.td_display {
|
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
|
color: black;
|
|
background-color: #FFFFFF;
|
|
}
|
|
pre {
|
|
white-space: pre-wrap;
|
|
width: 99%;
|
|
}
|
|
blockquote[type=cite] {
|
|
margin: 0;
|
|
border-left: 2px solid blue;
|
|
padding-left: 10px;
|
|
margin-left: 0;
|
|
color: blue;
|
|
}
|
|
blockquote {
|
|
margin: 0;
|
|
border-left: 2px solid gray;
|
|
padding-left: 7px;
|
|
margin-left: 0;
|
|
color: black;
|
|
}
|
|
blockquote blockquote{
|
|
border-color: blue !important;
|
|
}
|
|
blockquote blockquote blockquote{
|
|
border-color: purple !important;
|
|
}
|
|
blockquote blockquote blockquote blockquote{
|
|
border-color: green !important;
|
|
}
|
|
blockquote blockquote blockquote blockquote blockquote{
|
|
border-color: orange !important;
|
|
}
|
|
blockquote blockquote blockquote blockquote blockquote blockquote{
|
|
border-color: gray !important;
|
|
}
|
|
#divAppboxHeader {
|
|
display: none;
|
|
}
|
|
|
|
.mail_externalImagesMsg {
|
|
display: block;
|
|
position: fixed;
|
|
height: auto;
|
|
width: 100%;
|
|
bottom: 0px;
|
|
left: 0px;
|
|
background: rgb(255, 229, 165);
|
|
border-top: 1px solid rgb(143, 139, 139);
|
|
box-shadow: rgb(143, 139, 139) 0px 1px 13px 2px;
|
|
}
|
|
.mail_externalImagesMsg.red {
|
|
background: rgba(204, 0, 51, 0.8) !important;
|
|
}
|
|
.mail_externalImagesMsg.red * {
|
|
color: white !important;
|
|
}
|
|
.mail_externalImagesMsg button {
|
|
float: right;
|
|
margin: 7px;
|
|
display: inline-block;
|
|
background-color: transparent;
|
|
border: none;
|
|
font-weight: bold;
|
|
color: rgb(48, 85, 140);
|
|
cursor: pointer;
|
|
text-decoration: underline;
|
|
}
|
|
.mail_externalImagesMsg button:hover {
|
|
color: rgb(20, 48, 88);
|
|
}
|
|
|
|
.mail_externalImagesMsg p {
|
|
display: inline-block;
|
|
width: 70%;
|
|
font-size: 9pt;
|
|
margin: 7px 7px 7px 10px;
|
|
color: rgb(31, 31, 31);
|
|
}
|
|
|
|
.mail_externalImagesMsg button.closeBtn {
|
|
float: right;
|
|
background-image: url(../api/templates/default/images/close.svg);
|
|
height: 30px;
|
|
width: 50px;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-size: 22px;
|
|
background-color: transparent;
|
|
border: none;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
margin: 0;
|
|
opacity:0.6;
|
|
}
|
|
.mail_externalImagesMsg button.closeBtn:hover {
|
|
opacity: 1;
|
|
}
|
|
|
|
#smimePasswordRequest {
|
|
background-image:url('../api/templates/default/images/lock.svg');
|
|
width:100%;
|
|
height:90%;
|
|
background-repeat: space;
|
|
}
|
|
#smimePasswordRequest div.bg-style {
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
text-align: left;
|
|
opacity: 0.8;
|
|
background: white;
|
|
}
|
|
#smimePasswordRequest div {
|
|
position: absolute;
|
|
width: 100%;
|
|
top: 40%;
|
|
text-align: center;
|
|
background: transparent;
|
|
}
|
|
#smimePasswordRequest div input[type="password"]{
|
|
padding-left: 10px;
|
|
height:40px;
|
|
width:200px;
|
|
border-bottom-left-radius: 5px;
|
|
border-top-left-radius: 5px;
|
|
}
|
|
#smimePasswordRequest div input[type="submit"] {
|
|
border-bottom-right-radius: 5px;
|
|
border-top-right-radius: 5px;
|
|
box-shadow: none;
|
|
border: 1px solid silver;
|
|
cursor: pointer;
|
|
height: 46px;
|
|
}
|
|
.smime-message {
|
|
font-weigth:bold;
|
|
font-size:12pt;
|
|
padding:5px;
|
|
text-align:center;
|
|
color:red;
|
|
} |