Skip to content

Commit

Permalink
Fixes bug 884125 partially
Browse files Browse the repository at this point in the history
 * Adding a minimum width prevents the buttons from cutting off the text on them.
 * The problem with the title is not fixable with qss styling
  • Loading branch information
Kenneth Wimer committed Jul 15, 2014
1 parent c9e5dad commit 4b34a17
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions SLE/wizard/installation.qss
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,21 @@ YQWizard { background: #2d2d2d; }

#LogoHBox {
border-image: url(header-background.png);
padding: none;
border: none;
background-color: #000;
}
#DialogLogo {
background-image: url(header-logo.png);
min-width: 71px;
min-height: 34px;
margin-left: 5px;
margin-right: 20px;
margin-top: 10px;
margin-bottom: 10px;
background-color: #000;
}

#work_area {
border-image: none;
padding: 1em;
border: none;
background-color: #2d2d2d;
}

Expand Down Expand Up @@ -318,9 +315,10 @@ QPushButton {
border-radius: 2px;
background-color: #2d2d2d;
min-height: 24px;
padding: 3px 12px;
padding: 3px 8px;
color: #28ae73;
font-weight: bold;
min-width: 60px;
}
QPushButton:focus, QPushButton:focus:default {
border: 1px solid #28ae73;
Expand Down

0 comments on commit 4b34a17

Please sign in to comment.