Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Item13221: fixing report_dialog width
... as well as button hover design
  • Loading branch information
MichaelDaum committed Jan 20, 2015
1 parent d4b1d8b commit 4b038d2
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 5 deletions.
Expand Up @@ -144,15 +144,25 @@ a {
margin:0 0 1em;
}
.node .ui-button {
margin:0 0.5em 0 0;
}
.node .ui-button-text {
text-shadow:0 0 transparent;
}
.node .ui-button.ui-state-default {
background:transparent;
border:0;
margin:0 0.5em 0 0;
border-radius:0;
}
.button_box .ui-button-icon-primary {
left:0;
.node .ui-button.ui-state-hover {
color:#ffffff;
background-color:#0055b5;
}
.button_box .ui-button-text {
padding-left:1.5em;
.node .ui-button.ui-state-hover .ui-button-text{
color:#ffffff;
}
.button_box {
margin-left:-0.5em;
}
.button_box,
.button_box .ui-button-text {
Expand Down Expand Up @@ -284,6 +294,14 @@ p.one_line_report {
color:#005884;
}

#report_dialog {
min-width:30em;
max-width:50em;
min-height:30em;
max-height:50em;
overflow-y:auto;
}

.tab.warnings {
background-image: url(warningsIcon.png);
padding-right: 22px;
Expand Down
Expand Up @@ -259,6 +259,7 @@ function _id_ify(id) {
$div.html(TML.render_reports(r.reports));
$div.dialog({
modal: true,
width: 'auto',
buttons: {
Close: function() {
$div.dialog("close");
Expand Down Expand Up @@ -444,6 +445,7 @@ function _id_ify(id) {
$dlg.append($div);
$dlg.dialog({
title: "Validation",
width: 'auto',
modal: true,
buttons: {
Close: function() {
Expand Down

0 comments on commit 4b038d2

Please sign in to comment.