File size: 3,252 Bytes
71174bc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | .lm_goldenlayout {
/* background: #f4f4f4; */
}
.lm_content {
/* background: #e1e1e1; */
border: 1px solid #cccccc;
overflow-y: auto;
}
.lm_dragProxy .lm_content {
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.lm_dropTargetIndicator {
/* box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.4); */
box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.05);
outline: 2px dashed #cccccc;
}
.lm_dropTargetIndicator .lm_inner {
/* background: #000000; */
opacity: 0.1;
}
.lm_splitter {
background: #999999;
opacity: 0.001;
transition: opacity 200ms ease;
}
.lm_splitter:hover,
.lm_splitter.lm_dragging {
/* background: #bbbbbb; */
opacity: 1;
}
.lm_header {
height: 20px;
}
.lm_header .lm_tab {
font-family: Arial, sans-serif;
font-size: 12px;
/* color: #888888; */
/* background: #fafafa; */
margin-right: 2px;
padding-bottom: 4px;
border: 1px solid #cccccc;
border-bottom: none;
}
.lm_header .lm_tab .lm_title {
/* padding-top: 1px; */
}
.lm_header .lm_tab .lm_close_tab {
width: 11px;
height: 11px;
background-image: url('./img/lm_close_black.png');
background-position: center center;
background-repeat: no-repeat;
top: 4px;
right: 6px;
/* opacity: 0.4; */
}
.lm_header .lm_tab.lm_active .lm_close_tab {
background-image: url('./img/lm_close_white.png');
}
.lm_header .lm_tab .lm_close_tab:hover {
opacity: 1;
}
.lm_header .lm_tab.lm_active {
border-bottom: none;
box-shadow: 2px -2px 2px -2px rgba(0, 0, 0, 0.2);
padding-bottom: 5px;
}
.lm_header .lm_tab.lm_active .lm_close_tab {
opacity: 1;
}
.lm_dragProxy.lm_right .lm_header .lm_tab.lm_active,
.lm_stack.lm_right .lm_header .lm_tab.lm_active {
box-shadow: 2px -2px 2px -2px rgba(0, 0, 0, 0.2);
}
.lm_dragProxy.lm_bottom .lm_header .lm_tab.lm_active,
.lm_stack.lm_bottom .lm_header .lm_tab.lm_active {
box-shadow: 2px 2px 2px -2px rgba(0, 0, 0, 0.2);
}
.lm_selected .lm_header {
/* background-color: #452500; */
}
.lm_tab:hover,
.lm_tab.lm_active {
/* background: #e1e1e1; */
/* color: #777777; */
}
.lm_header .lm_controls .lm_tabdropdown:before {
/* color: #000000; */
}
.lm_controls > * {
position: relative;
background-position: center center;
background-repeat: no-repeat;
/* opacity: 0.4; */
transition: opacity 300ms ease;
}
.lm_controls > *:hover {
opacity: 1;
}
.lm_controls .lm_popout {
background-image: url('./img/lm_popout_black.png');
}
.lm_controls .lm_maximise {
background-image: url('./img/lm_maximise_black.png');
}
.lm_controls .lm_close {
background-image: url('./img/lm_close_black.png');
}
.lm_maximised .lm_header {
/* background-color: #ffffff; */
}
.lm_maximised .lm_controls .lm_maximise {
background-image: url('./img/lm_minimize_black.png');
}
.lm_transition_indicator {
/* background-color: #000000; */
border: 1px dashed #555555;
}
.lm_popin {
cursor: pointer;
}
.lm_popin .lm_bg {
/* background: #000000; */
/* opacity: 0.7; */
}
.lm_popin .lm_icon {
background-image: url('./img/lm_popin_black.png');
background-position: center center;
background-repeat: no-repeat;
/* opacity: 0.7; */
}
.lm_popin:hover .lm_icon {
opacity: 1;
}
/* max caused an error when returning to normal */
/* not worth supporting */
.lm_maximise {
display: none !important;
} |