egroupware_official/pixelegg/less/layout_raster.less

1391 lines
40 KiB
Plaintext
Raw Normal View History

2013-11-11 19:45:33 +01:00
/**
* EGroupware: Stylite Pixelegg template
*
* Definitions for layout and raster
*
* 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
2013-11-20 09:41:08 +01:00
* @author Stefan Reinhardt <stefan.reinhardt@pixelegg.de>
2013-11-11 19:45:33 +01:00
* @package pixelegg
* @version $Id$
*/
2013-12-12 21:27:20 +01:00
@import (reference) "def_buttons.less";
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
//############## Layout ########################################################################################
2013-11-11 19:45:33 +01:00
// Allgemeines
/* #################################################
* Basecontainer
* #################################################
*/
//IFRAME
.egw_fw_content_browser_iframe,
#divMainView {
2013-11-14 20:11:29 +01:00
// .background-color-0-gray;
margin: 0;
2013-11-11 19:45:33 +01:00
2013-12-30 18:32:42 +01:00
body {.background_color_0_gray; }
2013-11-11 19:45:33 +01:00
}
2013-11-14 20:11:29 +01:00
.egwGridView_scrollarea {
2013-11-20 09:41:08 +01:00
width: 100%;
2014-01-16 18:04:26 +01:00
overflow-y: auto;
2014-02-24 18:18:34 +01:00
overflow-x: hidden;
2013-11-14 20:11:29 +01:00
}
#egw_fw_header{
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
width: 100%;
float: left;
2014-02-24 18:18:34 +01:00
/* Logo EGW or Company - left top*/
2013-11-14 20:11:29 +01:00
#egw_divLogo {
2014-02-24 18:18:34 +01:00
float: left;
width: 255px;
display: block;
margin-left: -8px;
text-align: center;
height: 45px;
.background_color_5_gray;
img {
width: 209px;
border: none;
position: absolute;
top: 0.41em;
left: 1em;
.background_color_5_gray;
}
2013-11-14 20:11:29 +01:00
2014-02-24 18:18:34 +01:00
}
2013-12-12 10:10:25 +01:00
2014-01-08 19:49:09 +01:00
2014-02-24 18:18:34 +01:00
/* ###########################################################################################################################################
Topmenu / Home / Einstellungen / Zugriff / Kategorien usw..
###########################################################################################################################################
*/
2013-11-14 20:11:29 +01:00
#egw_fw_topmenu ul,
#egw_fw_topmenu > * > ul > li,
.topmenu_info_item,
#egw_fw_topmenu_items,
#egw_fw_topmenu_info_items {
display: inline;
}
2013-11-20 09:41:08 +01:00
2013-11-14 20:11:29 +01:00
#egw_fw_topmenu{
2013-11-20 09:41:08 +01:00
2013-11-14 20:11:29 +01:00
#egw_fw_topmenu_items {
float: left;
padding-top: 10px;
2013-12-30 18:32:42 +01:00
width: 70%;
2014-01-08 19:49:09 +01:00
2013-11-20 09:41:08 +01:00
ul {
li{
2013-12-30 18:32:42 +01:00
.color_100_gray;
/*.Button_size_square_32;*/
2013-11-20 09:41:08 +01:00
padding: 0.3em 0.4em;
.Complete_Button_normal;
2014-01-23 09:44:38 +01:00
background-color: @gray_10;
2014-01-08 19:49:09 +01:00
2013-11-20 09:41:08 +01:00
2014-01-23 09:44:38 +01:00
&:hover{.Complete_Button_hover; color: @gray_100;}
2013-12-16 10:37:26 +01:00
&:active {.Complete_Button_active;}
2013-12-30 18:32:42 +01:00
.transition (0.2s, ease-out);
2014-01-08 19:49:09 +01:00
2013-12-30 18:32:42 +01:00
a {
.color_100_gray;
text-decoration: none;
2014-01-14 09:20:19 +01:00
.dimension_height_s;
2014-01-23 09:44:38 +01:00
/*font-size: 1.1em;*/
2014-01-08 19:49:09 +01:00
2013-12-30 18:32:42 +01:00
&:hover {
2014-01-08 19:49:09 +01:00
.color_50_gray;
border-color: @gray_50;
text-decoration: none !important;
2013-12-30 18:32:42 +01:00
}
2014-01-08 19:49:09 +01:00
}
2013-11-20 09:41:08 +01:00
}
2013-11-14 20:11:29 +01:00
2013-12-16 10:37:26 +01:00
/*Home*/
2013-11-20 09:41:08 +01:00
li:first-child{
2014-01-08 19:49:09 +01:00
margin-left: 10px;
:before{border: none;}
}
2013-12-30 18:32:42 +01:00
/*home*/
a#topmenu_home {
margin-left: 0px;
&:before {
padding-right: 20px;
content: " ";
background-image: url(../images/topmenu_items/home.png);
background-repeat: no-repeat;
2014-01-14 09:20:19 +01:00
.dimension_width_height_xs;
2013-12-16 10:37:26 +01:00
}
2014-01-08 19:49:09 +01:00
2013-11-20 09:41:08 +01:00
}
2013-12-30 18:32:42 +01:00
2014-01-08 19:49:09 +01:00
2013-12-30 18:32:42 +01:00
/*Setup / Einstellungen*/
a#topmenu_prefs{
margin-left: 0px;
&:before {
padding-right: 20px;
content: "";
background-image: url(../images/topmenu_items/setup.png);
background-repeat: no-repeat;
2014-01-14 09:20:19 +01:00
.dimension_width_height_xs;
}
}
2014-01-08 19:49:09 +01:00
2013-12-30 18:32:42 +01:00
/*access / Zugriff */
2014-01-08 19:49:09 +01:00
a#topmenu_acl{
2013-12-30 18:32:42 +01:00
&:before {
padding-right: 20px;
content: "";
background-repeat: no-repeat;
2014-01-14 09:20:19 +01:00
.dimension_width_height_xs;
2013-12-30 18:32:42 +01:00
background-image: url(../images/topmenu_items/access.png);
}
}
2013-12-16 10:37:26 +01:00
/*category*/
2014-01-08 19:49:09 +01:00
a#topmenu_cats{
2013-12-30 18:32:42 +01:00
&:before {
background-image: url(../images/topmenu_items/category.png);
padding-right: 20px;
content: "";
background-repeat: no-repeat;
2014-01-14 09:20:19 +01:00
.dimension_width_height_xs;
}
}
2013-12-16 10:37:26 +01:00
/*password*/
2014-01-08 19:49:09 +01:00
a#topmenu_preferences{
2013-12-30 18:32:42 +01:00
&:before {
background-image: url(../images/topmenu_items/password.png);
padding-right: 20px;
content: "";
background-repeat: no-repeat;
2014-01-14 09:20:19 +01:00
.dimension_width_height_xs;
}
}
2013-12-16 10:37:26 +01:00
/*help*/
2014-01-08 19:49:09 +01:00
a#topmenu_manual{
2013-12-30 18:32:42 +01:00
&:before {
background-image: url(../images/topmenu_items/help.png);
padding-right: 20px;
content: "";
background-repeat: no-repeat;
2014-01-14 09:20:19 +01:00
.dimension_width_height_xs;
}
}
2013-12-16 10:37:26 +01:00
/*Search*/
2014-01-08 19:49:09 +01:00
a#topmenu_search{
2013-12-30 18:32:42 +01:00
&:before {
background-image: url(../images/topmenu_items/search.png);
padding-right: 20px;
content: "";
background-repeat: no-repeat;
2014-01-14 09:20:19 +01:00
.dimension_width_height_xs;
}
}
2013-12-16 10:37:26 +01:00
/*logout*/
2013-12-30 18:32:42 +01:00
a#topmenu_logout{
&:before {
background-image: url(../images/topmenu_items/logout.png);
padding-right: 20px;
content: "";
background-repeat: no-repeat;
2013-12-16 10:37:26 +01:00
.dimension_width_height_s;
}
}
2013-11-20 09:41:08 +01:00
} // Ende ul
2013-11-14 20:11:29 +01:00
2013-11-15 18:05:59 +01:00
} // Ende Items
2013-11-20 09:41:08 +01:00
2013-11-15 18:05:59 +01:00
} // Ende Topmenu
2013-11-20 09:41:08 +01:00
2013-11-11 19:45:33 +01:00
2013-11-15 18:05:59 +01:00
} // Ende Header
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
/* ###################################################
Slide Effekt
###################################################*/
2013-11-11 19:45:33 +01:00
#egw_fw_topmenu_slide{
2013-11-14 20:11:29 +01:00
width: auto;
text-align: center;
height: 15px;
2013-11-20 09:41:08 +01:00
float: left;
2013-11-14 20:11:29 +01:00
position: fixed;
2013-11-20 09:41:08 +01:00
left: 194px;
2014-01-08 19:49:09 +01:00
2013-11-20 09:41:08 +01:00
}
2014-02-24 18:18:34 +01:00
/*ICON List*/
2013-11-20 09:41:08 +01:00
#egw_fw_topmenu_slide.slidedown{
2014-01-08 19:49:09 +01:00
background-image: url("../images/list.png");
background-position: center center;
height: 15px;
width: 15px;
display: block;
margin-left: 5px;
margin-top: 10px;
background-size: 15px 15px;
float: left;
position: relative;
left: -5px;
}
2014-02-24 18:18:34 +01:00
/*Icon ARROW UP*/
2013-11-20 09:41:08 +01:00
#egw_fw_topmenu_slide.slideup{
2014-01-08 19:49:09 +01:00
background-image: url("../images/slideup.png");
background-position: center center;
height: 15px;
width: 15px;
display: block;
2014-01-15 18:57:00 +01:00
margin-top: -36px;
2014-01-08 19:49:09 +01:00
margin-left: 40px;
2013-11-14 20:11:29 +01:00
2014-01-08 19:49:09 +01:00
}
2014-02-24 18:18:34 +01:00
2014-01-08 19:49:09 +01:00
#slidetoggle{
width: 20px;
height: 20px;
display: block;
}
2013-11-15 18:05:59 +01:00
/*#################################################
2014-02-24 18:18:34 +01:00
Add / Print / Logout /
2013-11-15 18:05:59 +01:00
- Name / Date
###################################################*/
2014-02-24 18:18:34 +01:00
/*#egw_fw_topmenu_addons{}*/
2013-11-20 09:41:08 +01:00
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
// Button Logout
2014-01-08 19:49:09 +01:00
#egw_fw_logout {
background-image: url(../images/logout.png);
background-size: 16px 16px;
background-position: center center;
background-repeat: no-repeat;
cursor: pointer;
display: inline-block;
float: right;
margin-right: 1em;
margin-top: 0px;
z-index: 200;
.Button_size_square_16;
.border_normal;
.box_shadow_standard_light;
2014-02-24 18:18:34 +01:00
.border_radius_button_normal;
2014-01-08 19:49:09 +01:00
padding: 0.5em;
top: 5px;
position: fixed;
2014-02-06 08:40:54 +01:00
right: 0px;
2013-11-11 19:45:33 +01:00
2014-01-08 19:49:09 +01:00
&:hover {.box_shadow_standard_light_hover;}
&:active {.Complete_Button_active;}
&:focus {.box_shadow_standard_light_inset;}
}
2013-11-11 19:45:33 +01:00
2013-11-20 09:41:08 +01:00
2014-02-24 18:18:34 +01:00
// Button Print
2013-11-20 09:41:08 +01:00
2014-01-08 19:49:09 +01:00
#egw_fw_print {
background-image: url(../images/print.png);
background-size: 16px 16px;
background-position: center center;
background-repeat: no-repeat;
cursor: pointer;
display: inline-block;
float: right;
margin-right: 5px;
margin-top: 0px;
position: fixed;
.Button_size_square_16;
.border_normal;
.box_shadow_standard_light;
2014-02-24 18:18:34 +01:00
.border_radius_button_normal;
2014-01-08 19:49:09 +01:00
padding: 0.5em;
top: 5px;
2014-02-06 08:40:54 +01:00
right: 40px;
2014-01-08 19:49:09 +01:00
z-index: 200;
&:hover {.box_shadow_standard_light_hover;}
&:active {.Complete_Button_active;}
&:focus {.box_shadow_standard_light_inset;}
2013-11-20 09:41:08 +01:00
2014-01-08 19:49:09 +01:00
}
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
/*#################################################
/* Second Line
/* e.g. Name / Datum / angemeldete User
###################################################*/
2014-01-06 18:23:06 +01:00
2013-12-18 05:33:46 +01:00
2014-01-08 19:49:09 +01:00
#egw_fw_topmenu_info_items {
2013-11-11 19:45:33 +01:00
2014-01-08 19:49:09 +01:00
bottom: 0px;
2014-02-24 18:18:34 +01:00
right: 0px;
2014-01-08 19:49:09 +01:00
padding-right: 0px;
position: relative;
z-index: 1000;
2014-02-24 18:18:34 +01:00
margin-right: 4px;
2013-11-11 19:45:33 +01:00
2014-01-08 19:49:09 +01:00
float: right;
2013-11-11 19:45:33 +01:00
2014-01-08 19:49:09 +01:00
display: flex;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
2013-11-11 19:45:33 +01:00
2014-01-08 19:49:09 +01:00
flex-direction: row;
justify-content: flex-start;
2013-11-11 19:45:33 +01:00
2014-01-08 19:49:09 +01:00
-webkit-flex-direction: row;
-webkit-justify-content: flex-start;
-ms-flex-direction: row;
-ms-justify-content: flex-start;
2013-11-20 09:41:08 +01:00
2014-01-08 19:49:09 +01:00
.topmenu_info_item {
2013-11-20 09:41:08 +01:00
2014-01-08 19:49:09 +01:00
overflow: visible;
2013-11-20 09:41:08 +01:00
2014-01-08 19:49:09 +01:00
// Info Bell
&:nth-child(1) {
2013-11-20 09:41:08 +01:00
}
2014-01-08 19:49:09 +01:00
// Name
&:nth-child(2) {
/*float: right;*/
margin-top: 0;
font-size: 1em;
padding-right: 5px;
}
// angemeldete User
&:nth-child(3) {
position: relative;
top: 0px;
display: inline-block;
&:hover {.box_shadow_standard_light_hover;}
&:focus {.box_shadow_standard_light_inset;}
2014-02-12 16:50:18 +01:00
/*&:before {content: "";font-size: 1em;color: @egw_color_2_a;}*/
2014-01-08 19:49:09 +01:00
}
// Add
&:nth-child(4) {
}
}
2014-01-17 12:53:23 +01:00
/*Notification*/
#topmenu_info_notifications {}
2014-01-17 12:53:23 +01:00
/*user info*/
#topmenu_info_user_info {}
2014-01-17 12:53:23 +01:00
/*current user info*/
#topmenu_info_current_users {}
2014-01-17 12:53:23 +01:00
/*current user info*/
#topmenu_info_current_users {}
2014-01-23 09:44:38 +01:00
/*time zone*/
form { height: 0px;
select {padding: 0px;}
}
2014-01-17 12:53:23 +01:00
/*quick*/
#topmenu_info_quick_add {
2014-02-24 18:18:34 +01:00
// ##############################################################################
2014-01-17 12:53:23 +01:00
// quick_add
2014-02-24 18:18:34 +01:00
// Fist you see an ADD Icon, via Mouseover it expand right, to an select field
2014-01-17 12:53:23 +01:00
span#quick_add {
border: 1px solid rgba(0, 0, 0, 0.15);
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
float: right;
padding: 0.5em;
position: fixed;
2014-02-06 08:40:54 +01:00
right: 80px;
2014-01-17 12:53:23 +01:00
top: 5px;
2014-02-19 09:20:52 +01:00
background-image: url(../images/add.png);
background-repeat: no-repeat;
background-size: 20px 20px;
background-position: 4px 4px;
2014-02-24 18:18:34 +01:00
.border_radius_button_normal;
2014-01-17 12:53:23 +01:00
.dimension_width_height_s;
2014-02-19 09:20:52 +01:00
&:before {
content: " ";
font-size: 2em;
color: @egw_color_2_a;
line-height: 0.6em;
background-color: white;
}
&:hover {.box_shadow_standard_light_hover;}
&:focus {.box_shadow_standard_light_inset;}
2014-01-17 12:53:23 +01:00
}
2014-02-24 18:18:34 +01:00
// ##############################################################################
// quick_add selectbox
// ADD different APPs
2014-01-17 12:53:23 +01:00
select#quick_add_selectbox {
visibility: hidden;
border: medium none;
box-shadow: 0 0 0 rgba(0, 0, 0, 0);
position: relative !important;
right: 1px !important;
2014-02-19 09:20:52 +01:00
top: -3px;
left: 35px;
2014-01-17 12:53:23 +01:00
}
2014-01-17 12:53:23 +01:00
}
2014-02-24 18:18:34 +01:00
// ##############################################################################
// JS ERROR BUTTON
// blinking red IMG
2014-01-21 18:30:43 +01:00
img#topmenu_info_error{
2014-02-06 08:40:54 +01:00
.dimension_width_height_s;
2014-02-05 08:43:53 +01:00
position: fixed;
2014-02-05 09:59:18 +01:00
/*.Button_size_square_16;*/
2014-02-05 08:43:53 +01:00
.border_normal;
.box_shadow_standard_light;
2014-02-06 08:40:54 +01:00
padding: 5px;
2014-02-05 09:59:18 +01:00
top: 6px;
2014-02-06 08:40:54 +01:00
right: 115px;
2014-02-05 08:43:53 +01:00
z-index: 200;
&:hover {.box_shadow_standard_light_hover;}
&:active {.Complete_Button_active;}
&:focus {.box_shadow_standard_light_inset;}
2014-02-05 09:59:18 +01:00
background-color: @color_warning;
2014-02-05 09:59:18 +01:00
//blinking
-moz-transition:all 1s ease-in-out;
-webkit-transition:all 1s ease-in-out;
-o-transition:all 1s ease-in-out;
-ms-transition:all 1s ease-in-out;
transition:all 1s ease-in-out;
/* order: name, direction, duration, iteration-count, timing-function */
2014-02-05 09:59:18 +01:00
-moz-animation:blink normal 2s infinite ease-in-out; /* Firefox */
-webkit-animation:blink normal 2s infinite ease-in-out; /* Webkit */
-ms-animation:blink normal 2s infinite ease-in-out; /* IE */
animation:blink normal 2s infinite ease-in-out; /* Opera and prob css3 final iteration */
2014-01-21 18:30:43 +01:00
}
2014-02-06 08:40:54 +01:00
@-moz-keyframes blink {0%{opacity:1;} 50%{opacity:0;} 100%{opacity:1;}} /* Firefox */
@-webkit-keyframes blink {0%{opacity:1;} 50%{opacity:0;} 100%{opacity:1;}} /* Webkit */
@-ms-keyframes blink {0%{opacity:1;} 50%{opacity:0;} 100%{opacity:1;}} /* IE */
@keyframes blink {0%{opacity:1;} 50%{opacity:0;} 100%{opacity:1;}} /* Opera and prob css3 final iteration */
2014-01-08 19:49:09 +01:00
}
2014-01-08 19:49:09 +01:00
// Ende items
2013-11-11 19:45:33 +01:00
/* ################################################################################################################
* Sidebar
2013-11-15 18:05:59 +01:00
* ################################################################################################################*/
2013-11-20 09:41:08 +01:00
2014-02-24 18:18:34 +01:00
// AREA UNDER LOGO
2013-11-11 19:45:33 +01:00
#egw_fw_sidebar {
2013-11-14 20:11:29 +01:00
position: fixed;
overflow: hidden;
top: 57px;
left: 0px;
bottom: 20px;
width: 225px;
2013-12-30 18:32:42 +01:00
.background_color_5_gray;
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
//SIDE AREA
2013-11-14 20:11:29 +01:00
#egw_fw_sidemenu {
position: absolute;
top: 0px;
bottom: 4px;
left: 4px;
right: 5px;
overflow: hidden;
z-index: 0;
padding-top: 0.6em;
2014-01-23 09:44:38 +01:00
font-size: 0.9em;
2014-02-24 18:18:34 +01:00
// SIDE AREA
2013-11-14 20:11:29 +01:00
.egw_fw_ui_scrollarea_outerdiv{
2013-12-30 18:32:42 +01:00
.background_color_5_gray;
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
//####################################################
// AREA for
// DRAG AND DROP
2013-12-16 10:37:26 +01:00
div.ui-sortable {
2014-01-08 19:49:09 +01:00
2013-12-16 10:37:26 +01:00
div {
padding: 3px 0 1px 3px;
cursor: pointer;
}
}
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
//####################################################
// All Tabs
// DRAG AND DROP
2014-01-08 19:49:09 +01:00
.egw_fw_ui_sidemenu_entry_header {
2014-02-24 18:18:34 +01:00
display: block;
margin: 0 0;
/*padding: 0px 5px 5px 10px;*/
2013-12-16 10:37:26 +01:00
2014-02-24 18:18:34 +01:00
&:hover {
.background_color_15_gray;
.rounded(5px);
}
2014-01-08 19:49:09 +01:00
2014-02-24 18:18:34 +01:00
&:active {.box_shadow_standard_light_inset;}
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
h1 {
margin: 0 0 10px 0;
padding-top: 0.31em;
padding-left: 3em;
.color_40_gray;
/*font-size: 12px;*/
.fontsize_l;
line-height: 17px;
}
2014-02-24 18:18:34 +01:00
object {background-color: @gray_0; .dimension_width_height_m;}
2014-02-24 18:18:34 +01:00
}
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
// ####################################
// #### #
// ### IMG | ADD NAME #
// ### #
// ### #
//###########################################
2013-11-14 20:11:29 +01:00
// aktive APP
// aktiver Tab
2014-02-24 18:18:34 +01:00
// rounded Corner Left Top
2013-11-14 20:11:29 +01:00
.egw_fw_ui_sidemenu_entry_header_active {
//
cursor: pointer;
2013-12-20 10:36:43 +01:00
background-image: url("../images/clear.png");
2013-11-25 04:16:41 +01:00
background-position: 95% -3000px;
background-repeat: no-repeat;
2013-11-11 19:45:33 +01:00
2013-12-30 18:32:42 +01:00
.background_color_10_gray;
.border_radius ( 5px, 0px, 0px, 27px );
.bordered (@gray_30, @gray_30, @gray_30, @gray_30);
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
margin: 0 0 0 0;
border-bottom: none;
2014-01-20 19:34:20 +01:00
height: 33px;
2014-01-10 06:26:09 +01:00
img {padding-left: 9px; padding-top: 6px; height: 18px;}
2013-11-11 19:45:33 +01:00
2014-01-08 19:49:09 +01:00
h1 {text-transform: uppercase; font-size: 1.4em; .color_100_gray; padding-top: .8em;}
2013-11-11 19:45:33 +01:00
2013-12-30 18:32:42 +01:00
&:hover {.box_shadow_standard_light_hover; .border_radius ( 5px, 0px, 0px, 27px );}
&:active {.box_shadow_standard_light_active; .border_radius ( 5px, 0px, 0px, 27px );}
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
&:focus {
background-image: url("../images/ajax-loader.gif");
background-repeat: no-repeat;
background-position: 90% 50%;
.Complete_Button_active;
2013-11-11 19:45:33 +01:00
2013-12-30 18:32:42 +01:00
.background_color_25_gray;
2013-11-14 20:11:29 +01:00
}
2014-01-08 19:49:09 +01:00
object {
margin-left: 14px;
margin-top: 8px;
.rounded (3px;);
.dimension_width_height_s;
}
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
.egw_fw_ui_ajaxloader {margin-top: -26px;}
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
}
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
//####################################################
2013-11-14 20:11:29 +01:00
// Rahmen um APP Einstellungen
2014-02-24 18:18:34 +01:00
// egw_fw_ui_sidemenu_entry_content
// ########################################
// ## ##
// ## ##
// ########################################
// ########################################
// ## ##
// ## ##
// ########################################
// ########################################
// ## ##
// ## ##
// ########################################
// ########################################
// ## div.egw_fw_ui_category ##
// ## &:nth-last-of-type(-n+3) ##
// #####################################
2013-11-14 20:11:29 +01:00
.egw_fw_ui_sidemenu_entry_content {
display: block;
background-image: none;
2013-12-30 18:32:42 +01:00
.border_radius (0, 0, 27px, 0);
border-color: @gray_30;
2013-11-14 20:11:29 +01:00
border-style: solid;
border-width: 0px;
margin: 0 0 2em 0;
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
// rounded Corner on bottom
2014-01-23 09:44:38 +01:00
&:nth-last-of-type(-n+3) {
2013-11-14 20:11:29 +01:00
padding: 5px 0.3em 1.5em 0.3em;
margin: 0 0 10px 0;
2013-12-30 18:32:42 +01:00
.background_color_30_gray;
.border_radius (0, 0, 27px, 0);
border-color: @gray_30;
2013-11-14 20:11:29 +01:00
}
2014-01-08 19:49:09 +01:00
2014-02-24 18:18:34 +01:00
//###################################################
// *letztes Element */
// has round corners
2014-01-08 19:49:09 +01:00
div.egw_fw_ui_category:nth-last-of-type(-n+3) {
.border_radius (0, 0, 15px, 0);
}
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
//###################################################
// Schaltflächen - Elements
2013-11-14 20:11:29 +01:00
// Normal
.egw_fw_ui_category {
margin: 10px 5px 0px 5px;
padding: 0.5em 1em;
cursor: pointer;
// border-top: 7px solid;
2013-12-30 18:32:42 +01:00
border-color: @gray_30;
background-color: @gray_10;
2014-01-08 19:49:09 +01:00
2013-12-30 18:32:42 +01:00
/*background-color: @egw_color_2_d;*/
2014-01-08 19:49:09 +01:00
2013-12-30 18:32:42 +01:00
.border_radius(3px,3px,3px,3px);
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
h1 {
margin: 5px 0px 3px 5px;
padding: 0px 0px 0px 15px;
2014-02-18 09:01:12 +01:00
line-height: 1em;
2014-02-24 18:18:34 +01:00
.fontsize_l;
2013-11-14 20:11:29 +01:00
background-image:url(../images/arrow_left.png);
background-repeat:no-repeat;
background-position:left center;
}
2014-01-08 19:49:09 +01:00
2014-02-24 18:18:34 +01:00
div.egw_fw_ui_category:nth-last-of-type(-n+3) {
img.egw_fw_ui_sidemenu_listitem_icon {
display: block;
}
}
2013-11-14 20:11:29 +01:00
}
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
//#################################
// Hover
// on Mouse over change color
2013-11-14 20:11:29 +01:00
.egw_fw_ui_category:hover {
2013-12-30 18:32:42 +01:00
.background_color_40_gray;
2013-11-14 20:11:29 +01:00
padding: 0.5em 1em;
}
2014-01-08 19:49:09 +01:00
/*######################*/
2013-12-08 22:36:30 +01:00
// Active State
2014-02-24 18:18:34 +01:00
// change Background color in Blue
// See all Elements
2013-11-14 20:11:29 +01:00
.egw_fw_ui_category_active {
border-bottom-width: 0px;
2013-12-08 22:36:30 +01:00
margin-top: 4px;
2014-01-08 19:49:09 +01:00
2014-01-10 06:26:09 +01:00
background-color: @egw_color_2_a;
2014-01-08 19:49:09 +01:00
2013-12-08 22:36:30 +01:00
/*.background-color-50-gray;*/
2013-12-30 18:32:42 +01:00
.color_5_gray;
.border_radius(3px,3px,3px,3px) !important;
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
h1 {
2014-01-08 19:49:09 +01:00
background-image:url(../images/arrow_down.png);
2014-02-18 09:01:12 +01:00
line-height: 1em;
font-size: 12px;
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
a {
2014-01-08 19:49:09 +01:00
color: #FFF;
2013-11-11 19:45:33 +01:00
2014-01-14 09:20:19 +01:00
img {.dimension_width_height_s;}
2014-02-24 18:18:34 +01:00
&:hover {
padding: 5px 30px 5px 0px;
width: 200px;
.background_color_10_gray;
.color_50_gray;
.Complete_Button_hover;
}
}
}
2013-11-11 19:45:33 +01:00
2014-01-10 06:26:09 +01:00
&:hover {background-color: @egw_color_2_d; .transition (0.2s, ease-out);}
2013-11-14 20:11:29 +01:00
}
2013-11-20 09:41:08 +01:00
2013-12-08 22:36:30 +01:00
2014-01-08 19:49:09 +01:00
2013-12-08 22:36:30 +01:00
2013-11-14 20:11:29 +01:00
}
.egw_fw_ui_sidemenu_entry_content_bottom {
border-width: 0px 1px 1px 1px;
}
.egw_fw_ui_sidemenu_entry_header_bottom {
border-width: 0px;
2013-12-30 18:32:42 +01:00
border-color: @gray_0;
2013-11-14 20:11:29 +01:00
}
.egw_fw_ui_sidemenu_entry_icon {
2014-02-24 18:18:34 +01:00
display: inline-block;
.dimension_height_m;
2014-01-08 19:49:09 +01:00
2014-02-24 18:18:34 +01:00
padding-left: 0;
padding-right: 0px;
float: left;
2014-01-08 19:49:09 +01:00
2014-02-24 18:18:34 +01:00
/*filter grey*/
.img_filter_gray;
}
2013-11-14 20:11:29 +01:00
}
2014-02-24 18:18:34 +01:00
} // SIDEMENU ENDE
2013-11-14 20:11:29 +01:00
2014-01-08 19:49:09 +01:00
2013-12-08 22:36:30 +01:00
/*#################################*/
2013-11-14 20:11:29 +01:00
// Trenner (Splitter)
#egw_fw_splitter {
position: absolute;
2013-12-30 18:32:42 +01:00
.background_color_30_gray;
2013-12-12 21:27:20 +01:00
width: 5px;
2014-01-30 19:55:29 +01:00
top: 40px;
2013-11-14 20:11:29 +01:00
bottom: 3px;
right: 0px;
&:hover {background-color: @egw_color_1;}
}
// Ende Sidebar
2014-01-28 16:41:22 +01:00
2013-11-11 19:45:33 +01:00
// Menu Seite links
2014-01-28 16:41:22 +01:00
}
2014-02-24 18:18:34 +01:00
2014-01-28 16:41:22 +01:00
/** DON"T MOVE THIS **/
.egw_fw_ui_splitter_vertical {
background-image: url(../images/splitter_vert.png);
background-position: center;
background-repeat: no-repeat;
.background_color_30_gray;
position: absolute;
width: 5px;
height: 100%;
cursor: col-resize;
}
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
//####################################################
// Submenu / Unterpunkte in der Seitenleiste
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
// ########################################
// ## ##
// ## ##
// ## ############################# ##
// ## #.egw_fw_ui_category_content# ##
// ## ############################# ##
// ## ##
// ########################################
// ########################################
// ## ##
// ## ##
// ########################################
// ########################################
// ## ##
// ## ##
// ########################################
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
2013-11-11 19:45:33 +01:00
.egw_fw_ui_category_content {
2013-12-30 18:32:42 +01:00
.background_color_0_gray;
2013-11-11 19:45:33 +01:00
border-top-width: 0;
border-left: 0px solid;
border-bottom: 0px solid;
margin-left: 4px;
margin-top: 0px;
padding-bottom: 5px;
2013-11-14 20:11:29 +01:00
padding-left: 0px;
2013-11-11 19:45:33 +01:00
padding-top: 14px;
margin-right: 5px;
2013-12-30 18:32:42 +01:00
/*min-height: 50px;*/
2014-02-24 18:18:34 +01:00
// Last Element rounded
&:last-of-type{
2014-01-23 09:44:38 +01:00
.border_radius (0, 0, 10px, 0);
border-color: @gray_30;
}
2014-01-08 19:49:09 +01:00
2014-02-24 18:18:34 +01:00
img { .dimension_height_s; vertical-align: middle;}
2014-01-08 19:49:09 +01:00
2014-02-24 18:18:34 +01:00
&:hover {
.background_color_0_gray;
border-color: @gray_50;
}
2014-01-08 19:49:09 +01:00
2013-12-12 21:27:20 +01:00
input#uical_select_owner_multiple{
2013-12-30 18:32:42 +01:00
.dimension_height_s;
2014-01-08 19:49:09 +01:00
vertical-align: middle;
}
select#calendar_filter{
margin-top: 4px;
2013-12-12 21:27:20 +01:00
}
// Favoriten anlegen und löschen
2013-11-15 18:05:59 +01:00
.sidebox-favorites{} // ist in etemplate2.less definiert
2013-11-11 19:45:33 +01:00
}
2014-02-24 18:18:34 +01:00
//####################################################
// Submenu / Unterpunkte in der Seitenleiste
// ########################################
// ## ##
// ## ##
// ## ############################# ##
// ## #.egw_fw_ui_category_content# ##
// ## ############################# ##
// ## # # ##
// ## # .egw_fw_ui_sidemenu_listitem ##
// ## # # ##
// ## ############################# ##
// ## ##
// ########################################
// ########################################
// ## ##
// ## ##
// ########################################
// ########################################
// ## ##
// ## ##
// ########################################
2013-11-11 19:45:33 +01:00
// Sub Sub Menu Item
.egw_fw_ui_sidemenu_listitem {
2013-11-15 18:05:59 +01:00
2013-11-20 09:41:08 +01:00
padding: 0.5em 0;
2013-12-30 18:32:42 +01:00
margin: 0px 0 5px 0px;
2013-11-20 09:41:08 +01:00
position: relative;
2013-12-30 18:32:42 +01:00
min-height: 16px;
background-color: @gray_0;
2013-11-11 19:45:33 +01:00
2013-11-20 09:41:08 +01:00
// Icon before
img.egw_fw_ui_sidemenu_listitem_icon {
/*display: none;*/
.dimension_width_height_xs;
2013-11-20 09:41:08 +01:00
padding: 0px;
2013-12-04 06:23:37 +01:00
margin: 0px 5px;
2013-11-20 09:41:08 +01:00
float: left;
2014-01-08 19:49:09 +01:00
2013-11-20 09:41:08 +01:00
}
input {
height: 16px;
width: 81% !important;
}
input[type="image"] {
height: 10px;
width: 10px !important;
2013-11-20 09:41:08 +01:00
margin-left: 1px;
} // mehrere Benutzer auswählen
select { max-width: 85% !important; }
// Icon rechts der Liste - Auswahl Button
img {
height: 9px;
width: 9px;
2013-11-20 09:41:08 +01:00
padding: 0px;
float: right;
}
// normale Links
a {
// .Complete_Button_text;
2014-02-17 09:27:52 +01:00
padding: 5px 0px 5px 5px;
2013-11-20 09:41:08 +01:00
text-decoration: none;
min-width: 5em;
&:hover{
2013-12-30 18:32:42 +01:00
.color_100_gray;
2013-11-20 09:41:08 +01:00
}
&:active {
.box_shadow_standard_light_inset;
}
}
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
div {
a:first-child{
.Complete_Button_text;
// padding: 2px;
// padding: 5px 30px 5px 0px;
width: 72% !important;
// background-color: red;
}
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
a:first-child:hover {
// .Complete_Button_text_hover;
// .background-color-30-gray;
// padding: 5px 30px 5px 0px;
// width: 200px;
}
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
//löschen
a:nth-child(2){
position: absolute;
right: 0;
top: 0;
background: transparent;
padding: 0px 2px 0 2px;
width: 10px;
min-width: 5px;
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
img {
margin: 0 0 0 0;
padding: 0em 0em 0 0em;
height: 10px;
width: 10px;
}
}
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
a:nth-child(2):hover {
2013-12-30 18:32:42 +01:00
background-color: @color_warning;
2013-11-14 20:11:29 +01:00
.Complete_Button_Icon_hover ;
2013-12-30 18:32:42 +01:00
.color_0_gray;
2013-11-14 20:11:29 +01:00
// width: auto;
}
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
}
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
// Submenu Hover Item - gelb
2013-11-15 18:05:59 +01:00
&:hover{
2013-12-30 18:32:42 +01:00
.color_100_gray;
2013-11-20 09:41:08 +01:00
background-color: @egw_color_1_e;
padding: 0.5em 0;
2014-01-08 19:49:09 +01:00
2013-11-20 09:41:08 +01:00
}
2013-11-14 20:11:29 +01:00
} // .egw_fw_ui_sidemenu_listitem
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
// ##############################################################
// ## ##
// ## ##
2013-11-11 19:45:33 +01:00
// Scrollarea
.egw_fw_ui_scrollarea
{
2013-11-14 20:11:29 +01:00
overflow: hidden;
z-index: 0;
2013-11-11 19:45:33 +01:00
}
.egw_fw_ui_scrollarea_button
{
2013-11-14 20:11:29 +01:00
position: absolute;
display: block;
width: 100%;
height: 12px;
z-index: 2;
2013-11-11 19:45:33 +01:00
}
.egw_fw_ui_scrollarea_button_up.egw_fw_ui_scrollarea_button_hover,
.egw_fw_ui_scrollarea_button_down.egw_fw_ui_scrollarea_button_hover
{
2013-11-14 20:11:29 +01:00
background-image:url(../images/scroll_hover.png);
2013-11-11 19:45:33 +01:00
}
.egw_fw_ui_scrollarea_button_disabled
{
2013-11-14 20:11:29 +01:00
display: none !important;
2013-11-11 19:45:33 +01:00
}
.egw_fw_ui_scrollarea_button_up, .egw_fw_ui_scrollarea_button_down
{
2013-11-14 20:11:29 +01:00
height: 14px;
background-image:url(../images/scroll.png);
background-color: white;
background-repeat: no-repeat;
background-position: center;
2013-11-11 19:45:33 +01:00
}
.egw_fw_ui_scrollarea_button_up
{
2013-11-14 20:11:29 +01:00
top: 0px;
2013-11-11 19:45:33 +01:00
}
.egw_fw_ui_scrollarea_button_down
{
2013-11-14 20:11:29 +01:00
bottom: 0px;
2013-11-11 19:45:33 +01:00
}
.egw_fw_ui_scrollarea_outerdiv
{
2013-11-14 20:11:29 +01:00
height: 100%;
2013-11-11 19:45:33 +01:00
}
.egw_fw_content_browser_div {
2013-11-14 20:11:29 +01:00
display: block;
overflow-x: hidden;
overflow-y: auto;
2013-11-14 20:11:29 +01:00
/* background-color: RGB(240, 240, 255);*/
2013-11-11 19:45:33 +01:00
}
.egw_fw_content_browser_div_loading {
2013-11-14 20:11:29 +01:00
position: absolute;
z-index: 1000;
top: 0px;
left: 0px;
2014-02-24 18:18:34 +01:00
.dimension_width_height_s;
2013-11-14 20:11:29 +01:00
background-image: url(../images/ajax-loader.gif);
background-position: center;
background-repeat: no-repeat;
2013-11-11 19:45:33 +01:00
}
2014-02-24 18:18:34 +01:00
/* ##################################################################################################
* Main
// ##################################################################################
// ## egw_divLogo ## Toggle up / down | egw_fw_topmenu #
// ## ## #
// ##################################################################################
// ## ## #
// ## ## #
// ## ## #
// ## ## #
// ## ## #
// ## SIDEBAR ## MAIN #
// ## ## #egw_fw_main #
// ## ## #
// ## ## #
// ## ## #
/* #####################################################################################################
2013-11-14 20:11:29 +01:00
*/
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
#egw_fw_main {
padding: 0;
width: auto;
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
// ########################################
// APPS
2014-02-03 11:05:36 +01:00
// CHrome hack
@media screen and (-webkit-min-device-pixel-ratio:0) {
2014-02-03 11:05:36 +01:00
#egw_fw_tabs {
/*Chrome needs margin-top*/
margin-top: 3px;
}
}
2014-02-24 18:18:34 +01:00
// #######################################
// AREA for Content
2013-11-14 20:11:29 +01:00
#egw_fw_tabs{
position: relative;
background-color: transparent;
float: left;
width: 100%;
2014-02-24 18:18:34 +01:00
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
// ############################################################
// Tabnavigation
// Statusmeldung
2013-12-12 21:27:20 +01:00
// definiert in layout_messages.less
2013-11-14 20:11:29 +01:00
// .egw_fw_ui_app_header_container { }
2013-11-11 19:45:33 +01:00
2013-12-12 21:27:20 +01:00
// ######################tabs header ##########################
2013-11-14 20:11:29 +01:00
// # # # # # # # # # ####
// # # # # # # # # # ####
2013-12-12 21:27:20 +01:00
// # tab header # # # # # # # ####
2013-11-14 20:11:29 +01:00
// # # # # # # # # # ####
// ############################################################
// Div um Tabs
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
.egw_fw_ui_tabs_header {
2014-01-17 12:53:23 +01:00
margin: 0px 0 0 0;
2013-12-18 05:33:46 +01:00
padding: 0px 1px 0px 1px;
2013-11-14 20:11:29 +01:00
background-position: bottom;
background-repeat: repeat-x;
background-color: transparent;
2014-01-17 12:53:23 +01:00
height: 34px;
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
h1 {
/*float: left;*/
display: inline;
width: 100%;
text-align: center;
-webkit-margin-before: 0;
-webkit-margin-after: 0;
}
2014-02-24 18:18:34 +01:00
img{
text-align:center;
float: none;
margin: 0 auto;
.dimension_width_height_s;
}
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
// Tab
2013-11-14 20:11:29 +01:00
// ##########
// # #
// # #
2013-11-14 20:11:29 +01:00
// ##########
// inaktive
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
.egw_fw_ui_tab_header {
text-align: center;
padding-left: 0;
padding-right: 0;
position: relative;
2014-01-08 19:49:09 +01:00
.border_radius(5px,0, 0, 5px);
2013-12-18 05:33:46 +01:00
background: transparent;
2014-01-17 09:10:35 +01:00
display: inline-table;
2014-01-17 12:53:23 +01:00
margin: 0px 5px 0px 0px;
2014-01-21 18:30:43 +01:00
padding: 2px 2px 5px 2px;
2013-11-14 20:11:29 +01:00
cursor: pointer;
2013-12-18 05:33:46 +01:00
border-width: 1px 1px 0 1px;
2013-11-14 20:11:29 +01:00
border-style: solid;
2013-12-30 18:32:42 +01:00
border-color: @gray_30;;
2013-11-14 20:11:29 +01:00
background-repeat:repeat-x;
2014-01-17 12:53:23 +01:00
height: 24px;
2014-02-24 18:18:34 +01:00
&:hover {
/*.background_color_20_gray ;*/
background-color: @egw_color_1_e;
}
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
// APP Name
2014-01-08 19:49:09 +01:00
h1 {
2014-02-24 18:18:34 +01:00
/*font-size: 100%;*/
.fontsize_m;
line-height: 1em;
margin:0 1px 2px 2px;
2014-01-08 19:49:09 +01:00
vertical-align: super;
}
2014-02-24 18:18:34 +01:00
// Images
2013-12-18 05:33:46 +01:00
img.egw_fw_ui_tab_icon {
display: inline-block;
2014-01-08 19:49:09 +01:00
.dimension_width_height_s;
margin: 5px 1px 0 1em;
2014-01-11 19:51:59 +01:00
.img_filter_gray;
2014-01-08 19:49:09 +01:00
}
2014-02-24 18:18:34 +01:00
// FOR SVG IMG
object {
.dimension_width_height_s;
2014-01-30 19:55:29 +01:00
/*background-color: @gray_0;*/
margin: 8px 1px 0 5px;
.border_radius(5px,0, 0, 5px);
}
2013-11-14 20:11:29 +01:00
}
// ##########
// # #
// # #
// ##########
/*aktive Tabs*/
2013-11-14 20:11:29 +01:00
.egw_fw_ui_tab_header_active {
border-width: 1px 1px 0px 1px !important;
2014-01-20 19:34:20 +01:00
/*padding: 0 0 5px !important;*/
2013-12-30 18:32:42 +01:00
.background_color_30_gray ;
2013-11-14 20:11:29 +01:00
background-image:none !important;
2013-11-11 19:45:33 +01:00
2013-12-30 18:32:42 +01:00
&:hover {.background_color_25_gray ;}
2013-12-18 05:33:46 +01:00
2014-01-08 19:49:09 +01:00
// aktive Bilder
img.egw_fw_ui_tab_icon {
display: inline-block;
.dimension_width_height_s;
}
/*aktive Objekte*/
object {
.dimension_width_height_m;
2014-01-20 19:34:20 +01:00
margin: 0px 1px 0 5px;
.border_radius(2px,0, 0, 2px);
background-color: @gray_30;
}
2013-11-14 20:11:29 +01:00
}
}
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
// #################
// # close x #
// # #
// #################
2013-11-14 20:11:29 +01:00
.egw_fw_ui_tab_close_button {
right: 1px;
top: 1px;
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
display: inline-block;
2014-01-21 18:30:43 +01:00
.dimension_width_height_xs;
2014-01-08 19:49:09 +01:00
margin-left: 0px;
2013-11-14 20:11:29 +01:00
background-repeat: no-repeat;
background-position: center;
background-image: url(../images/close_button.png);
2014-01-15 18:57:00 +01:00
background-size: 10px 10px;
2013-11-14 20:11:29 +01:00
float: right;
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
:hover {
background-image: url(../images/close_button_hover.png);
}
}
// Ende Tabs
}
2014-02-24 18:18:34 +01:00
// ################################
2013-11-14 20:11:29 +01:00
// Hover
2014-02-24 18:18:34 +01:00
// no effect ?
2013-11-14 20:11:29 +01:00
.egw_fw_ui_tab_header_hover{
2014-02-24 18:18:34 +01:00
background-color: @egw_color_1_e;
2013-11-14 20:11:29 +01:00
}
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
// Der eigentliche Inhalt der APP
// ############################################################
// # # # # # # # # # ####
// # # # # # # # # # ####
// ############################################################
//
// Content / Inhalt
//
// ############################################################
2013-11-11 19:45:33 +01:00
2013-11-14 20:11:29 +01:00
.egw_fw_ui_tab_content {
2013-11-11 19:45:33 +01:00
2014-01-08 19:49:09 +01:00
2013-12-12 04:50:22 +01:00
width: 100%;
2013-12-12 21:27:20 +01:00
padding: 0px;
2013-12-12 04:50:22 +01:00
margin: 0;
2014-01-16 18:04:26 +01:00
overflow-x: hidden;
2014-02-24 18:18:34 +01:00
overflow-y: hidden;
2013-12-12 04:50:22 +01:00
2014-01-08 19:49:09 +01:00
2013-12-12 04:50:22 +01:00
> div {
width: 100%;
padding: 0 0 0 0;
};
2013-11-14 20:11:29 +01:00
}
// Ende Main
}
2013-11-11 19:45:33 +01:00
2014-02-24 18:18:34 +01:00
/* ##################################################################
2014-02-03 11:05:36 +01:00
* ADMIN INDEX Tree
2014-02-24 18:18:34 +01:00
/* ##################################################################
2014-02-03 11:05:36 +01:00
*/
.standartTreeImage {
.img_filter_gray;
.dimension_width_height_s;
}
// old image (only) buttons, which should only display an image, no button
button.image_button {
background: none;
border: none;
}
2014-02-12 16:50:18 +01:00
//