mirror of
https://github.com/Doodle3D/doodle3d-client.git
synced 2024-11-22 01:07:56 +01:00
Removed piece of unnecessary CSS which was interfering with removing onmouseover 'hand' icon for disabled UI buttons
This commit is contained in:
parent
81173c1379
commit
51d44c9086
@ -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
2
css/styles.min.css
vendored
File diff suppressed because one or more lines are too long
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user