jsketcher/web/css/toolkit.css
2015-09-02 19:44:54 -07:00

99 lines
1.6 KiB
CSS

.tc-box {
position: absolute;
margin-left: 0; margin-top: 0;
top: 0; left: 0;
width : 250px; height: 300px;
background-color: #000;
}
.tc-row {
height: 27px;
line-height: 27px;
overflow: hidden;
padding: 0 4px 0 5px;
border-bottom: 1px solid #2c2c2c;
}
.tc-title {
padding-left: 16px;
background: black url(data:image/gif;base64,R0lGODlhBQAFAJEAAP////Pz8////////yH5BAEAAAIALAAAAAAFAAUAAAIIlI+hKgFxoCgAOw==) 6px 10px no-repeat;
cursor: pointer;
}
.tc-folder {
color: #eee;
font: 11px 'Lucida Grande', sans-serif;
background-color: #1a1a1a;
}
.tc-ctrl {
border-left: 3px solid #e61d5f;
}
.tc-ctrl-btn {
border-left: 3px solid #e61d5f;
cursor: pointer;
}
.tc-ctrl-btn:hover {
background-color: #000;
}
.tc-prop-name {
cursor: default;
float: left;
clear: left;
width: 40%;
overflow: hidden;
text-overflow: ellipsis;
}
.tc-prop-value {
float: left;
width: 60%;
}
.tc-ctrl input[type=text] {
color: #2fa1d6;
background: #303030;
outline: none;
border: 0;
margin-top: 4px;
padding: 3px;
width: 100%;
float: right;
}
.tc-ctrl-text input[type=text] {
color:#1ed36f;
}
.tc-ctrl input[type=text]:focus {
color: #eee;
}
.tc-scroll {
overflow-y: auto;
overflow-x: hidden;
}
.tc-scroll::-webkit-scrollbar {
width: 2px;
}
.tc-scroll::-webkit-scrollbar-track {
background:#eee;
border: thin solid lightgray;
box-shadow: 0px 0px 3px #dfdfdf inset;
border-radius:10px;
}
.tc-scroll::-webkit-scrollbar-thumb {
background:#999;
border: thin solid gray;
border-radius:10px;
}
.tc-scroll::-webkit-scrollbar-thumb:hover {
background:#7d7d7d;
}