trilium/src/public/stylesheets/link_map.css

50 lines
1.1 KiB
CSS
Raw Normal View History

2019-07-22 03:55:48 +08:00
.link-map-container {
position: relative;
outline: none; /* remove dotted outline on click */
2019-06-10 03:48:30 +08:00
}
2019-07-22 03:55:48 +08:00
.link-map-container .note-box {
2019-06-10 03:48:30 +08:00
padding: 8px;
position: absolute !important;
background-color: var(--main-background-color);
2019-06-10 03:48:30 +08:00
color: var(--main-text-color);
z-index: 4;
border: 1px solid #666;
box-shadow: 2px 2px 19px #999;
border-radius: 8px;
opacity: 0.8;
font-size: 11px;
width: auto;
height: auto;
2019-08-31 02:15:59 +08:00
max-width: 200px;
2019-06-10 03:48:30 +08:00
min-width: 120px;
max-height: 100px;
overflow: hidden;
}
2019-07-22 03:55:48 +08:00
.link-map-container .note-box:hover {
2019-06-10 03:48:30 +08:00
background-color: var(--more-accented-background-color);
}
2019-07-22 03:55:48 +08:00
.link-map-container .note-box .title {
2019-06-10 03:48:30 +08:00
font-size: larger;
font-weight: 600;
}
.link-map-active-note {
background-color: var(--accented-background-color) !important;
}
.link-map-container .jsplumb-connection-hover path {
stroke-width: 2 !important;
stroke: var(--main-text-color);
2019-08-31 02:15:59 +08:00
}
.link-map-widget {
outline: none;
overflow: hidden;
}
.link-map-widget .note-box .title {
2019-08-31 02:34:32 +08:00
font-size: 19px !important;
2019-06-10 03:48:30 +08:00
}