1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-23 22:50:09 +03:00

B #4997: Bold VM Charters text (#307)

Signed-off-by: Frederick Borges <fborges@opennebula.io>
(cherry picked from commit 46d77c5219fe29c094bf871ba02ac68da3e5d463)
This commit is contained in:
Frederick Borges 2020-10-08 16:40:10 +02:00 committed by Tino Vazquez
parent 8f82badc23
commit 09a821df60
No known key found for this signature in database
GPG Key ID: 2FE9C32E94AEABBE

View File

@ -109,7 +109,8 @@ define(function(require) {
"min-width":"8rem",
"font-family": '"Lato","Helvetica Neue",Helvetica,Roboto,Arial,sans-serif',
"font-weight": "100",
"color":"#000"
"color":"#000",
"font-weight": "bold"
};
$(".describeCharter").off("mouseenter").on("mouseenter",function(e){
$(this).find(".charterInfo").remove();
@ -121,7 +122,7 @@ define(function(require) {
if(typeof date === "number"){
$(this).append(
$("<div/>",{"class":classInfo}).css(styleTips).append(
$("<b/>").css({"display":"inline"}).text(action).add(
$("<div/>").css({"display":"inline"}).text(action).add(
$("<div/>").css({"display":"inline"}).text(
" "+Locale.tr("will run in")+" "+ScheduleActions.parseTime(date)
)