2014-12-05 10:46:57 +01:00
|
|
|
/**
|
|
|
|
* EGroupware: Stylite Pixelegg template - mobile theme
|
|
|
|
*
|
|
|
|
* 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 Hadi Nategh <hn@stylite.de>
|
|
|
|
* @package pixelegg
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
2014-11-26 17:54:04 +01:00
|
|
|
@import "pixelegg.less";
|
2015-12-23 10:09:50 +01:00
|
|
|
@import (reference) "../less/def_mobile.less";
|
2016-02-08 15:36:54 +01:00
|
|
|
|
|
|
|
@keyframes fw-firstload {
|
|
|
|
0%, 20%, 50%, 80%, 100% {
|
|
|
|
transform:translateY(0);
|
|
|
|
-webkit-transform: translateY(0);
|
|
|
|
-moz-transform:translateY(0);
|
|
|
|
}
|
|
|
|
40% {
|
|
|
|
transform: translateY(-30px);
|
|
|
|
-webkit-transform: translateY(-30px);
|
|
|
|
-moz-transform: translateY(-30px);
|
|
|
|
}
|
|
|
|
60% {
|
|
|
|
transform: translateY(-15px);
|
|
|
|
-webkit-transform: translateY(-15px);
|
|
|
|
-moz-transform: translateY(-15px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-17 18:13:38 +01:00
|
|
|
@media all {
|
2014-12-01 16:28:27 +01:00
|
|
|
body{
|
2016-03-04 10:21:40 +01:00
|
|
|
|
2014-12-02 18:02:30 +01:00
|
|
|
background-color: transparent;
|
2014-12-03 13:59:28 +01:00
|
|
|
// iOS appHeader class
|
|
|
|
div.egw_fw_mobile_iOS_popup_appHeader{
|
2014-12-08 11:58:53 +01:00
|
|
|
padding-top:15px;
|
2014-12-03 13:59:28 +01:00
|
|
|
}
|
2014-12-02 18:02:30 +01:00
|
|
|
div.egw_fw_mobile_popup_appHeader {
|
2016-06-24 15:56:04 +02:00
|
|
|
display: block !important;
|
2014-12-08 11:58:53 +01:00
|
|
|
height: 32px !important;
|
2014-12-03 13:59:28 +01:00
|
|
|
background-size : 2px;
|
2014-12-02 18:02:30 +01:00
|
|
|
font-size: 150% !important;
|
2014-12-03 13:59:28 +01:00
|
|
|
border-bottom: 3px solid #679fd2 !important;
|
2014-12-02 18:02:30 +01:00
|
|
|
border-top: none !important;
|
|
|
|
width: 100%;
|
2014-12-08 11:58:53 +01:00
|
|
|
line-height: 32px !important;
|
2015-03-25 16:54:26 +01:00
|
|
|
|
2014-12-02 18:02:30 +01:00
|
|
|
}
|
2016-03-04 10:21:40 +01:00
|
|
|
|
2016-02-08 15:36:54 +01:00
|
|
|
#egw_fw_firstload {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
2016-02-10 14:37:36 +01:00
|
|
|
.background_color_egw_dark;
|
2016-02-08 15:36:54 +01:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
&:before{
|
|
|
|
content:"";
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2016-05-05 20:27:07 +02:00
|
|
|
background-image: url(../../api/templates/default/images/logo64x64.png);
|
2016-02-08 15:36:54 +01:00
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 64px;
|
2016-04-25 14:16:34 +02:00
|
|
|
-webkit-animation: fw-firstload 2s infinite;
|
|
|
|
animation: fw-firstload 2s infinite;
|
|
|
|
-moz-animation: fw-firstload 2s infinite;
|
2016-02-08 15:36:54 +01:00
|
|
|
}
|
|
|
|
}
|
2016-03-04 10:21:40 +01:00
|
|
|
|
2014-12-12 13:26:48 +01:00
|
|
|
//###################
|
|
|
|
//# #
|
|
|
|
//# Grid & NM #
|
|
|
|
//# #
|
|
|
|
//###################
|
|
|
|
table.egwGridView_outer{
|
|
|
|
thead{
|
|
|
|
tr{
|
|
|
|
th{
|
|
|
|
font-size: small !important;
|
|
|
|
}
|
2015-01-26 12:42:28 +01:00
|
|
|
}
|
|
|
|
}
|
2015-02-10 12:42:38 +01:00
|
|
|
tbody{
|
|
|
|
tr{
|
|
|
|
touch-action:initial;
|
2015-12-07 10:08:09 +01:00
|
|
|
td time, td.et2_date , td.et2_date_ro{
|
|
|
|
float: right;
|
2015-12-23 10:09:50 +01:00
|
|
|
.mob-fontsize-s;
|
2015-12-07 10:08:09 +01:00
|
|
|
}
|
2015-12-10 18:07:25 +01:00
|
|
|
td {
|
|
|
|
position: relative;
|
|
|
|
.mobile_cat_col {
|
|
|
|
position: absolute;
|
|
|
|
min-height: 100%;
|
|
|
|
bottom:0;
|
|
|
|
top:0;
|
|
|
|
width:10px;
|
|
|
|
display: block;
|
2016-03-04 10:21:40 +01:00
|
|
|
|
2015-12-22 10:50:24 +01:00
|
|
|
}
|
|
|
|
span.cat_.mobile_cat_col {
|
|
|
|
background: #F5F5F5;
|
2015-12-10 18:07:25 +01:00
|
|
|
}
|
|
|
|
}
|
2015-02-10 12:42:38 +01:00
|
|
|
}
|
|
|
|
}
|
2014-12-12 13:26:48 +01:00
|
|
|
}
|
2016-02-01 19:09:15 +01:00
|
|
|
/*BOF close/back button styling*/
|
|
|
|
span.egw_fw_mobile_popup_close {
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
float:left;
|
|
|
|
background-image: url('../images/cancelled.png');/*url(../images/topmenu_items/mobile/menu_active.png);*/
|
|
|
|
-webkit-filter: contrast(2);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
z-index: 1000;
|
|
|
|
padding-right: 5px;
|
2017-06-21 12:48:07 +02:00
|
|
|
top:1px;
|
|
|
|
left: 15px;
|
2016-02-01 19:09:15 +01:00
|
|
|
background-position: 3px 7px;
|
|
|
|
position: fixed;
|
|
|
|
}
|
2016-03-04 10:21:40 +01:00
|
|
|
|
2016-02-01 19:09:15 +01:00
|
|
|
/*EOF close/back button styling*/
|
2014-11-26 17:54:04 +01:00
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
#egw_fw_basecontainer{
|
|
|
|
background:white;
|
|
|
|
|
|
|
|
#egw_fw_main {
|
2016-03-31 15:58:42 +02:00
|
|
|
margin-top:15px;
|
2016-02-04 17:31:34 +01:00
|
|
|
#egw_fw_tabs {
|
|
|
|
margin-top:-3px;
|
|
|
|
}
|
2015-11-16 16:45:04 +01:00
|
|
|
}
|
2016-02-04 17:31:34 +01:00
|
|
|
//###################
|
|
|
|
//# #
|
|
|
|
//# TOOLBAR #
|
|
|
|
//# #
|
|
|
|
//###################
|
|
|
|
#egw_fw_top_toolbar{
|
2016-03-31 15:58:42 +02:00
|
|
|
width:300px;
|
|
|
|
position:absolute;
|
|
|
|
.egw_fw_logout {
|
2016-04-22 12:50:05 +02:00
|
|
|
display:inline-block;
|
2016-06-24 15:56:04 +02:00
|
|
|
margin-left:60px;
|
2016-03-31 15:58:42 +02:00
|
|
|
a#topmenu_logout{
|
|
|
|
background-image: url(../images/logout.png);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
background-size: 24px 24px;
|
|
|
|
display: inline-block;
|
|
|
|
background-position: center;
|
|
|
|
}
|
|
|
|
}
|
2016-06-24 15:56:04 +02:00
|
|
|
#egw_fw_appsToggle {display: none;}
|
2016-02-04 17:31:34 +01:00
|
|
|
div.egw_fw_ui_tabs_header{
|
|
|
|
max-height: 60px;
|
|
|
|
width: 60%;
|
|
|
|
margin-left: 0;
|
|
|
|
overflow-x: scroll;
|
|
|
|
position: initial;
|
|
|
|
white-space: nowrap;
|
2016-03-14 16:56:32 +01:00
|
|
|
position: absolute;
|
2016-02-04 17:31:34 +01:00
|
|
|
left: 83%;
|
|
|
|
top: 15px;
|
|
|
|
height: 50px;
|
|
|
|
span{
|
|
|
|
margin:0;
|
|
|
|
overflow: visible;
|
|
|
|
height:38px;
|
|
|
|
width:50px;
|
|
|
|
border-width: 1px 1px 1px 1px;
|
|
|
|
border:none;
|
|
|
|
border-radius: 10px;
|
2014-11-26 17:54:04 +01:00
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
img{
|
|
|
|
height:32px !important;
|
|
|
|
width:32px !important;
|
|
|
|
}
|
|
|
|
h1{
|
|
|
|
display:none;
|
|
|
|
}
|
2014-11-24 17:20:55 +01:00
|
|
|
}
|
|
|
|
}
|
2014-11-20 19:10:10 +01:00
|
|
|
}
|
2014-11-19 18:32:30 +01:00
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
.egw_fw_top_toolbar>div:hover{
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
-moz-box-shadow: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2014-11-26 17:54:04 +01:00
|
|
|
|
2014-11-19 18:32:30 +01:00
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
//FW Menu
|
|
|
|
div#egw_fw_menu{
|
|
|
|
background-image: url(../images/topmenu_items/mobile/menu_active.png);
|
|
|
|
cursor: pointer;
|
|
|
|
position: fixed;
|
2016-02-08 17:36:12 +01:00
|
|
|
width: 50px;
|
2016-02-04 17:31:34 +01:00
|
|
|
height: 50px;
|
2016-02-08 17:36:12 +01:00
|
|
|
background-size: 24px 24px;
|
2016-02-04 17:31:34 +01:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
z-index: 999;
|
2016-02-08 17:36:12 +01:00
|
|
|
background-position:center;
|
2016-03-31 15:58:42 +02:00
|
|
|
margin-left:10px;
|
2016-02-04 17:31:34 +01:00
|
|
|
&:hover {
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
-moz-box-shadow: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
&:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
div#egw_fw_menu:active {
|
2015-11-16 16:45:04 +01:00
|
|
|
-webkit-box-shadow: none;
|
|
|
|
-moz-box-shadow: none;
|
|
|
|
box-shadow: none;
|
2015-03-12 13:22:49 +01:00
|
|
|
}
|
2016-02-04 17:31:34 +01:00
|
|
|
div#egw_fw_topmenu_items{
|
2016-04-27 17:51:28 +02:00
|
|
|
width: 100%;
|
|
|
|
display: block;
|
2016-02-04 17:31:34 +01:00
|
|
|
ul{
|
2016-04-27 17:51:28 +02:00
|
|
|
|
|
|
|
display:inline-block;
|
2016-02-04 17:31:34 +01:00
|
|
|
padding:0;
|
|
|
|
margin:0;
|
|
|
|
list-style-type: none;
|
2016-04-27 17:51:28 +02:00
|
|
|
width:100%;
|
|
|
|
backgroud-color:white;
|
2016-02-04 17:31:34 +01:00
|
|
|
li{
|
|
|
|
display: -webkit-inline-box;
|
|
|
|
display: -moz-inline-box;
|
2016-04-27 17:51:28 +02:00
|
|
|
display: block;
|
2016-02-04 17:31:34 +01:00
|
|
|
padding:2px;
|
2016-04-27 17:51:28 +02:00
|
|
|
margin-left:20px;
|
|
|
|
width:90%;
|
2016-02-04 17:31:34 +01:00
|
|
|
&:hover {
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
-moz-box-shadow: none;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2016-04-27 17:51:28 +02:00
|
|
|
a {
|
|
|
|
background-position: left;
|
|
|
|
padding-left: 3em;
|
|
|
|
color: #636363;;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 30px;
|
|
|
|
text-decoration: none;
|
|
|
|
width:100%;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 24px 24px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2015-03-12 13:22:49 +01:00
|
|
|
}
|
2016-04-27 17:51:28 +02:00
|
|
|
a#topmenu_home, a#topmenu_logout {display: none;}
|
|
|
|
a#topmenu_home {
|
2016-02-04 17:31:34 +01:00
|
|
|
background-image: url(../images/topmenu_items/mobile/home.png);
|
2016-04-27 17:51:28 +02:00
|
|
|
display: none;
|
2016-02-04 17:31:34 +01:00
|
|
|
}
|
|
|
|
a#topmenu_prefs {
|
|
|
|
background-image: url(../images/topmenu_items/mobile/setup.png);
|
|
|
|
}
|
2016-04-27 17:51:28 +02:00
|
|
|
a#topmenu_acl {
|
2016-02-04 17:31:34 +01:00
|
|
|
background-image: url(../images/topmenu_items/mobile/access.png);
|
2015-03-13 13:05:15 +01:00
|
|
|
}
|
2016-04-27 17:51:28 +02:00
|
|
|
a#topmenu_cats {
|
2016-02-04 17:31:34 +01:00
|
|
|
background-image: url(../images/topmenu_items/mobile/category.png);
|
2014-11-27 13:46:05 +01:00
|
|
|
}
|
2016-04-27 17:51:28 +02:00
|
|
|
a#topmenu_password {
|
2016-02-04 17:31:34 +01:00
|
|
|
background-image: url(../images/topmenu_items/mobile/password.png);
|
2015-03-12 13:22:49 +01:00
|
|
|
}
|
2016-02-04 17:31:34 +01:00
|
|
|
a#topmenu_search{
|
|
|
|
background-image: url(../images/topmenu_items/mobile/search.png);
|
|
|
|
}
|
2014-11-24 17:20:55 +01:00
|
|
|
}
|
2014-11-19 18:32:30 +01:00
|
|
|
}
|
2016-02-08 17:36:12 +01:00
|
|
|
#egw_fw_userinfo {
|
2016-04-22 12:50:05 +02:00
|
|
|
height:60px;
|
2016-02-08 17:36:12 +01:00
|
|
|
z-index:1000;
|
2016-03-31 15:58:42 +02:00
|
|
|
display: inline-block;
|
2016-06-24 15:56:04 +02:00
|
|
|
float:right;
|
2016-02-08 17:36:12 +01:00
|
|
|
span.avatar {
|
|
|
|
display: inline-block;
|
|
|
|
float:left;
|
2016-04-22 12:50:05 +02:00
|
|
|
height: 45px;
|
|
|
|
width: 45px;
|
|
|
|
margin-top: 1px;
|
2016-02-08 17:36:12 +01:00
|
|
|
}
|
|
|
|
span.user {
|
|
|
|
display: inline-block;
|
|
|
|
height: 50px;
|
|
|
|
margin-left: 8px;
|
|
|
|
font-size: 12pt;
|
|
|
|
overflow: hidden;
|
|
|
|
max-width: 225px;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
margin-top:17px;
|
|
|
|
}
|
|
|
|
}
|
2016-03-04 10:21:40 +01:00
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
}//End of toolbar
|
|
|
|
|
|
|
|
// ######################tabs header ##########################
|
|
|
|
// # # # # # # # # # ####
|
|
|
|
// # # # # # # # # # ####
|
|
|
|
// # tab header # # # # # # # ####
|
|
|
|
// # # # # # # # # # ####
|
|
|
|
// ############################################################
|
|
|
|
// Div Tabs
|
|
|
|
|
|
|
|
.egw_fw_ui_tabs_header {
|
|
|
|
margin: 0px 0 0 0;
|
|
|
|
padding: 1px 1px 0px 0px;
|
|
|
|
background-position: bottom;
|
|
|
|
background-repeat: repeat-x;
|
|
|
|
background-color: transparent;
|
|
|
|
height: 34px;
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
display: inline;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
-webkit-margin-before: 0;
|
|
|
|
-webkit-margin-after: 0;
|
|
|
|
}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
img{
|
|
|
|
text-align:center;
|
|
|
|
float: none;
|
|
|
|
margin: 0 auto;
|
|
|
|
.dimension_width_height_l;
|
|
|
|
}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
// Tab
|
|
|
|
// ##########
|
|
|
|
// # #
|
|
|
|
// # #
|
|
|
|
// ##########
|
|
|
|
// Inactive
|
2014-11-17 18:13:38 +01:00
|
|
|
|
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
|
|
|
|
.egw_fw_ui_tab_header {
|
|
|
|
padding-left: 0;
|
|
|
|
position: relative;
|
|
|
|
background: transparent;
|
2014-11-17 18:13:38 +01:00
|
|
|
display: inline-block;
|
2016-02-04 17:31:34 +01:00
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
margin: 0px 5px 0px 0px;
|
|
|
|
padding: 2px 5px 7px 2px;
|
|
|
|
cursor: pointer;
|
|
|
|
background-repeat:repeat-x;
|
|
|
|
height: 38px;
|
|
|
|
width: 97%;
|
|
|
|
&:hover {
|
|
|
|
background-color: none !important;
|
|
|
|
}
|
|
|
|
&:active {
|
|
|
|
-webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.6);
|
|
|
|
-moz-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.6);
|
|
|
|
box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.6);
|
|
|
|
}
|
|
|
|
// APP Name
|
|
|
|
h1 {
|
|
|
|
.fontsize_xl;
|
|
|
|
line-height: 1em;
|
|
|
|
margin:0 15px 2px 2px;
|
|
|
|
vertical-align: super;
|
|
|
|
padding-left: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Images
|
|
|
|
img.egw_fw_ui_tab_icon {
|
|
|
|
display: inline-block;
|
|
|
|
.dimension_width_height_l;
|
|
|
|
margin: 5px 1px 0 1em;
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
.img_filter_gray;
|
|
|
|
}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
// FOR SVG IMG
|
|
|
|
object {
|
|
|
|
.dimension_width_height_l;
|
|
|
|
margin: 8px 1px 0 5px;
|
|
|
|
.border_radius(5px,0, 0, 5px);
|
2014-11-17 18:13:38 +01:00
|
|
|
|
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
// ##########
|
|
|
|
// # #
|
|
|
|
// # #
|
|
|
|
// ##########
|
|
|
|
/*Active Tabs*/
|
|
|
|
.egw_fw_ui_tab_header_active {
|
|
|
|
border-width: 1px 1px 0px 1px !important;
|
|
|
|
.background_color_egw_light;
|
|
|
|
&:hover {.background_color_egw_light ;}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
// Active image
|
|
|
|
img.egw_fw_ui_tab_icon {
|
|
|
|
display: inline-block;
|
|
|
|
.dimension_width_height_l;
|
|
|
|
-webkit-filter: contrast(2);
|
|
|
|
-ms-filter:contrast(2);
|
|
|
|
-moz-filter:contrast(2);
|
|
|
|
-o-filter:contrast(2);
|
|
|
|
}
|
|
|
|
/*Active object*/
|
|
|
|
object {
|
2014-11-17 18:13:38 +01:00
|
|
|
.dimension_width_height_l;
|
2016-02-04 17:31:34 +01:00
|
|
|
margin: 0px 1px 0 5px;
|
|
|
|
.border_radius(2px,0, 0, 2px);
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
background-color: @gray_30;
|
|
|
|
}
|
2014-11-17 18:13:38 +01:00
|
|
|
}
|
|
|
|
}
|
2016-02-04 17:31:34 +01:00
|
|
|
//###################
|
|
|
|
//# #
|
|
|
|
//# SIDEBAR #
|
|
|
|
//# #
|
|
|
|
//###################
|
2016-04-27 17:51:28 +02:00
|
|
|
#egw_fw_sidebar.avatarSubmenu {top:203px;}
|
2016-02-04 17:31:34 +01:00
|
|
|
#egw_fw_sidebar{
|
2016-03-31 15:58:42 +02:00
|
|
|
top: 55px;
|
2016-02-04 17:31:34 +01:00
|
|
|
bottom: 5px;
|
|
|
|
//SIDE AREA
|
|
|
|
#egw_fw_sidemenu {
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
bottom: 4px;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
overflow-y: auto;
|
2016-02-05 18:09:48 +01:00
|
|
|
-webkit-overflow-scrolling:touch;
|
2016-02-04 17:31:34 +01:00
|
|
|
z-index: 0;
|
|
|
|
padding-top: 0.6em;
|
|
|
|
font-size: 0.9em;
|
2016-05-04 12:41:36 +02:00
|
|
|
background-color:white;
|
2016-02-04 17:31:34 +01:00
|
|
|
.egw_fw_ui_sidemenu_entry_apps {
|
|
|
|
.egw_fw_ui_sidemenu_entry_header
|
|
|
|
{
|
|
|
|
margin:0px 5px 0px 2px;
|
|
|
|
padding: 4px 10px 0 16px;
|
|
|
|
overflow: visible;
|
|
|
|
height:38px;
|
|
|
|
border:none;
|
|
|
|
img{
|
|
|
|
height:32px !important;
|
|
|
|
width:32px !important;
|
|
|
|
}
|
|
|
|
display: block;
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
&:hover {
|
|
|
|
.background_color_15_gray;
|
|
|
|
.rounded(0px);
|
|
|
|
}
|
2014-11-20 19:10:10 +01:00
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
&:active {.box_shadow_standard_light_inset;}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
h1 {
|
|
|
|
margin: 0 0 10px 0;
|
|
|
|
padding-top: 0.31em;
|
|
|
|
padding-left: 3em;
|
|
|
|
.color_40_gray;
|
|
|
|
.fontsize_xl;
|
|
|
|
line-height: 17px;
|
|
|
|
}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
object {background-color: @gray_0; .dimension_width_height_m;}
|
|
|
|
}
|
|
|
|
}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2014-11-20 19:10:10 +01:00
|
|
|
.egw_fw_ui_sidemenu_entry_header_active {
|
|
|
|
//
|
|
|
|
cursor: pointer;
|
|
|
|
background-image: url("../images/clear.png");
|
|
|
|
background-position: 95% -3000px;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
|
|
|
.background_color_10_gray;
|
|
|
|
.bordered (@gray_30, @gray_30, @gray_30, @gray_30);
|
|
|
|
|
|
|
|
margin: 0 0 0 0;
|
|
|
|
border-bottom: none;
|
|
|
|
height: 33px;
|
2014-11-17 18:13:38 +01:00
|
|
|
|
|
|
|
|
2014-11-20 19:10:10 +01:00
|
|
|
img {padding-left: 9px; padding-top: 6px; height: 18px;}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2016-02-10 14:37:36 +01:00
|
|
|
h1 {text-transform: uppercase; font-size: 12px; .color_100_gray; padding-top: 4px;padding-left:32px;}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2016-04-27 17:51:28 +02:00
|
|
|
&:hover {.box_shadow_standard_light_hover; border-radius: 0;}
|
|
|
|
&:active {.box_shadow_standard_light_active; border-radius: 0;}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2014-11-20 19:10:10 +01:00
|
|
|
&:focus {
|
|
|
|
background-image: url("../images/ajax-loader.gif");
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 90% 50%;
|
|
|
|
.Complete_Button_active;
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2014-11-20 19:10:10 +01:00
|
|
|
.background_color_25_gray;
|
|
|
|
}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2014-11-20 19:10:10 +01:00
|
|
|
object {
|
|
|
|
margin-left: 14px;
|
|
|
|
margin-top: 8px;
|
2015-03-17 14:37:03 +01:00
|
|
|
.rounded (3px);
|
2014-11-20 19:10:10 +01:00
|
|
|
.dimension_width_height_s;
|
|
|
|
}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2014-11-20 19:10:10 +01:00
|
|
|
.egw_fw_ui_ajaxloader {margin-top: -26px;}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2014-11-20 19:10:10 +01:00
|
|
|
}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2014-11-20 19:10:10 +01:00
|
|
|
.egw_fw_ui_sidemenu_entry_content {
|
|
|
|
display: block;
|
|
|
|
background-image: none;
|
2015-11-16 16:45:04 +01:00
|
|
|
.border_radius (0, 0, 0px, 0);
|
2014-11-20 19:10:10 +01:00
|
|
|
border-color: @gray_30;
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 0px;
|
|
|
|
margin: 0 0 2em 0;
|
2016-03-31 15:58:42 +02:00
|
|
|
background-color:white;
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2014-11-20 19:10:10 +01:00
|
|
|
// rounded Corner on bottom
|
|
|
|
&:nth-last-of-type(-n+3) {
|
2016-02-10 14:37:36 +01:00
|
|
|
border-bottom: 1px solid @gray_30;
|
2014-11-20 19:10:10 +01:00
|
|
|
}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2016-02-10 14:37:36 +01:00
|
|
|
& > div {background: none !important;}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2014-11-20 19:10:10 +01:00
|
|
|
//###################################################
|
|
|
|
// has round corners
|
|
|
|
div.egw_fw_ui_category:nth-last-of-type(-n+3) {
|
2016-02-10 14:37:36 +01:00
|
|
|
border-bottom: 1px solid @gray_30;
|
2014-11-20 19:10:10 +01:00
|
|
|
}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2014-11-20 19:10:10 +01:00
|
|
|
//###################################################
|
|
|
|
// Normal
|
|
|
|
.egw_fw_ui_category {
|
|
|
|
margin: 4px 5px 5px 5px;
|
|
|
|
padding: 0.5em 1em 0.5em 0;
|
|
|
|
cursor: pointer;
|
|
|
|
// border-top: 7px solid;
|
|
|
|
border-color: @gray_30;
|
|
|
|
background-color: @gray_10;
|
|
|
|
|
|
|
|
.border_radius(3px,3px,3px,3px);
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
margin: 5px 0px 3px 5px;
|
|
|
|
padding: 0px 0px 0px 15px;
|
|
|
|
line-height: 1em;
|
|
|
|
.fontsize_l;
|
|
|
|
background-image:url(../images/arrow_left.png);
|
|
|
|
background-repeat:no-repeat;
|
|
|
|
background-position:left center;
|
|
|
|
}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2014-11-20 19:10:10 +01:00
|
|
|
div.egw_fw_ui_category:nth-last-of-type(-n+3) {
|
2015-11-16 16:45:04 +01:00
|
|
|
img.egw_fw_ui_sidemenu_listitem_icon {
|
|
|
|
display: block;
|
|
|
|
}
|
2014-11-20 19:10:10 +01:00
|
|
|
}
|
|
|
|
}
|
2016-02-04 17:31:34 +01:00
|
|
|
|
2015-11-16 16:45:04 +01:00
|
|
|
div.egw_fw_ui_category_content {
|
|
|
|
border-radius: 0;
|
2016-02-10 14:37:36 +01:00
|
|
|
font-size: 12px;
|
|
|
|
.sidebox-favorites {
|
|
|
|
ul.favorites {
|
|
|
|
li.ui-menu-item {
|
|
|
|
min-height: 18px;
|
|
|
|
padding-top:9px;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
max-width: 100%;
|
|
|
|
overflow-x: hidden;
|
|
|
|
a{
|
|
|
|
div.sideboxstar{padding-right: 13px;}
|
|
|
|
div.ui-icon-heart{padding-right:10px;}
|
|
|
|
img{padding-right:5px;}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-03-04 10:21:40 +01:00
|
|
|
}
|
2015-11-16 16:45:04 +01:00
|
|
|
}
|
2014-11-20 19:10:10 +01:00
|
|
|
//#################################
|
|
|
|
// Hover
|
|
|
|
// on Mouse over change color
|
|
|
|
.egw_fw_ui_category:hover {
|
|
|
|
.background_color_40_gray;
|
|
|
|
padding: 0.5em 1em 0.5em 0;
|
|
|
|
}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2014-11-20 19:10:10 +01:00
|
|
|
/*######################*/
|
|
|
|
// Active State
|
|
|
|
// change Background color in Blue
|
|
|
|
// See all Elements
|
|
|
|
.egw_fw_ui_category_active {
|
|
|
|
border-bottom-width: 0px;
|
|
|
|
margin-top: 4px;
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2014-11-20 19:10:10 +01:00
|
|
|
background-color: @egw_color_2_a;
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2014-11-20 19:10:10 +01:00
|
|
|
.color_5_gray;
|
|
|
|
.border_radius(3px,3px,3px,3px) !important;
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2014-11-20 19:10:10 +01:00
|
|
|
h1 {
|
|
|
|
background-image:url(../images/arrow_down.png);
|
|
|
|
line-height: 1em;
|
|
|
|
font-size: 12px;
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2014-11-20 19:10:10 +01:00
|
|
|
a {
|
|
|
|
color: #FFF;
|
2014-11-17 18:13:38 +01:00
|
|
|
|
|
|
|
|
2014-11-20 19:10:10 +01:00
|
|
|
img {.dimension_width_height_s;}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2014-11-20 19:10:10 +01:00
|
|
|
&:hover {
|
|
|
|
padding: 5px 30px 5px 0px;
|
|
|
|
width: 200px;
|
|
|
|
.background_color_10_gray;
|
|
|
|
.color_50_gray;
|
|
|
|
.Complete_Button_hover;
|
|
|
|
}
|
|
|
|
}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2014-11-20 19:10:10 +01:00
|
|
|
}
|
2014-11-17 18:13:38 +01:00
|
|
|
|
2014-11-20 19:10:10 +01:00
|
|
|
&:hover {background-color: @egw_color_2_d; .transition (0.2s, ease-out);}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.egw_fw_ui_sidemenu_entry_content_bottom {
|
|
|
|
border-width: 0px 1px 1px 1px;
|
|
|
|
}
|
|
|
|
.egw_fw_ui_sidemenu_entry_header_bottom {
|
|
|
|
border-width: 0px;
|
|
|
|
border-color: @gray_0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.egw_fw_ui_sidemenu_entry_icon {
|
|
|
|
display: inline-block;
|
|
|
|
.dimension_height_m;
|
|
|
|
|
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 0px;
|
|
|
|
float: left;
|
2016-03-04 10:21:40 +01:00
|
|
|
|
2014-11-20 19:10:10 +01:00
|
|
|
/*filter grey*/
|
|
|
|
.img_filter_gray;
|
|
|
|
}
|
2016-02-04 17:31:34 +01:00
|
|
|
} // SIDEMENU End
|
|
|
|
}//End of Sidebar
|
|
|
|
//ToggleClass
|
2014-11-20 19:10:10 +01:00
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
.sidebar-toggle{
|
2016-04-22 12:50:05 +02:00
|
|
|
#egw_fw_top_toolbar {
|
|
|
|
div#egw_fw_menu {background-image: url(../images/topmenu_items/mobile/menu.png);}
|
|
|
|
#egw_fw_userinfo, .egw_fw_logout, #egw_fw_appsToggle {display: none !important;}
|
2016-02-04 17:31:34 +01:00
|
|
|
}
|
|
|
|
#egw_fw_sidebar{
|
2016-02-08 17:36:12 +01:00
|
|
|
top: 70px;
|
2016-02-04 17:31:34 +01:00
|
|
|
#egw_fw_sidemenu{
|
|
|
|
width:82px !important;
|
|
|
|
.egw_fw_ui_sidemenu_entry_content{
|
|
|
|
display:none !important;
|
2014-11-19 18:32:30 +01:00
|
|
|
}
|
2016-02-04 17:31:34 +01:00
|
|
|
.egw_fw_ui_sidemenu_entry_header_active {
|
|
|
|
&:hover {
|
|
|
|
border-radius:0;
|
|
|
|
background-image: url("../images/ajax-loader.gif");
|
|
|
|
}
|
|
|
|
img{
|
|
|
|
padding:0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.egw_fw_ui_sidemenu_entry_header{
|
2014-11-24 17:20:55 +01:00
|
|
|
margin:0px 5px 0px 2px;
|
2016-02-04 17:31:34 +01:00
|
|
|
padding: 4px 10px 0 16px;
|
2014-11-24 17:20:55 +01:00
|
|
|
overflow: visible;
|
2014-11-19 18:32:30 +01:00
|
|
|
height:38px;
|
|
|
|
width:50px;
|
2014-11-25 11:05:23 +01:00
|
|
|
border:none;
|
2014-11-19 18:32:30 +01:00
|
|
|
img{
|
|
|
|
height:32px !important;
|
|
|
|
width:32px !important;
|
|
|
|
}
|
|
|
|
h1{
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-02-04 17:31:34 +01:00
|
|
|
}
|
|
|
|
#egw_fw_topmenu_items {
|
|
|
|
display:none !important;
|
2014-11-17 18:13:38 +01:00
|
|
|
}
|
|
|
|
}
|
2014-11-26 17:54:04 +01:00
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
//###################################
|
|
|
|
//# #
|
|
|
|
//# FOOTER #
|
|
|
|
//# #
|
|
|
|
//###################################
|
|
|
|
#egw_fw_footer {
|
|
|
|
display:none;
|
|
|
|
}
|
2014-11-26 17:54:04 +01:00
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
//###################################
|
|
|
|
//# #
|
|
|
|
//# APP HEADER NAVIGATOR #
|
|
|
|
//# #
|
|
|
|
//###################################
|
|
|
|
.egw_fw_ui_app_header_container {
|
|
|
|
display:none;
|
|
|
|
}
|
2014-11-26 17:54:04 +01:00
|
|
|
|
2016-02-04 17:31:34 +01:00
|
|
|
.egw_fw_content_browser_div {
|
|
|
|
padding: 0;
|
|
|
|
background-color: white;
|
2014-11-25 18:31:34 +01:00
|
|
|
}
|
2016-02-04 17:31:34 +01:00
|
|
|
|
|
|
|
//###################################
|
|
|
|
//# #
|
|
|
|
//# POPUP FRAME #
|
|
|
|
//# #
|
|
|
|
//###################################
|
|
|
|
.egw_fw_mobile_popup_container{
|
|
|
|
width:100%;
|
|
|
|
height:100%;
|
2016-03-14 16:56:32 +01:00
|
|
|
position:absolute;
|
2016-02-04 17:31:34 +01:00
|
|
|
display: none;
|
|
|
|
z-index: 999;
|
2017-06-21 12:48:07 +02:00
|
|
|
background: rgba(192, 192, 192, 0.47);
|
2016-02-04 17:31:34 +01:00
|
|
|
.egw_fw_mobile_popupFrame {
|
2017-06-21 12:48:07 +02:00
|
|
|
width: 70%;
|
|
|
|
height: 70%;
|
2016-02-04 17:31:34 +01:00
|
|
|
visibility: hidden;
|
|
|
|
display: block;
|
2017-06-21 12:48:07 +02:00
|
|
|
background: #fff;
|
|
|
|
margin: 8% auto;
|
|
|
|
border: 1px solid silver;
|
2016-02-04 17:31:34 +01:00
|
|
|
}
|
|
|
|
|
2016-01-22 17:27:44 +01:00
|
|
|
}
|
2016-02-04 17:31:34 +01:00
|
|
|
//###################################
|
|
|
|
//# #
|
|
|
|
//# popup dialog headbar #
|
|
|
|
//# #
|
|
|
|
//###################################
|
|
|
|
.dialogHeadbar {
|
|
|
|
height: 50px;
|
|
|
|
box-shadow: 0px 4px 5px 2px silver;
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
background: #0c5da5;
|
|
|
|
top:0;
|
|
|
|
right:0;
|
|
|
|
z-index:1;
|
|
|
|
.et2_button_with_image, .et2_button_text {
|
|
|
|
height: 46px;
|
|
|
|
margin: 1px;
|
|
|
|
margin-left: 3px;
|
|
|
|
}
|
|
|
|
td {
|
|
|
|
margin-left:70px;
|
|
|
|
display: block;
|
|
|
|
}
|
2016-01-22 17:27:44 +01:00
|
|
|
}
|
2016-02-04 17:31:34 +01:00
|
|
|
|
|
|
|
//###################################
|
|
|
|
//# #
|
|
|
|
//# Mail App specific style #
|
|
|
|
//# #
|
|
|
|
//###################################
|
|
|
|
#mail-display {
|
|
|
|
min-height: initial !important;
|
|
|
|
.mailDisplayContainer {
|
|
|
|
top:140px;
|
|
|
|
}
|
2015-04-21 15:01:40 +02:00
|
|
|
}
|
|
|
|
}
|
2015-02-17 11:42:00 +01:00
|
|
|
}
|