Files
emacs/lisp/emacs-application-framework/app/mindmap/jsmind.css
2022-01-04 15:21:47 +01:00

138 lines
2.6 KiB
CSS

/*
* Released under BSD License
* Copyright (c) 2014-2015 hizzgdev@163.com
*
* Project Home:
* https: //github.com/hizzgdev/jsmind/
*/
/* important section */
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
#jsmind_container{
width: 100%;
height: 100%;
position: relative;
overflow: hidden;
}
.jsmind-inner {
position: absolute;
overflow: auto;
width: 100%;
height: 100%;
right: -30px;
bottom: -30px;
moz-user-select: -moz-none;
-moz-user-select: none;
-o-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* z-index: 1 */
canvas {
position: absolute;
z-index: 1;
}
input {
outline-style: none;
border: blue;
font-size: 12px;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 5px;
min-width: 150px;
min-height: 24px;
padding-left: 10px;
padding-right: 10px;
}
/* z-index: 2 */
jmnodes {
position: absolute;
z-index: 2;
background-color: rgba(0,0,0,0);
}
jmnode {
position: absolute;
cursor: default;
max-width: 200px;
}
jmexpander {
position: absolute;
width: 11px;
height: 11px;
display: block;
overflow: hidden;
line-height: 12px;
font-size: 12px;
text-align: center;
border-radius: 6px;
border-width: 1px;
border-style: solid;
cursor: pointer;
}
jmnode {
background-color: #30A3C0;
color: #FFF;
border-radius: 5px;
font-size: 18px;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 20px;
padding-right: 20px;
}
jmnode:hover {
background-color: #F3C250;
color: #333;
}
jmnode.selected {
background-color: #F56B85;
color: #FFF;
}
jmnode.root {
border-radius: 30px;
background-color: #3598DB;
color: #FFF;
font-size: 24px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: none;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 30px;
padding-right: 30px;
}
jmnode.root.selected {
background-color: #F56B85;
}
jmnode.root:hover {
background-color: #F3C250;
color: #333;
}
jmexpander {
border-color: gray;
}
jmexpander:hover {
border-color: #000;
}
jmnodes.theme-greensea jmnode {background-color: #1abc9c;color: #fff;}
jmnodes.theme-greensea jmnode:hover {background-color: #16a085;}
jmnodes.theme-greensea jmnode.selected {background-color: #11f;color: #fff;}
jmnodes.theme-greensea jmnode.root {}
jmnodes.theme-greensea jmexpander {}
jmnodes.theme-greensea jmexpander:hover {}