Skip to content

Commit

Permalink
Monitorbuttons New Update Bug fixed
Browse files Browse the repository at this point in the history
new monitor structure had broken the theme's Monitor buttons,
This update should fix it up.
  • Loading branch information
hmrserver authored Apr 22, 2017
1 parent 66503a5 commit 2397987
Showing 1 changed file with 35 additions and 23 deletions.
58 changes: 35 additions & 23 deletions themes/Flat/modules/gamemanager/game_monitor.css
Original file line number Diff line number Diff line change
@@ -1,28 +1,40 @@
.monitorbutton{
display:inline;
width:auto !important;
display:inline-block;
color: #323232;
background-color: #F0F0F6;
transition: background-color 0.5s;
-webkit-transition: background-color 0.5s;
border: 1px solid grey;
width: 145px;
height: 80px;
background-color: #D7EDF3 !important;
text-align: center;
float: left;
margin: 1%;
}
.monitorbutton tr td{
cursor:pointer;
color: #323232;
background-color:#F0F0F6;
transition: background-color 0.5s;
-webkit-transition: background-color 0.5s;
border: 1px solid grey;
width:145px !important;
height:72px !important;
background-color: #D7EDF3 !important;
vertical-align: middle !important;
.monitorbutton.size {
line-height: 80px;
}
.monitorbutton tr td:hover {
background-color:#398bba !important;
transition: background-color 0.5s;
-webkit-transition: all 0.5s;
cursor:pointer;
color: #fff;
.monitorbutton:hover {
background-color:#398bba !important;
transition: background-color 0.5s;
-webkit-transition: all 0.5s;
cursor:pointer;
color: #fff !important;
text-decoration:none;
}
.monitorbutton img {
height: 46px;
margin: 2px 0px;
}
.monitorbutton tr td a:hover {
text-decoration:none;
.monitorbutton span {
display: block;
color: #323232;
font-weight: bold;
}

.monitorbutton:hover span {
color: #fff;
}

.ts3-del-virtual.center {
Expand All @@ -33,7 +45,7 @@
display:none;
}

button:active, button[type="submit"]:active, input[type="submit"]:active, .monitorbutton tr td:active {
button:active, button[type="submit"]:active, input[type="submit"]:active, .monitorbutton:active {
background-color:#0F0 !important;
transition: background-color 0.25s;
-webkit-transition: background-color 0.25s;
Expand Down Expand Up @@ -71,4 +83,4 @@ table.center {
table.center tr td{
background: #D7EDF3 !important;
border:none;
}
}

0 comments on commit 2397987

Please sign in to comment.