Skip to content

Commit

Permalink
fixed invisible buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
StakeBox committed May 4, 2016
1 parent d76d507 commit 4b87a71
Showing 1 changed file with 10 additions and 15 deletions.
25 changes: 10 additions & 15 deletions src/qt/res/css/drk-1.css
Original file line number Diff line number Diff line change
Expand Up @@ -116,39 +116,34 @@ background-color:#f2f2f2;
/* GLOBAL BUTTON STYLE */
/*******************************/

QPushButton {
background-color:transparent;
border:1px solid #ffffff;
QPushButton { /* Global Button Style */
/* background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #9e0a0a, stop: .1 #9e0a0a, stop: .95 #9e0a0a, stop: 1 #9e0a0a); */
background-color:#9e0a0a;
border:1px solid #d2d2d2;
border-radius:3px;
color:#ffffff;
font-size:12px;
font-weight:bold;
padding-left:25px;
padding-right:25px;
padding-top:5px;
padding-bottom:5px;
}

QPushButton:hover {
background-color:transparent;
border:1px solid #ffffff;
border-radius:3px;
color:#ffffff;
background-color:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: .01 #9e0a0a, stop: .1 #9e0a0a, stop: .95 #9e0a0a, stop: 1 #9e0a0a);
}

QPushButton:focus {
background-color:transparent;
border:1px solid #ffffff;
border-radius:3px;
color:#ffffff;
border:none;
outline:none;
}

QPushButton:pressed {
background-color:transparent;
border:1px solid #ffffff;
border-radius:3px;
color:#ffffff;
border:1px solid #333;
}


/*******************************/
/* DROP DOWN MENUS */
/*******************************/
Expand Down

0 comments on commit 4b87a71

Please sign in to comment.