Commit 744f3fde authored by Tomáš Peterka's avatar Tomáš Peterka

[renderjs_ui] Fix label rendering after moving css_class to field div

parent 4dc92494
...@@ -1128,10 +1128,10 @@ div[data-gadget-scope='header'] .ui-header ul { ...@@ -1128,10 +1128,10 @@ div[data-gadget-scope='header'] .ui-header ul {
.gadget-content .ui-field-contain > label { .gadget-content .ui-field-contain > label {
color: #777777; color: #777777;
} }
.gadget-content .ui-field-contain > label.required { .gadget-content .required > .ui-field-contain > label {
font-weight: bold; font-weight: bold;
} }
.gadget-content .ui-field-contain > label.invisible { .gadget-content .invisible > .ui-field-contain > label {
display: none; display: none;
} }
@media only screen and (min-width: 45em) and (max-width: 85em), not screen and (max-width: 85em) { @media only screen and (min-width: 45em) and (max-width: 85em), not screen and (max-width: 85em) {
......
...@@ -242,7 +242,7 @@ ...@@ -242,7 +242,7 @@
</item> </item>
<item> <item>
<key> <string>serial</string> </key> <key> <string>serial</string> </key>
<value> <string>965.11760.24459.2133</string> </value> <value> <string>965.12209.2660.49049</string> </value>
</item> </item>
<item> <item>
<key> <string>state</string> </key> <key> <string>state</string> </key>
...@@ -260,7 +260,7 @@ ...@@ -260,7 +260,7 @@
</tuple> </tuple>
<state> <state>
<tuple> <tuple>
<float>1517390712.66</float> <float>1517418109.55</float>
<string>UTC</string> <string>UTC</string>
</tuple> </tuple>
</state> </state>
......
...@@ -1307,17 +1307,19 @@ div[data-gadget-scope='header'] .ui-header { ...@@ -1307,17 +1307,19 @@ div[data-gadget-scope='header'] .ui-header {
& > label { & > label {
color: @grey; color: @grey;
// backward-compatibility: support for ERP5 field class defined in formulator configuration
&.required {
// inform user that the field is needed by contraint, but do not prevent him to save the value
font-weight: bold;
}
&.invisible {
// used to hide the label of a formbox
display: none;
}
} }
} }
//Label styling in required and "invisible" field
.required > .ui-field-contain > label {
// backward-compatibility: support for ERP5 field class defined in formulator configuration
// inform user that the field is needed by contraint, but do not prevent him to save the value
font-weight: bold;
}
.invisible > .ui-field-contain > label {
// used to hide the label of a formbox
display: none;
}
@media @tablet, @desktop { @media @tablet, @desktop {
.ui-field-contain { .ui-field-contain {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment