116 lines
2.5 KiB
CSS
116 lines
2.5 KiB
CSS
.custom_toolbar {
|
|
position: absolute;
|
|
width: 52px;
|
|
height: 99.5%;
|
|
top: 0px;
|
|
left: -65px;
|
|
z-index: 100;
|
|
padding: 2px;
|
|
background-color: #EEEEEE;
|
|
box-shadow: 1px 0 5px #000000;
|
|
}
|
|
|
|
.custom_toolbar_divider1 {
|
|
width: 40px;
|
|
height: 1px;
|
|
margin: 5px;
|
|
background-color: #000;
|
|
opacity: 0.1;
|
|
}
|
|
|
|
.custom_toolbar_divider2 {
|
|
width: 40px;
|
|
height: 1px;
|
|
margin: 5px;
|
|
background-color: #000;
|
|
opacity: 0.0;
|
|
}
|
|
|
|
.custom_toolbar_clicker {
|
|
position: absolute;
|
|
width: 43px;
|
|
height: 36px;
|
|
margin-top: -2px;
|
|
margin-left: 54px;
|
|
line-height: 60px;
|
|
text-align: center;
|
|
opacity: 1.0;
|
|
cursor: pointer;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-image: url(images/pop_more.png);
|
|
}
|
|
|
|
.custom_toolbar_btn {
|
|
width: 40px;
|
|
height: 20px;
|
|
|
|
font-family: "Anonymous Pro", "Menlo", "Consolas", "Bitstream Vera Sans Mono", "Courier New", monospace;
|
|
font-size: 13px;
|
|
line-height: 20px;
|
|
text-align: center;
|
|
margin: 15px 5px 15px 5px;
|
|
|
|
border: 1px solid #bbbbbb;
|
|
border-radius: 4px;
|
|
color: #33444E;
|
|
background-color: #EEEEEE;
|
|
box-shadow: 0px 0px 3px #bbbbbb;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.custom_toolbar_btn_hover {
|
|
-webkit-box-shadow: inset 0px 0px 5px 2px rgba(0,0,0,0.3);
|
|
-moz-box-shadow: inset 0px 0px 5px 2px rgba(0,0,0,0.3);
|
|
box-shadow: inset 0px 0px 5px 2px rgba(0,0,0,0.3);
|
|
}
|
|
|
|
.custom_toolbar_btn_selected {
|
|
background-color: #bfbfbf;
|
|
}
|
|
|
|
.custom_mask {
|
|
top: 0px;
|
|
left: 0px;
|
|
display: none;;
|
|
position: absolute;
|
|
background-color: #000;
|
|
opacity: 0.5;
|
|
z-index: 200;
|
|
}
|
|
|
|
.custom_pause_icon {
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-image: url("images/pause.png");
|
|
}
|
|
|
|
.custom_resume_icon {
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-image: url("images/resume.png");
|
|
}
|
|
|
|
.custom_scale_icon {
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-image: url("images/scale.png");
|
|
}
|
|
|
|
.custom_not_scale_icon {
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-image: url("images/not_scale.png");
|
|
}
|
|
|
|
.custom_quality_icon {
|
|
margin: 3px 0px 0px 8px;
|
|
width: 24px;
|
|
height: 14px;
|
|
border-radius: 12px;
|
|
color: #fff;
|
|
background-color: #4d4d4d;
|
|
font-size: 12px;
|
|
line-height: 14px;
|
|
font-weight: bolder;
|
|
} |