2013-11-14 20:11:29 +01:00
|
|
|
/**
|
|
|
|
* EGroupware: CSS with less preprocessor
|
|
|
|
*
|
|
|
|
* Definitions for content-elements
|
|
|
|
*
|
|
|
|
* 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-08 19:49:09 +01:00
|
|
|
|
2013-11-14 20:11:29 +01:00
|
|
|
/* #######################################################################################
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Inhaltselemente
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* ########################################################################################
|
|
|
|
*/
|
|
|
|
|
2014-03-11 17:38:24 +01:00
|
|
|
|
|
|
|
body,
|
2016-09-14 11:19:31 +02:00
|
|
|
textarea,
|
|
|
|
button {
|
2016-04-07 14:42:27 +02:00
|
|
|
.basefontfamily;
|
2013-11-18 20:27:56 +01:00
|
|
|
}
|
2013-11-14 20:11:29 +01:00
|
|
|
|
|
|
|
#egw_fw_basecontainer {
|
2016-04-07 14:42:27 +02:00
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0px;
|
|
|
|
margin: 0px;
|
2013-11-14 20:11:29 +01:00
|
|
|
|
2016-04-07 14:42:27 +02:00
|
|
|
.basefontfamily;
|
2013-11-14 20:11:29 +01:00
|
|
|
|
2016-04-07 14:42:27 +02:00
|
|
|
.background_color_0_gray ;
|
2013-11-14 20:11:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//##########################
|
|
|
|
|
|
|
|
input {
|
|
|
|
|
2014-01-14 17:05:31 +01:00
|
|
|
/* .Complete_Button_input;
|
|
|
|
.basefontfamily;
|
2013-11-22 06:27:29 +01:00
|
|
|
&:hover{.Complete_Button_input_hover;}
|
2014-01-14 17:05:31 +01:00
|
|
|
&:focus{.Complete_Button_input_focus;}*/
|
2013-11-14 20:11:29 +01:00
|
|
|
}
|
|
|
|
|
2016-07-13 10:15:12 +02:00
|
|
|
select, .et2_selectbox.select-cat {
|
2016-04-07 14:42:27 +02:00
|
|
|
margin: 0;
|
|
|
|
.rounded (3px);
|
2013-11-14 20:11:29 +01:00
|
|
|
|
2016-04-07 14:42:27 +02:00
|
|
|
&:hover{.Complete_Button_select_hover;}
|
|
|
|
&:focus{.Complete_Button_select_focus;}
|
|
|
|
&.after{}
|
2013-11-14 20:11:29 +01:00
|
|
|
}
|
|
|
|
|
2013-12-30 18:32:42 +01:00
|
|
|
:hover {.transition (0.2s, ease-out);}
|
|
|
|
|
2013-11-14 20:11:29 +01:00
|
|
|
// #############################
|
|
|
|
// Schriftformate
|
|
|
|
|
2014-01-08 19:49:09 +01:00
|
|
|
p { font-size: 1em;}
|
2013-11-14 20:11:29 +01:00
|
|
|
|
|
|
|
li {}
|
|
|
|
|
2014-07-16 13:24:38 +02:00
|
|
|
// Headlines h1 usw in layout_headlines.less
|
2013-11-14 20:11:29 +01:00
|
|
|
|
2014-07-16 13:24:38 +02:00
|
|
|
// select
|
2013-11-14 20:11:29 +01:00
|
|
|
div.selectbox-wrapper {
|
2016-04-07 14:42:27 +02:00
|
|
|
ul {
|
|
|
|
list-style-type:none;
|
|
|
|
margin:0px;
|
|
|
|
padding:0px;
|
|
|
|
|
|
|
|
li.selected {
|
|
|
|
background-color: #EAF2FB;
|
|
|
|
}
|
|
|
|
li.current {
|
|
|
|
background-color: #CDD8E4;
|
|
|
|
}
|
|
|
|
li {
|
|
|
|
list-style-type:none;
|
|
|
|
display:block;
|
|
|
|
margin:0;
|
|
|
|
padding:2px;
|
|
|
|
cursor:pointer;
|
|
|
|
}
|
|
|
|
}
|
2013-11-14 20:11:29 +01:00
|
|
|
}
|
|
|
|
|
2014-07-16 13:24:38 +02:00
|
|
|
select {
|
2016-04-07 14:42:27 +02:00
|
|
|
position:relative;
|
2016-09-14 11:19:31 +02:00
|
|
|
padding-right: 20px !important;
|
|
|
|
-webkit-appearance:none;
|
|
|
|
-moz-appearance: none;
|
|
|
|
margin:0;
|
|
|
|
background: #ffffff url(../images/selectarrowdown.png) no-repeat center right;
|
|
|
|
background-size: 16px auto;
|
|
|
|
}
|
|
|
|
/*IE has no appearance but we can remove arrows by ms-expand*/
|
|
|
|
select::-ms-expand {
|
|
|
|
display: none;
|
2013-11-14 20:11:29 +01:00
|
|
|
}
|
|
|
|
select,input,button
|
|
|
|
{
|
2016-04-07 14:42:27 +02:00
|
|
|
.color_100_gray;
|
|
|
|
/*font-size:99%;*/
|
|
|
|
padding-top: 4px;
|
|
|
|
padding-bottom: 4px;
|
2016-03-31 11:21:55 +02:00
|
|
|
padding-right: 0;
|
2016-04-07 14:42:27 +02:00
|
|
|
border-width: 1px;
|
|
|
|
border-style: solid;
|
|
|
|
border-color: @gray_10;
|
2013-11-14 20:11:29 +01:00
|
|
|
}
|
|
|
|
|
2014-07-16 13:24:38 +02:00
|
|
|
// Links
|
|
|
|
a:link, a:visited, select, input, textarea {
|
2016-04-07 14:42:27 +02:00
|
|
|
color : @link_color;
|
2014-07-16 13:24:38 +02:00
|
|
|
}
|
2013-11-14 20:11:29 +01:00
|
|
|
a:link,a:visited
|
|
|
|
{
|
2016-04-07 14:42:27 +02:00
|
|
|
cursor:pointer;
|
|
|
|
color: @link_color;
|
|
|
|
text-decoration: none;
|
2013-11-14 20:11:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
a:hover,a:active
|
|
|
|
{
|
2016-04-07 14:42:27 +02:00
|
|
|
cursor:pointer;
|
|
|
|
color:@link_color_active;
|
|
|
|
text-decoration: underline;
|
2013-11-14 20:11:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.divLoginboxHeader,
|
|
|
|
.divSideboxHeader,
|
|
|
|
a.appTitles,
|
|
|
|
.appTitles,
|
|
|
|
a.textSidebox,
|
|
|
|
.textSidebox,#fmStatusBar
|
|
|
|
{
|
2016-04-07 14:42:27 +02:00
|
|
|
font-size:90%;
|
2013-11-14 20:11:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.prefSection
|
|
|
|
{
|
2016-04-07 14:42:27 +02:00
|
|
|
font-weight:bold;
|
|
|
|
font-size:145%;
|
|
|
|
line-height:40px;
|
2013-11-14 20:11:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#divAppboxHeader
|
|
|
|
{
|
2016-04-07 14:42:27 +02:00
|
|
|
line-height:28px;
|
|
|
|
font-size:125%;
|
|
|
|
font-weight:bold;
|
|
|
|
color:#666666;
|
2013-11-14 20:11:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#divGenTime,#divPoweredBy
|
|
|
|
{
|
2016-04-07 14:42:27 +02:00
|
|
|
font-size: 80%;
|
|
|
|
color: #ff0000;
|
2013-11-14 20:11:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#divPoweredBy
|
|
|
|
{
|
2016-04-07 14:42:27 +02:00
|
|
|
color: #000000;
|
2013-11-14 20:11:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#sideboxdragarea {
|
2016-04-07 14:42:27 +02:00
|
|
|
z-index:100;
|
|
|
|
position:absolute;
|
|
|
|
left:0px;
|
|
|
|
top:105px;
|
2013-11-14 20:11:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#menu2handle {
|
2016-04-07 14:42:27 +02:00
|
|
|
padding-top: 10px;
|
2013-11-14 20:11:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#menu1close {
|
2016-04-07 14:42:27 +02:00
|
|
|
position: absolute;
|
|
|
|
right: 7px;
|
|
|
|
top: 7px;
|
2013-11-14 20:11:29 +01:00
|
|
|
}
|
|
|
|
|
2013-12-19 04:14:06 +01:00
|
|
|
hr.clearer {
|
2016-04-07 14:42:27 +02:00
|
|
|
clear: both;
|
|
|
|
height: 20px;
|
|
|
|
width: 100%;
|
|
|
|
background-color: @egw_color_1_a;
|
|
|
|
.rounded (3px);
|
|
|
|
border: 1px solid @gray_100;
|
2013-12-19 04:14:06 +01:00
|
|
|
}
|
|
|
|
|
2014-02-03 11:05:36 +01:00
|
|
|
/**
|
|
|
|
* table_passord_change
|
|
|
|
*/
|
|
|
|
|
2016-04-07 14:42:27 +02:00
|
|
|
table.table_passord_change {
|
|
|
|
margin: 1em;
|
|
|
|
tr {height: 50px;}
|
|
|
|
td:first-child{ padding-right: 4em;}
|
2014-03-11 17:38:24 +01:00
|
|
|
|
2014-02-03 11:05:36 +01:00
|
|
|
}
|
|
|
|
|