egroupware/preferences/templates/pixelegg/app.css
2015-03-12 16:58:01 +00:00

207 lines
5.0 KiB
CSS
Executable File

/**
* 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$
*/
/**
* EGroupware - CSS Styles used by preferences app
*
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package preferences
* @link http://www.egroupware.org
* @author Ralf Becker <RalfBecker@outdoor-training.de>
* @version $Id: app.css 46460 2014-04-01 16:07:38Z ralfbecker $
*/
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: absolute;
display: none;
width: 98%;
background-color: lightyellow;
border: 1px solid black;
border-radius: 10px;
padding: 5px;
margin-top: 5px;
}
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;
}
.prefType,
.prefApp {
font-size: 150%;
margin-top: 10px;
margin-right: 5px;
}
#preferences-password .dialogHeader td {
text-align: center;
}
/* #############################################################################
// iframe
// Rahmen + padding**/
/*############################################
# # #
# # #
# # #
# # #
# # #
# # #
# # #
# # iframge #
# # #
# # #
# # #
# # #
# # #
# # #
##############################################*/
/*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: absolute;
background-color: #e6e6e6;
/*border-radius: 10px;*/
-webkit-box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5);
box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.5);
/* .border_normal;*/
border: 3px solid #679fd2;
-webkit-border-top-right-radius: 0px;
-webkit-border-bottom-right-radius: 15px;
-webkit-border-bottom-left-radius: 15px;
-webkit-border-top-left-radius: 0px;
-moz-border-radius-topright: 0px;
-moz-border-radius-bottomright: 15px;
-moz-border-radius-bottomleft: 15px;
-moz-border-radius-topleft: 0px;
border-top-right-radius: 0px;
border-bottom-right-radius: 15px;
border-bottom-left-radius: 15px;
border-top-left-radius: 0px;
/*.background-clip(padding-box);*/
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;
}
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;
}
.prefType,
.prefApp {
font-size: 150%;
display: inline-block;
padding-bottom: 5px;
}
/*###############################*/
.prefType,
.prefApp {
/*margin: 0.3em;*/
-webkit-appearance: button;
/*padding:10px;*/
}
/*img[src$="svg"]{
.gradient_vertical (@egw_color_2_a, @egw_color_2_a);
}*/
/*Preferences APP / left */
.prefApp {
background-image: url(../pixelegg/images/setup.png);
background-repeat: no-repeat;
background-position: 93% 50%;
background-size: 16px 16px;
margin-right: 1em;
}
/*Preferences APP Settings / right*/
.prefType {
background-image: url(../pixelegg/images/setup.png);
background-repeat: no-repeat;
background-position: 93% 50%;
background-size: 16px 16px;
}
/*###############################*/
/*ADMIN DIALOG*/
div#preferences-settings {
margin: -8px;
}
div#preferences-settings div.dialogHeader {
height: 50px;
}
div#preferences-settings div.dialogHeader select#preferences-settings_appname {
min-width: 47%;
margin: 5px;
-webkit-appearance: button;
padding: 5px;
}
div#preferences-settings div.dialogHeader select#preferences-settings_type {
margin: 5px;
min-width: 48%;
-webkit-appearance: button;
padding: 5px;
}