mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-25 16:19:00 +01:00
Preferences: Move default value under the preference name, give it some faded styling
This commit is contained in:
parent
59dbd27719
commit
d141427007
@ -18,11 +18,14 @@ table.prefTable tbody tr.prefRow:first-child > .prefHelpColumn {
|
||||
height: 99%;
|
||||
}
|
||||
tr.prefRow:hover {background-color:#f0f0ff}
|
||||
td.prefName {
|
||||
width: 50%;
|
||||
.prefName .et2_label:first-child {
|
||||
padding-top: 2px;
|
||||
}
|
||||
tr.prefRow > td {
|
||||
vertical-align: bottom; /* otherwise help will cover bigger prefValue */
|
||||
vertical-align: top;
|
||||
}
|
||||
tr.prefRow > td.prefValueColumn {
|
||||
vertical-align: middle;
|
||||
}
|
||||
/*.prefValueColumn {border-right:none !important;}*/
|
||||
.prefHelpColumn {
|
||||
@ -51,14 +54,13 @@ tr.prefRow:hover .prefHelp {
|
||||
}
|
||||
.prefValue {
|
||||
margin-right: 5px;
|
||||
width:49%;
|
||||
width:99%;
|
||||
}
|
||||
.prefDefault {
|
||||
float: right;
|
||||
width:48%;
|
||||
span.prefDefault {
|
||||
overflow-x: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 300px;
|
||||
padding-bottom: 5px;
|
||||
color: silver;
|
||||
}
|
||||
.prefValue textarea, textarea.prefValue {
|
||||
width: 99%;
|
||||
|
@ -11,12 +11,12 @@
|
||||
</columns>
|
||||
<rows>
|
||||
<row class="prefRow">
|
||||
<box class="prefName">
|
||||
<vbox class="prefName">
|
||||
<description for="@${row}[name]" id="${row}[label]"/>
|
||||
</box>
|
||||
<description id="${row}[default]" no_lang="1" class="prefDefault"/>
|
||||
</vbox>
|
||||
<box class="prefValueColumn">
|
||||
<widget type="@${row}[type]" id="@${row}[name]" onchange="@${row}[onchange]" no_lang="1" class="prefValue" attributes="@${row}[attributes]"/>
|
||||
<description id="${row}[default]" no_lang="1" class="prefDefault"/>
|
||||
</box>
|
||||
<box class="prefHelpColumn">
|
||||
<html id="${row}[help]" class="prefHelp"/>
|
||||
|
@ -32,12 +32,14 @@ table.prefTable tbody tr.prefRow:first-child > .prefHelpColumn {
|
||||
tr.prefRow:hover {
|
||||
background-color: #f0f0ff;
|
||||
}
|
||||
td.prefName {
|
||||
width: 50%;
|
||||
.prefName .et2_label:first-child {
|
||||
padding-top: 5px;
|
||||
}
|
||||
tr.prefRow > td {
|
||||
vertical-align: bottom;
|
||||
/* otherwise help will cover bigger prefValue */
|
||||
vertical-align: top;
|
||||
}
|
||||
tr.prefRow > td.prefValueColumn {
|
||||
vertical-align: middle;
|
||||
}
|
||||
/*.prefValueColumn {border-right:none !important;}*/
|
||||
.prefHelpColumn {
|
||||
@ -49,7 +51,7 @@ tr.prefRow > td {
|
||||
display: none;
|
||||
width: 255px;
|
||||
max-height: 99%;
|
||||
height: calc(99% - 150px);
|
||||
height: calc(-51%);
|
||||
background-color: #f0f0ff;
|
||||
padding: 5px;
|
||||
top: 80px;
|
||||
@ -68,14 +70,13 @@ tr.prefRow:hover .prefHelp {
|
||||
}
|
||||
.prefValue {
|
||||
margin-right: 5px;
|
||||
width: 49%;
|
||||
width: 99%;
|
||||
}
|
||||
.prefDefault {
|
||||
float: right;
|
||||
width: 48%;
|
||||
span.prefDefault {
|
||||
overflow-x: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 300px;
|
||||
padding-bottom: 5px;
|
||||
color: silver;
|
||||
}
|
||||
.prefValue textarea,
|
||||
textarea.prefValue {
|
||||
@ -92,7 +93,7 @@ textarea.prefValue {
|
||||
width: 49%;
|
||||
}
|
||||
.prefApp {
|
||||
width: 49.5%;
|
||||
width: 49.50%;
|
||||
}
|
||||
#preferences-password .dialogHeader td {
|
||||
text-align: center;
|
||||
@ -154,13 +155,6 @@ table.prefTable {
|
||||
table.prefTable tbody tr.prefRow:first-child > .prefHelpColumn {
|
||||
background-image: url(../../../pixelegg/images/dialog_info.png);
|
||||
}
|
||||
td.prefName {
|
||||
width: 50%;
|
||||
}
|
||||
tr.prefRow > td {
|
||||
vertical-align: bottom;
|
||||
/* otherwise help will cover bigger prefValue */
|
||||
}
|
||||
.prefHelp {
|
||||
position: absolute;
|
||||
display: none;
|
||||
@ -181,10 +175,6 @@ tr.prefRow:hover .prefHelp {
|
||||
z-index: 10;
|
||||
/* FF: displays it under next prefName without */
|
||||
}
|
||||
.prefDefault,
|
||||
.prefValue {
|
||||
float: left;
|
||||
}
|
||||
.prefValue {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
@ -12,6 +12,7 @@
|
||||
* @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";
|
||||
@ -37,6 +38,7 @@
|
||||
# # #
|
||||
##############################################*/
|
||||
|
||||
|
||||
/*app.css Stylite*/
|
||||
|
||||
table.prefTable {
|
||||
@ -45,12 +47,6 @@ table.prefTable {
|
||||
table.prefTable tbody tr.prefRow:first-child > .prefHelpColumn {
|
||||
background-image:url(../../../pixelegg/images/dialog_info.png);
|
||||
}
|
||||
td.prefName {
|
||||
width: 50%;
|
||||
}
|
||||
tr.prefRow > td {
|
||||
vertical-align: bottom; /* otherwise help will cover bigger prefValue */
|
||||
}
|
||||
.prefHelp {
|
||||
position: absolute;
|
||||
display: none;
|
||||
@ -68,9 +64,6 @@ tr.prefRow:hover .prefHelp {
|
||||
display: block;
|
||||
z-index: 10; /* FF: displays it under next prefName without */
|
||||
}
|
||||
.prefDefault, .prefValue {
|
||||
float: left;
|
||||
}
|
||||
.prefValue {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user