2013-11-18 20:31:54 +01:00
|
|
|
/**
|
|
|
|
* EGroupware: CSS with less preprocessor
|
2013-12-12 21:27:35 +01:00
|
|
|
|
|
|
|
* FILEMANAGER
|
2013-11-18 20:31:54 +01:00
|
|
|
*
|
|
|
|
* Please do NOT change app.css directly, instead change app.less and compile it!
|
|
|
|
*
|
|
|
|
* @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 filemanager
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
@import (reference) "../../../pixelegg/less/def_buttons.less";
|
|
|
|
@import (reference) "../../../pixelegg/less/def_design_pattern_color_font_shadow.less";
|
2013-12-12 21:27:35 +01:00
|
|
|
@import (less) "../default/app.css";
|
2013-11-18 20:31:54 +01:00
|
|
|
|
|
|
|
/*/*****************************************************************
|
|
|
|
// sidebar
|
|
|
|
|
|
|
|
*/// defind in layout_raster.less /*
|
|
|
|
|
|
|
|
|
|
|
|
/*//******************************************************************
|
|
|
|
// iframe*/
|
|
|
|
|
2013-12-30 18:34:29 +01:00
|
|
|
#filemanager-index_filemanager-index-header_left {
|
|
|
|
float: left;
|
|
|
|
height: 42px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2013-12-12 21:27:35 +01:00
|
|
|
div.filemanager_navigation {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
|
2013-12-30 18:34:29 +01:00
|
|
|
|
|
|
|
img {
|
|
|
|
.dimension_width_height_s;
|
|
|
|
.Complete_Button_Icon_normal;
|
|
|
|
padding: 0.2em;
|
|
|
|
|
|
|
|
&:hover {.Complete_Button_Icon_hover;}
|
|
|
|
}
|
|
|
|
|
|
|
|
img#filemanager-index_tarp {
|
|
|
|
border: none;
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
-moz-box-shadow: none;
|
|
|
|
box-shadow: none;
|
|
|
|
&:hover {
|
|
|
|
border: none;
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
-moz-box-shadow: none;
|
|
|
|
box-shadow: none;
|
|
|
|
.background_color_10_gray;
|
|
|
|
}
|
|
|
|
}
|
2013-12-12 21:27:35 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-12-30 18:34:29 +01:00
|
|
|
/*Up img*/
|
|
|
|
img#filemanager-index_up {position: relative; top: 5px;}
|
|
|
|
|
|
|
|
/*Home img*/
|
|
|
|
img#filemanager-index_home {position: relative; top: 5px;}
|
|
|
|
|
|
|
|
|
|
|
|
/*Pfad */
|
2013-12-12 21:27:35 +01:00
|
|
|
div.filemanager_navigation > label {
|
|
|
|
float: left;
|
|
|
|
/*position: absolute;*/
|
|
|
|
left: 55px;
|
2013-12-30 18:34:29 +01:00
|
|
|
right: 567px;
|
2013-12-12 21:27:35 +01:00
|
|
|
/*padding-top: 3px;*/
|
|
|
|
font-size: 140%;
|
2013-12-30 18:34:29 +01:00
|
|
|
top: 0px;
|
2013-12-12 21:27:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-12-30 18:34:29 +01:00
|
|
|
|
|
|
|
|
2013-12-12 21:27:35 +01:00
|
|
|
/*Buttons / Tarp / FileUpload*/
|
|
|
|
#filemanager-index_buttons {
|
2013-12-30 18:34:29 +01:00
|
|
|
/* float: right;
|
2013-12-12 21:27:35 +01:00
|
|
|
left: 0px;
|
|
|
|
right: 30%;
|
2013-12-30 18:34:29 +01:00
|
|
|
position: relative;*/
|
2014-01-18 09:12:05 +01:00
|
|
|
top: -15px;
|
2013-12-30 18:34:29 +01:00
|
|
|
|
|
|
|
float: left;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
|
2013-12-12 21:27:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#filemanager-index_buttons > * {
|
|
|
|
padding-left: 3px;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-right: 0.2em;
|
|
|
|
}
|
2013-11-18 20:31:54 +01:00
|
|
|
|
|
|
|
|
2013-12-12 21:27:35 +01:00
|
|
|
div.filemanager_navigation > label > input {
|
2014-01-17 09:10:46 +01:00
|
|
|
width: 95%;
|
2013-12-12 21:27:35 +01:00
|
|
|
}
|
|
|
|
|
2013-11-18 20:31:54 +01:00
|
|
|
|
2014-01-11 19:52:09 +01:00
|
|
|
#filemanager-index{
|
2013-11-18 20:31:54 +01:00
|
|
|
|
|
|
|
.et2_file{
|
2014-01-17 09:10:46 +01:00
|
|
|
/*background-color: @egw_color_2_a;*/
|
2014-01-18 09:12:05 +01:00
|
|
|
.dimension_height_m;
|
2014-01-17 12:53:31 +01:00
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: "+";
|
2014-01-18 09:12:05 +01:00
|
|
|
font-size: 25px;
|
2014-01-17 12:53:31 +01:00
|
|
|
color: #ffc200;
|
2014-01-18 09:12:05 +01:00
|
|
|
line-height: 40px;
|
2014-01-17 12:53:31 +01:00
|
|
|
padding-right: 0em;
|
|
|
|
position: relative;
|
2014-01-18 09:12:05 +01:00
|
|
|
top: -8px;
|
2014-01-17 12:53:31 +01:00
|
|
|
background-color: @egw_color_2_a;
|
|
|
|
.border_radius_button_lefttop;
|
2014-01-17 09:10:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {.Complete_Button_add_only_plus_hover;}
|
|
|
|
&:active {background-color: @color_positive_action_active !important;}
|
2014-01-06 09:47:48 +01:00
|
|
|
|
2014-01-17 12:53:31 +01:00
|
|
|
|
2014-01-17 09:10:46 +01:00
|
|
|
input#filemanager-index_upload {
|
2014-01-17 12:53:31 +01:00
|
|
|
margin-left: 2em;
|
2014-01-18 09:12:05 +01:00
|
|
|
margin-right: -2em;
|
2014-01-17 12:53:31 +01:00
|
|
|
position: relative;
|
2014-01-18 09:12:05 +01:00
|
|
|
top: -39px;
|
|
|
|
width: 217px;
|
2014-01-17 09:10:46 +01:00
|
|
|
|
|
|
|
}
|
2014-01-06 09:47:48 +01:00
|
|
|
|
2014-01-17 09:10:46 +01:00
|
|
|
div.progress {width: 0px;}
|
2013-12-12 21:27:35 +01:00
|
|
|
|
2013-11-18 20:31:54 +01:00
|
|
|
|
|
|
|
|
|
|
|
}
|
2013-12-12 21:27:35 +01:00
|
|
|
|
|
|
|
|
2013-11-18 20:31:54 +01:00
|
|
|
#filemanager-index_tarp {
|
2013-12-12 21:27:35 +01:00
|
|
|
width: 32px !important;
|
|
|
|
height: 32px !important;
|
2014-01-18 09:12:05 +01:00
|
|
|
position: relative;
|
|
|
|
top: 13px;
|
2013-12-12 21:27:35 +01:00
|
|
|
}
|
2014-01-11 19:52:09 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.filters{
|
|
|
|
|
|
|
|
vertical-align: center;
|
|
|
|
|
|
|
|
#filemanager-index_filter{ margin-top: 0.5em;}
|
|
|
|
}
|
2013-12-12 21:27:35 +01:00
|
|
|
|
2013-11-18 20:31:54 +01:00
|
|
|
|
|
|
|
} // iframe
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*// Dialog filemanager
|
|
|
|
// #####################################################*/
|
2013-11-27 08:21:32 +01:00
|
|
|
#filemanager-select{
|
2013-12-12 21:27:35 +01:00
|
|
|
|
|
|
|
padding: 0px 8px 0 0;
|
|
|
|
|
|
|
|
.dialog-header{
|
|
|
|
.et2_button_icon{
|
|
|
|
margin: 4px 4px 0 4px;
|
2013-12-30 18:34:29 +01:00
|
|
|
.bordered (@gray_0, @gray_0, @gray_0, @gray_0);
|
2013-12-12 21:27:35 +01:00
|
|
|
.rounded (3px);
|
2013-12-30 18:34:29 +01:00
|
|
|
background-color: @gray_0;
|
2013-12-12 21:27:35 +01:00
|
|
|
height: auto;
|
|
|
|
width: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.selectPathContainer {
|
|
|
|
overflow: auto;
|
|
|
|
width: 470px;
|
2013-12-30 18:34:29 +01:00
|
|
|
margin_top: 0px;
|
2013-12-12 21:27:35 +01:00
|
|
|
height: 32px;
|
|
|
|
|
|
|
|
input {height: 20px;}
|
|
|
|
|
2013-11-27 08:21:32 +01:00
|
|
|
}
|
2013-12-12 21:27:35 +01:00
|
|
|
}
|
|
|
|
#filemanager-select_apps{
|
2013-12-30 18:34:29 +01:00
|
|
|
.background_color_15_gray;
|
2013-12-12 21:27:35 +01:00
|
|
|
.et2_button_icon{
|
|
|
|
height: auto;
|
|
|
|
width: 24px;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
table#filemanager-select_dir{
|
2013-11-27 08:21:32 +01:00
|
|
|
.border_normal;
|
2013-12-12 21:27:35 +01:00
|
|
|
|
2013-12-30 18:34:29 +01:00
|
|
|
tr:nth-child(even) {background: @color_even;}
|
|
|
|
tr:nth-child(odd) {background: @color_odd;}
|
2013-12-12 21:27:35 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//Icon in Table
|
|
|
|
.vfsMimeIcon {width: 16px; height: 16px;}
|
|
|
|
|
|
|
|
|
2013-11-27 08:21:32 +01:00
|
|
|
}
|
2013-11-18 20:31:54 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-12-12 21:27:35 +01:00
|
|
|
// Ende filemanager
|
|
|
|
//
|