2013-04-28 16:52:41 +02:00
|
|
|
/**
|
2013-11-18 20:57:38 +01:00
|
|
|
* EGroupware - CSS Styles used by preferences app
|
2013-04-28 16:52:41 +02:00
|
|
|
*
|
|
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
|
|
* @package preferences
|
2013-11-18 20:57:38 +01:00
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @author Ralf Becker <RalfBecker@outdoor-training.de>
|
2013-04-28 16:52:41 +02:00
|
|
|
* @version $Id$
|
|
|
|
*/
|
2013-11-18 20:57:38 +01:00
|
|
|
|
|
|
|
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 {
|
2015-03-16 11:28:46 +01:00
|
|
|
position: fixed;
|
2013-11-18 20:57:38 +01:00
|
|
|
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%;
|
2014-04-01 18:07:38 +02:00
|
|
|
margin-top: 10px;
|
|
|
|
margin-right: 5px;
|
2016-08-26 14:59:31 +02:00
|
|
|
width: 50%;
|
2015-03-12 17:58:01 +01:00
|
|
|
}
|
|
|
|
#preferences-password .dialogHeader td {
|
|
|
|
text-align: center;
|
2015-05-21 10:21:04 +02:00
|
|
|
}
|
|
|
|
/* arrange readonly selectbox background icon*/
|
|
|
|
.et2_selectbox.readonly.prefType {
|
|
|
|
padding-right: 50px;
|
2013-11-18 20:57:38 +01:00
|
|
|
}
|