add initial sources.

This commit is contained in:
Yoshihiro OKUMURA
2019-07-11 18:19:42 +09:00
parent 3106e72970
commit 44a29fe4b3
305 changed files with 18374 additions and 772 deletions
+81
View File
@@ -0,0 +1,81 @@
.indexTree {
border-top: 1px solid #999999;
border-left: 1px solid #999999;
border-bottom: 1px solid #404040;
border-right: 1px solid #404040;
background-color: white;
height: 400px;
width: calc(100% - 8px);
overflow: auto;
padding: 3px;
line-height: 100%;
}
.formButton {
margin: 3px 3px 10px;
}
.indexTree li span {
color: #ff3300;
font-size: 12px;
font-weight: bold;
line-height: 19px;
vertical-align: bottom;
}
.indexTree li span:hover {
color: #f60;
}
.indexTree:global(.rc-tree li ul) {
padding: 0 0 0 10px;
}
.indexTree:global(.rc-tree li span.rc-tree-switcher) {
height: 19px;
width: 21px;
}
.indexTree:global(.rc-tree > li:first-child > span.rc-tree-switcher-noop) {
background: url(../assets/images/tree_root_normal.gif);
width: 14px;
}
.indexTree:global(.rc-tree > li:first-child > span.rc-tree-switcher.rc-tree-switcher_open) {
background: url(../assets/images/tree_root_open.gif);
width: 14px;
}
.indexTree:global(.rc-tree > li:first-child > span.rc-tree-switcher.rc-tree-switcher_close) {
background: url(../assets/images/tree_root_close.gif);
width: 14px;
}
.indexTree:global(.rc-tree > li:first-child > ul) {
padding: 0 0 0 5px;
}
.indexTree:global(.rc-tree li:not(:last-child) > ul.rc-tree-child-tree.rc-tree-child-tree-open) {
background: url(../assets/images/tree_line_normal.gif) repeat-y;
}
.indexTree:global(.rc-tree li:not(:last-child) > span.rc-tree-switcher-noop) {
background: url(../assets/images/tree_folder_middle_normal.gif);
}
.indexTree:global(.rc-tree li:last-child > span.rc-tree-switcher-noop) {
background: url(../assets/images//tree_folder_end_normal.gif);
}
.indexTree:global(.rc-tree li:not(:last-child) > span.rc-tree-switcher_open) {
background: url(../assets/images//tree_folder_middle_open.gif);
}
.indexTree:global(.rc-tree li:not(:last-child) > span.rc-tree-switcher_close) {
background: url(../assets/images/tree_folder_middle_close.gif);
}
.indexTree:global(.rc-tree li:last-child > span.rc-tree-switcher_open) {
background: url(../assets/images/tree_folder_end_open.gif);
}
.indexTree:global(.rc-tree li:last-child > span.rc-tree-switcher_close) {
background: url(../assets/images/tree_folder_end_close.gif);
}