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%;
|
2016-09-29 18:39:44 +02:00
|
|
|
}
|
|
|
|
table.prefTable tbody tr.prefRow:first-child > .prefHelpColumn {
|
|
|
|
background-image:url(../../../api/templates/default/images/hint.png);
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: center;
|
|
|
|
height: 99%;
|
2013-11-18 20:57:38 +01:00
|
|
|
}
|
2016-09-29 18:39:44 +02:00
|
|
|
tr.prefRow:hover {background-color:#f0f0ff}
|
2013-11-18 20:57:38 +01:00
|
|
|
td.prefName {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
tr.prefRow > td {
|
|
|
|
vertical-align: bottom; /* otherwise help will cover bigger prefValue */
|
|
|
|
}
|
2016-09-29 18:39:44 +02:00
|
|
|
/*.prefValueColumn {border-right:none !important;}*/
|
|
|
|
.prefHelpColumn {
|
|
|
|
border: none !important;
|
|
|
|
padding: 0 !important;
|
|
|
|
}
|
2013-11-18 20:57:38 +01:00
|
|
|
.prefHelp {
|
2016-09-29 18:39:44 +02:00
|
|
|
position: absolute;
|
|
|
|
display: none;
|
|
|
|
width: 255px;
|
|
|
|
max-height: 99%;
|
2017-03-02 11:55:09 +01:00
|
|
|
height: calc(99% - 150px);
|
2016-09-29 18:39:44 +02:00
|
|
|
background-color: #f0f0ff;
|
|
|
|
padding: 5px;
|
2017-03-02 11:55:09 +01:00
|
|
|
top: 80px;
|
2016-10-04 18:04:10 +02:00
|
|
|
overflow-y: auto;
|
|
|
|
z-index: 1;
|
2013-11-18 20:57:38 +01:00
|
|
|
}
|
|
|
|
tr.prefRow:hover .prefHelp {
|
|
|
|
display: block;
|
|
|
|
z-index: 10; /* FF: displays it under next prefName without */
|
|
|
|
}
|
|
|
|
.prefDefault, .prefValue {
|
|
|
|
float: left;
|
2016-10-04 18:04:10 +02:00
|
|
|
display: inline-block;
|
2013-11-18 20:57:38 +01:00
|
|
|
}
|
|
|
|
.prefValue {
|
|
|
|
margin-right: 5px;
|
2016-10-04 18:04:10 +02:00
|
|
|
width:49%;
|
|
|
|
}
|
|
|
|
.prefDefault {
|
|
|
|
float: right;
|
|
|
|
width:48%;
|
2013-11-18 20:57:38 +01:00
|
|
|
}
|
|
|
|
.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 16:01:42 +02:00
|
|
|
}
|
|
|
|
.prefType{
|
2016-10-04 18:04:10 +02:00
|
|
|
width:49%;
|
2016-08-26 16:01:42 +02:00
|
|
|
}
|
|
|
|
.prefApp {
|
|
|
|
width:49.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
|
|
|
}
|