Removed piece of unnecessary CSS which was interfering with removing onmouseover 'hand' icon for disabled UI buttons

This commit is contained in:
Adriaan Wormgoor 2013-10-12 15:38:19 +02:00
parent 81173c1379
commit 51d44c9086
4 changed files with 39 additions and 36 deletions

View File

@ -89,21 +89,6 @@ cursor: pointer;
bottom: 0px;
}
.rightpanel img,.leftpanel img {
cursor: pointer;
}
.disabled {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
filter: alpha(opacity=30);
opacity: 0.3;
cursor: default;
}
#btnStop.disabled {
display: none;
}
/*
CENTER PANEL
@ -322,19 +307,19 @@ HEIGHT-related RESPONSIVE STUFF
@media screen and (max-height: 525px) {
.d3dlogo {
max-width: 399px;
top: 20%;
height: 57px;
background-image: url('../img/logo/logo_smaller_wide.png');
max-width: 307px;
background-image: url('../img/logo/logo_smaller.png');
}
}
@media screen and (max-height: 375px) {
.d3dlogo {
max-width: 399px;
height: 40px;
background-image: url('../img/logo/logo_smallest_wide.png');
max-width: 216px;
background-image: url('../img/logo/logo_smallest.png');
}
}
@ -500,6 +485,20 @@ THERMOMETER
*/
}
/*
under all the above styles w.r.t. the cascading effect
*/
.disabled {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
filter: alpha(opacity=30);
opacity: 0.3;
cursor: default;
}
#btnStop.disabled {
display: none;
}
/*
REST
@ -630,9 +629,9 @@ SETTINGS POPUP
.d3dlogo {
top: 0;
max-width: 399px;
height: 40px;
background-image: url('../img/logo/logo_smallest_wide.png');
max-width: 216px;
background-image: url('../img/logo/logo_smallest.png');
}
.doodlecontainer {

2
css/styles.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -62,19 +62,11 @@ img {
.bgBottom {
bottom: 0px;
}
.rightpanel, .leftpanel {
img {
cursor: pointer;
}
}
.disabled {
opacity: 0.3;
cursor: default;
}
#btnStop.disabled {
display: none;
}
//.rightpanel, .leftpanel {
// img {
// cursor: pointer;
// }
//}
/*
@ -98,6 +90,18 @@ img {
@import "base_rightpanel.less";
/*
under all the above styles w.r.t. the cascading effect
*/
.disabled {
opacity: 0.3;
cursor: default;
}
#btnStop.disabled {
display: none;
}
/*

View File

@ -96,4 +96,4 @@
#thermometerCanvas {
/*background: #59b2b8;*/
/*zoom: 2;*/
}
}