update required libraries.

This commit is contained in:
Yoshihiro OKUMURA
2019-11-06 18:30:25 +09:00
parent 93ffd534c2
commit a277837879
18 changed files with 2499 additions and 2331 deletions
+61 -51
View File
@@ -5,8 +5,9 @@
border-right: 1px solid #404040;
background-color: white;
height: 400px;
width: calc(100% - 8px);
width: calc(100% - 6px);
overflow: auto;
margin: 0 auto;
padding: 3px;
line-height: 100%;
}
@@ -15,67 +16,76 @@
margin: 3px 3px 10px;
}
.indexTree li span {
color: #ff3300;
.indexTree div span {
color: #333;
font-size: 12px;
font-weight: bold;
line-height: 19px;
vertical-align: bottom;
}
.indexTree li span:hover {
.indexTree div span:hover {
color: #f60;
}
.indexTree:global(.rc-tree li ul) {
padding: 0 0 0 10px;
.indexTree:global(.rc-tree .rc-tree-treenode) {
line-height: 20px;
white-space: nowrap;
}
.indexTree:global(.rc-tree .rc-tree-treenode .rc-tree-indent) {
display: inline-block;
}
.indexTree:global(.rc-tree .rc-tree-treenode .rc-tree-indent .rc-tree-indent-unit) {
display: inline-block;
height: 20px;
width: 9px;
background: url(../assets/images/tree_line.png);
}
.indexTree:global(.rc-tree .rc-tree-treenode .rc-tree-indent .rc-tree-indent-unit:not(:last-child)) {
background-position: -9px 0;
}
.indexTree:global(.rc-tree .rc-tree-treenode .rc-tree-indent .rc-tree-indent-unit:not(:last-child).rc-tree-indent-unit-end) {
background-position: -18px 0;
}
.indexTree:global(.rc-tree .rc-tree-treenode .rc-tree-indent .rc-tree-indent-unit:last-child.rc-tree-indent-unit-end) {
background-position: -27px 0;
}
.indexTree:global(.rc-tree li span.rc-tree-switcher) {
height: 19px;
width: 21px;
.indexTree:global(.rc-tree .rc-tree-treenode .rc-tree-switcher) {
display: inline-block;
height: 20px;
width: 16px;
margin-right: 2px;
background: url(../assets/images/tree_node.png);
cursor: pointer;
}
.indexTree:global(.rc-tree .rc-tree-treenode:first-child .rc-tree-switcher.rc-tree-switcher-noop) {
background-position: 0 0;
cursor: auto;
}
.indexTree:global(.rc-tree .rc-tree-treenode:first-child .rc-tree-switcher.rc-tree-switcher_open) {
background-position: -16px 0;
}
.indexTree:global(.rc-tree .rc-tree-treenode:first-child .rc-tree-switcher.rc-tree-switcher_close) {
background-position: -32px 0;
}
.indexTree:global(.rc-tree .rc-tree-treenode:not(:first-child) .rc-tree-switcher.rc-tree-switcher-noop) {
background-position: 0 -20px;
cursor: auto;
}
.indexTree:global(.rc-tree .rc-tree-treenode:not(:first-child) .rc-tree-switcher.rc-tree-switcher_open) {
background-position: -16px -20px;
}
.indexTree:global(.rc-tree .rc-tree-treenode:not(:first-child) .rc-tree-switcher.rc-tree-switcher_close) {
background-position: -32px -20px;
}
.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);
.indexTree:global(.rc-tree .rc-tree-treenode .rc-tree-node-content-wrapper) {
display: inline-block;
height: 20px;
cursor: pointer;
}
.indexTree:global(.rc-tree .rc-tree-treenode .rc-tree-node-content-wrapper .rc-tree-title) {
vertical-align: middle;
line-height: 20px;
}