|
| 1 | +.vp-popup-frame .vp-option-pagetable.vp-option-table { |
| 2 | +width:100%; |
| 3 | +} |
| 4 | +.vp-popup-frame .vp-option-page .vp-option-tableselect.var-multi,select.option-multi { |
| 5 | +height:60px; |
| 6 | +} |
| 7 | + |
| 8 | +/* Function Button */ |
| 9 | +.vp-popup-frame#vp_functionList .vp_funcButton { |
| 10 | +background-color: white; |
| 11 | +padding:3px7px3px7px; |
| 12 | +margin-right:5px; |
| 13 | +margin-bottom:5px; |
| 14 | +border:1px solid#535353; |
| 15 | +} |
| 16 | +.vp-popup-frame#vp_functionList .vp_funcButton:hover { |
| 17 | +background-color: lightgray; |
| 18 | +} |
| 19 | +.vp-popup-frame#vp_functionList .vp_funcButton.active { |
| 20 | +color: white; |
| 21 | +background-color:#535353; |
| 22 | +cursor: default; |
| 23 | +} |
| 24 | + |
| 25 | +/* Input & Select Design */ |
| 26 | +.vp-popup-frame .vp-input { |
| 27 | +height:30px; |
| 28 | +background-color:#FFFFFF; |
| 29 | +box-sizing: border-box; |
| 30 | +padding:0px5px0px5px; |
| 31 | +} |
| 32 | +.vp-popup-frame .vp-select { |
| 33 | +height:30px; |
| 34 | +background-color:#F5F5F5; |
| 35 | +box-sizing: border-box; |
| 36 | +/* select tag arrow */ |
| 37 | +-webkit-appearance: none; |
| 38 | +-moz-appearance: none; |
| 39 | +appearance: none; |
| 40 | +padding:0px5px0px5px; |
| 41 | +cursor: pointer; |
| 42 | +} |
| 43 | + |
| 44 | +/* Select Option Design */ |
| 45 | +.vp-popup-frame .vp-select* { |
| 46 | +background-color: white; |
| 47 | +color:#696969; |
| 48 | +} |
| 49 | + |
| 50 | +/* Input & Select Design - width m&s */ |
| 51 | +.vp-popup-frame .vp-input.m, |
| 52 | +.vp-popup-frame .vp-select.m { |
| 53 | +width:116px; |
| 54 | +} |
| 55 | +.vp-popup-frame .vp-input.s, |
| 56 | +.vp-popup-frame .vp-select.s { |
| 57 | +width:55px; |
| 58 | +} |
| 59 | + |
| 60 | +/* Range */ |
| 61 | +.vp-popup-frame .vp-range { |
| 62 | +display: inline; |
| 63 | +width:116px; |
| 64 | +} |
| 65 | +.vp-popup-frame .vp-textarea { |
| 66 | +border:0.25px solidvar(--border-gray-color); |
| 67 | +width:100%; |
| 68 | +height:100px; |
| 69 | +margin:0px; |
| 70 | +} |
| 71 | + |
| 72 | +/* Arrow Accordions */ |
| 73 | +.vp-popup-frame .vp-option-page .vp-accordian-header { |
| 74 | +font-weight: bold; |
| 75 | +} |
| 76 | +.vp-popup-frame .vp-option-page .vp-arrow-right, |
| 77 | +.vp-popup-frame .vp-option-page .vp-arrow-down { |
| 78 | +background-repeat: no-repeat; |
| 79 | +} |
| 80 | +.vp-popup-frame .vp-option-page .vp-spread { |
| 81 | +min-height:100px; |
| 82 | +} |
| 83 | +.vp-popup-frame .vp-option-page .vp-minimize { |
| 84 | +height:25px; |
| 85 | +overflow: hidden; |
| 86 | +} |
| 87 | +.vp-popup-frame .vp-pandas-block { |
| 88 | +border-bottom:1px solid darkgray; |
| 89 | +} |
| 90 | + |
| 91 | +/* Prefix & Postfix Text Area */ |
| 92 | +.vp-popup-frame#vp_prefixBoxtextarea, |
| 93 | +.vp-popup-frame#vp_postfixBoxtextarea { |
| 94 | +outline: none; |
| 95 | +resize: none; |
| 96 | +overflow: auto; |
| 97 | +} |
| 98 | +.no-selection { |
| 99 | +-webkit-touch-callout: none;/* iOS Safari */ |
| 100 | +-webkit-user-select: none;/* Safari */ |
| 101 | +-khtml-user-select: none;/* Konqueror HTML */ |
| 102 | +-moz-user-select: none;/* Old versions of Firefox */ |
| 103 | +-ms-user-select: none;/* Internet Explorer/Edge */ |
| 104 | +user-select: none;/* Non-prefixed version, currently |
| 105 | + supported by Chrome, Edge, Opera and Firefox */ |
| 106 | +} |
| 107 | + |
| 108 | +/* |
| 109 | + * numpy style |
| 110 | +*/ |
| 111 | +.vp-numpy-style-flex-row-center { |
| 112 | +display: flex; |
| 113 | +flex-direction: row; |
| 114 | +justify-content: center; |
| 115 | +} |
| 116 | +.vp-numpy-style-flex-row-wrap { |
| 117 | +display: flex; |
| 118 | +flex-direction: row; |
| 119 | +flex-flow: wrap; |
| 120 | +} |
| 121 | +.vp-numpy-style-flex-row { |
| 122 | +display: flex; |
| 123 | +flex-direction: row; |
| 124 | +} |
| 125 | +.vp-numpy-style-flex-column { |
| 126 | +display: flex; |
| 127 | +flex-direction: column; |
| 128 | +} |
| 129 | +.vp-numpy-style-flex-column-center { |
| 130 | +display: flex; |
| 131 | +flex-direction: column; |
| 132 | +justify-content: center; |
| 133 | +} |
| 134 | +.vp-numpy-box-border { |
| 135 | +border:1px solid#E4E4E4; |
| 136 | +border-radius:5px; |
| 137 | +box-sizing: border-box; |
| 138 | +padding:10px; |
| 139 | +} |