egroupware_official/preferences/templates/pixelegg/app.less

173 lines
4.0 KiB
Plaintext
Raw Normal View History

2014-01-10 12:07:08 +01:00
/**
* EGroupware: CSS with less preprocessor
*
* PREFERENCES
*
* 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 preferences
* @version $Id$
*/
@import (reference) "../../../pixelegg/less/def_buttons.less";
@import (reference) "../../../pixelegg/less/def_design_pattern_color_font_shadow.less";
@import (less) "../default/app.css";
/* #############################################################################
// iframe
// Rahmen + padding**/
/*############################################
# # #
# # #
# # #
# # #
# # #
# # #
# # #
# # iframge #
# # #
# # #
# # #
# # #
# # #
# # #
##############################################*/
2014-01-11 19:52:09 +01:00
/*app.css Stylite*/
table.prefTable {
width: 100%;
}
tr.prefRow {
position: relative;
}
td.prefName {
width: 50%;
}
tr.prefRow > td {
vertical-align: bottom; /* otherwise help will cover bigger prefValue */
}
.prefHelp {
position: fixed;
background-color: @gray_10;
/*border-radius: 10px;*/
.box_shadow_message;
/* .border_normal;*/
border: 3px solid @egw_color_2_e;
.border_radius (0px, 15px, 15px, 0px);
right: 5px;
left: 5px;
/*top: 5px;*/
top: 0px;
padding: 10px;
padding-left: 25px;
background-position-x: 5px;
/*border: 2px gray solid;*/
min-width: 100px;
max-width: 90%;
z-index: 100000;
2014-01-11 19:52:09 +01:00
}
tr.prefRow:hover .prefHelp {
display: block;
z-index: 10; /* FF: displays it under next prefName without */
}
.prefDefault, .prefValue {
float: left;
}
.prefValue {
margin-right: 5px;
}
.prefValue textarea, textarea.prefValue {
width: 99%;
height: 5em;
}
2014-01-10 12:07:08 +01:00
.prefType, .prefApp {
2014-01-11 19:52:09 +01:00
font-size: 150%;
display: inline-block;
padding-bottom: 5px;
2014-01-10 12:07:08 +01:00
}
2014-01-11 19:52:09 +01:00
/*###############################*/
.prefType, .prefApp {
/*margin: 0.3em;*/
-webkit-appearance:button;
/*padding:10px;*/
2014-01-11 19:52:09 +01:00
}
2014-01-23 09:44:49 +01:00
/*img[src$="svg"]{
2014-01-11 19:52:09 +01:00
.gradient_vertical (@egw_color_2_a, @egw_color_2_a);
2014-01-23 09:44:49 +01:00
}*/
2014-01-11 19:52:09 +01:00
2014-01-10 12:07:08 +01:00
/*Preferences APP / left */
2014-01-11 19:52:09 +01:00
.prefApp{
2014-01-11 19:52:09 +01:00
background-image: url(../pixelegg/images/setup.png);
background-repeat: no-repeat;
2014-01-11 19:52:09 +01:00
background-position: 93% 50%;
background-size: 16px 16px;
2014-01-11 19:52:09 +01:00
margin-right: 1em;
2014-01-10 12:07:08 +01:00
2014-01-11 19:52:09 +01:00
}
2014-01-10 12:07:08 +01:00
/*Preferences APP Settings / right*/
2014-01-11 19:52:09 +01:00
.prefType{
2014-01-11 19:52:09 +01:00
background-image: url(../pixelegg/images/setup.png);
background-repeat: no-repeat;
2014-01-11 19:52:09 +01:00
background-position: 93% 50%;
background-size: 16px 16px;
2014-01-10 12:07:08 +01:00
}
/*###############################*/
/*ADMIN DIALOG*/
div#preferences-settings{
margin: -8px;
// Header
div.dialogHeader {
height: 50px;
// left
select#preferences-settings_appname{
min-width: 47%;
margin: 5px;
-webkit-appearance:button;
padding:5px;
}
// right
select#preferences-settings_type{
margin: 5px;
min-width: 48%;
-webkit-appearance:button;
padding:5px;
}
}
2014-01-10 12:07:08 +01:00
}