style.css 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156
  1. /*@import url(font.css);*/
  2. /*@import url(day.css);*/
  3. :root{
  4. --bgDisplay:none;
  5. }
  6. .mn-dwn-arw {
  7. border-color: #909090 transparent;
  8. border-style: solid;
  9. border-width: 5px 4px 0 4px;
  10. width: 0;
  11. height: 0;
  12. margin-left: -2px;
  13. top: 50%;
  14. margin-top: -2px;
  15. position: absolute;
  16. }
  17. body {
  18. font-family: 'Noto Sans', 'Noto Sans SC', 'Noto Sans TC', Arial, Verdana;
  19. font-style: normal;
  20. color: var(--main-color);
  21. font-weight: 400;
  22. font-size: 13px;
  23. overflow-x:hidden;
  24. }
  25. div {
  26. -webkit-box-sizing: border-box;
  27. -moz-box-sizing: border-box;
  28. box-sizing: border-box;
  29. }
  30. hr{
  31. margin: 14px 0;
  32. border:1px solid var(--tool-line-color);
  33. transform: scaleY(.4);
  34. }
  35. input,
  36. button,
  37. textarea,
  38. select,
  39. optgroup,
  40. option,
  41. hr,
  42. h1,
  43. h2,
  44. h3 {
  45. font-family: inherit;
  46. font-size: inherit;
  47. font-style: inherit;
  48. font-weight: inherit;
  49. color: inherit;
  50. background-color: inherit;
  51. -webkit-box-sizing: border-box;
  52. -moz-box-sizing: border-box;
  53. box-sizing: border-box;
  54. }
  55. .main {
  56. padding: 0;
  57. z-index: 1;
  58. }
  59. .mainbody {
  60. padding: 0;
  61. margin: 0;
  62. font-size: 100%;
  63. height: 100%;
  64. width: 100%;
  65. }
  66. .sutta {
  67. font-size: 100%;
  68. }
  69. .sutta_top_blank {
  70. height: 50px;
  71. }
  72. .heading {
  73. font-weight: 700;
  74. font-size: 158%;
  75. text-align: center;
  76. }
  77. h1 {
  78. font-size: 150%;
  79. font-weight: 700;
  80. }
  81. h2 {
  82. font-weight: 700;
  83. }
  84. h3 {
  85. font-weight: 700;
  86. }
  87. ::-webkit-scrollbar {
  88. width: 8px;
  89. height: 8px;
  90. /*display: none;*/
  91. }
  92. /*::-webkit-scrollbar-track {
  93. -webkit-border-radius: 10px;
  94. border-radius: 10px;
  95. background: rgba(85, 85, 85, 0.1);
  96. }*/
  97. ::-webkit-scrollbar-thumb {
  98. -webkit-border-radius: 10px;
  99. border-radius: 10px;
  100. background: rgba(85, 85, 85, 0.0);
  101. }
  102. :hover::-webkit-scrollbar-thumb {
  103. -webkit-border-radius: 10px;
  104. border-radius: 10px;
  105. background: rgba(85, 85, 85, 0.4);
  106. }
  107. .toc {
  108. margin: 0;
  109. padding: 0 4px 0 10px;
  110. overflow-y: scroll;
  111. overflow-x: hidden;
  112. height: calc(100% - 143px);
  113. height: -moz-calc(100% - 143px);
  114. height: -webkit-calc(100% - 143px);
  115. width: auto;
  116. word-wrap:break-word;
  117. }
  118. #menubartoolbar {
  119. border-top: 1px solid var(--tool-bg-color3);
  120. border-bottom: 1px solid var(--tool-bg-color3);
  121. padding: 0px;
  122. background-color: var(--tool-bg-color);
  123. display: -webkit-flex;
  124. display: -moz-flex;
  125. display: flex;
  126. }
  127. #menubartoolbar:hover select {
  128. background-color: var(--input-bg-color);
  129. color: var(--btn-hover-color);
  130. }
  131. #menubartoolbar select {
  132. width: 100%;
  133. height: 80px;
  134. padding: 0 15px;
  135. border: 0;
  136. background-color: var(--tool-bg-color);
  137. border-radius: 0;
  138. -webkid-border-radius: 0;
  139. font-weight: 400;
  140. font-size: 150%;
  141. color: var(--tool-color);
  142. margin: 0;
  143. }
  144. #menubartoolbar select option {
  145. background-color: var(--tool-bg-color);
  146. color: var(--tool-color);
  147. }
  148. #leftmenuinner {
  149. color: var(--tool-color);
  150. background-color: var(--tool-bg-color);
  151. position: fixed;
  152. display: inline-block;
  153. top: 3.5em;
  154. left: 0;
  155. padding: 0;
  156. height: 100%;
  157. max-width: 40em;
  158. width: auto;
  159. float: left;
  160. z-index: 15;
  161. -webkit-transition-duration: 0.4s;
  162. transition-duration: 0.4s;
  163. }
  164. .viewswitch_on {
  165. -webkit-transform:translateX(0em);
  166. -moz-transform:translateX:(0em);
  167. transform:translateX:(0em);
  168. box-shadow: 5px 0 20px 5px var(--shadow-color);
  169. }
  170. .viewswitch_off {
  171. -webkit-transform:translateX(-42em);
  172. -moz-transform:translateX(-42em);
  173. transform:translateX(-42em);
  174. }
  175. #leftmenuinner h1 {
  176. display: none;
  177. }
  178. #leftmenuinnerinner {}
  179. #id_info_panal {
  180. position: fixed;
  181. height: 0px;
  182. bottom: 0px;
  183. left: 0px;
  184. /*padding: 3px 10px;*/
  185. width: 100%;
  186. background-color: var(--info-bg-color);
  187. border-top: 1px solid var(--border-line-color);
  188. box-shadow: 0px -4px 10px 0px var(--shadow-color);
  189. z-index: 20;
  190. -webkit-transition-duration: 0.4s;
  191. transition-duration: 0.4s;
  192. -webkit-contain:strict;
  193. contain:strict;
  194. }
  195. #id_info_panal_inner {
  196. padding:20px;
  197. height: calc(100% - 30px);
  198. width: 100%;
  199. overflow-y: auto;
  200. }
  201. .mainview {
  202. background-color: var(--bg-color);
  203. padding: 0 50px;
  204. z-index: 1;
  205. float: left;
  206. -webkit-transition-duration: 0.4s;
  207. transition-duration: 0.4s;
  208. -webkit-contains:layout;
  209. -moz-contains:layout;
  210. contains:layout;
  211. width:100%;
  212. }
  213. #body_mainview {}
  214. .toc .tocitems p {
  215. font-size: 90%;
  216. margin: 4px 0 4px 0.5em;
  217. line-height: 1.2;
  218. }
  219. /*
  220. .toc ul {
  221. font-size: 90%;
  222. list-style-type: none;
  223. padding-left: 0px;
  224. line-height: 1.2;
  225. text-indent: 1px;
  226. }
  227. .toc ul li {
  228. text-indent: 1px;
  229. line-height: 1.2;
  230. margin: 5px 0;
  231. }*/
  232. #content {
  233. margin: 0px 5px 10px 5px;
  234. padding: 1px 3px;
  235. }
  236. #navi_bookmark {
  237. display: none;
  238. }
  239. #navi_note {
  240. display: none;
  241. }
  242. #toolbar {
  243. position: fixed;
  244. top: 0;
  245. left: 0;
  246. background-color: var(--tool-bg-color);
  247. color: var(--tool-color);
  248. width: 100%;
  249. font-size: 100%;
  250. z-index: 17;
  251. height: 3.5em;
  252. display: -webkit-flex;
  253. display: -moz-flex;
  254. display: flex;
  255. -webkit-align-items: center;
  256. -moz-align-items: center;
  257. align-items: center;
  258. -webkit-justify-content: space-between;
  259. -moz-justify-content: space-between;
  260. justify-content: space-between;
  261. padding: 0 10px 0 16px;
  262. border-bottom: 1px solid var(--tool-bg-color3);
  263. }
  264. #toolbar::-webkit-scrollbar {
  265. display: none;
  266. }
  267. .toolgroup1 {
  268. min-width: 7em;
  269. display: -webkit-flex;
  270. display: -moz-flex;
  271. display: flex;
  272. -webkit-justify-content: flex-end;
  273. -moz-justify-content: flex-end;
  274. justify-content: flex-end;
  275. -webkit-align-items: center;
  276. -moz-align-items: center;
  277. align-items: center;
  278. flex-wrap:nowrap;
  279. }
  280. .debug_info{
  281. position: fixed;
  282. left: 0;
  283. top: 0;
  284. opacity: 1;
  285. width: 100%;
  286. height: 100%;
  287. background-color: rgba(25, 25, 25, 0.4);
  288. display: none;
  289. -webkit-align-items: center;
  290. -moz-align-items: center;
  291. -webkit-justify-content: center;
  292. -moz-justify-content: center;
  293. justify-content: center;
  294. z-index: 21;
  295. }
  296. .debug_info #debug {
  297. background-color: var(--tool-bg-color);
  298. color: var(--tool-color);
  299. font-size: 120%;
  300. font-weight: 400;
  301. border-radius: 4px;
  302. height: 150px;
  303. min-width: 300px;
  304. padding: 30px;
  305. box-shadow: 0px 4px 8px 0px var(--shadow-color);
  306. display: -webkit-flex;
  307. display: -moz-flex;
  308. display: flex;
  309. -webkit-align-items: center;
  310. -moz-align-items: center;
  311. -webkit-justify-content: center;
  312. -moz-justify-content: center;
  313. justify-content: center;
  314. }
  315. #word_table {}
  316. #sutta_text {
  317. margin-bottom: 30px;
  318. }
  319. .sutta_title {
  320. color: var(--main-color);
  321. width:100%;
  322. border-left: 15px solid #BBB;
  323. margin: 30px 0 20px 0;
  324. padding: 1px 0.5em;
  325. }
  326. .sutta_title a {
  327. float: right;
  328. }
  329. .tran_h1_cn,
  330. .tran_h1_en {
  331. font-size: 100%;
  332. font-weight: 400;
  333. line-height: 1.1;
  334. margin: 0px 2px;
  335. }
  336. .sutta_paragraph, .pardiv {
  337. width: 100%;
  338. margin-bottom: 3em;
  339. display: -webkit-inline-flex;
  340. display: -moz-inline-flex;
  341. display: inline-flex;
  342. flex-wrap: wrap;
  343. }
  344. .pardiv{
  345. }
  346. .wbwparblock, .wbwdiv {
  347. display: -webkit-inline-flex;
  348. display: -moz-inline-flex;
  349. display: inline-flex;
  350. -webkit-align-items: flex-start;
  351. -moz-align-items: flex-start;
  352. align-items: flex-start;
  353. -webkit-flex-wrap: wrap;
  354. -moz-flex-wrap: wrap;
  355. flex-wrap: wrap;
  356. }
  357. .wbwdiv{
  358. -webkit-flex:7;
  359. -moz-flex:7;
  360. flex:7;
  361. }
  362. /*
  363. .pali_par_gatha {
  364. width: 50%;
  365. float: left;
  366. padding: 0;
  367. margin-left: 2em;
  368. }*/
  369. .trandiv {
  370. -webkit-flex:3;
  371. -moz-flex:3;
  372. flex:3;
  373. padding: 0 5px;
  374. /*margin: 0 0 0 30%-220px;*/
  375. }
  376. .tran_par_en {
  377. font-size: 80%;
  378. text-indent: 0;
  379. margin-top: 0;
  380. }
  381. .tran_par_cn {
  382. font-size: 90%;
  383. text-indent: 0;
  384. margin-top: 0;
  385. }
  386. .par_note, .wnotediv {
  387. /*display: none;*/
  388. background-color: var(--bg-color);
  389. /*position: absolute;*/
  390. flex:0 0 100%;
  391. font-size: 85%;
  392. margin: 12px 0px;
  393. padding: 5px 18px;
  394. }
  395. /*.par_note p, .wnotediv p {
  396. margin: 5px 2px;
  397. }*/
  398. .word {
  399. width: Auto;
  400. float: left;
  401. margin:0 0.5em 1.8em 0;
  402. pageBreakInside:avoid;
  403. }
  404. .word_punc {
  405. width: Auto;
  406. float: left;
  407. margin: 0 0.5em 1.8em -0.4em;
  408. line-height: 1em;
  409. }
  410. .word_detail, .wbody {
  411. font-weight: 300;
  412. }
  413. .pali, .whead {
  414. font-weight: 500;
  415. font-size: 110%;
  416. padding: 0px 2px;
  417. margin: 0px;
  418. line-height: 1.5em;
  419. }
  420. .mean {
  421. line-height: 1em;
  422. font-weight: 400;
  423. font-size: 90%;
  424. margin: 0;
  425. clear: both;
  426. display: -webkit-flex;
  427. display: -moz-flex;
  428. display: flex;
  429. align-items: center;
  430. -webkit-justify-content: space-between;
  431. -moz-justify-content: space-between;
  432. justify-content: space-between;
  433. }
  434. .ID {
  435. font-size: 70%;
  436. margin: 0;
  437. float: none;
  438. clear: both;
  439. display: none;
  440. }
  441. .org, .om, .case {
  442. font-size: 80%;
  443. margin: 0.3em 0;
  444. clear: both;
  445. color: var(--detail-color);
  446. line-height: 1.3em;
  447. display: flex;
  448. }
  449. .om {
  450. }
  451. .case {
  452. }
  453. .org{
  454. }
  455. .v_bld{
  456. font-weight: 700;
  457. }
  458. .cell, .case .type {
  459. margin:0 0.3em 0 1px;
  460. padding: 0px 2px;
  461. outline: 1px solid var(--detail-color);
  462. outline-offset: -1px;
  463. line-height: 1.5em;
  464. }
  465. /*不确定的显示为红色*/
  466. .case_dropbtn .cell2 a {
  467. background-color: #F80;
  468. color: var(--btn-hover-color);
  469. font-weight: 300;
  470. line-height: 1em;
  471. z-index: 100
  472. }
  473. .clr {
  474. -webkit-flex:0 0 100%;
  475. -moz-flex:0 0 100%;
  476. flex:0 0 100%;
  477. }
  478. .enter {
  479. clear: left;
  480. }
  481. .tran_input {
  482. display: none;
  483. clear: both;
  484. }
  485. .hidden {
  486. display: none;
  487. }
  488. #modifywin {
  489. color: var(--tool-color);
  490. width: auto;
  491. background-color: var(--tool-bg-color3);
  492. position: absolute;
  493. border-radius: 5px;
  494. box-shadow: 0px 4px 8px 0px var(--shadow-color);
  495. border-color: var(--btn-border-line-color);
  496. display: none;
  497. z-index: 10;
  498. }
  499. #modifywin p {
  500. margin: 0;
  501. padding: 0;
  502. }
  503. #modifywin .modifybutton {
  504. padding: 5px 0;
  505. border-top: 1px solid var(--tool-line-color);
  506. background-color: var(--tool-bg-color);
  507. }
  508. #modifywin .modifybutton button {
  509. font-size: 70%;
  510. border-color: var(--tool-color);
  511. border-width: 1px;
  512. }
  513. #modifywin .modifybutton button:hover {
  514. border-color: var(--link-color);
  515. background-color: var(--link-color);
  516. border-width: 1px;
  517. }
  518. #modify_detaile,
  519. #modify_bookmark,
  520. #modify_note,
  521. #modify_spell
  522. {
  523. display: none;
  524. padding: 10px 15px;
  525. color: var(--btn-color);
  526. background-color: var(--tool-bg-color);
  527. }
  528. #modify_detaile
  529. {
  530. display: block;
  531. }
  532. .modifycancel {
  533. font-size: 100%;
  534. padding: 10px;
  535. border-top: 1px solid var(--tool-line-color);
  536. }
  537. #modify_apply{
  538. padding: 0 15px;
  539. background-color: var(--tool-bg-color);
  540. border-bottom-right-radius: 5px;
  541. border-bottom-left-radius: 5px;
  542. }
  543. .bookmarkcolorblock {
  544. color: #009191;
  545. padding: 4px 4px;
  546. width: 1.2em;
  547. height: 1.5em;
  548. display: inline-block;
  549. margin: 0;
  550. text-align: center;
  551. line-height: 1.5em;
  552. }
  553. .bookmarkcolor0 {
  554. background-color: rgba(0, 0, 0, 0);
  555. }
  556. .bookmarkcolor1 {
  557. background-color: #F99;
  558. }
  559. .bookmarkcolor2 {
  560. background-color: #FF9;
  561. }
  562. .bookmarkcolor3 {
  563. background-color: #9F9;
  564. }
  565. .bookmarkcolor4 {
  566. background-color: #9FF;
  567. }
  568. .bookmarkcolor5 {
  569. background-color: #99F;
  570. }
  571. /*?x?没找到*/
  572. .bookmarkcolorx {
  573. background-color: var(--bookx);
  574. }
  575. /*?a?自动匹配*/
  576. .bookmarkcolora {
  577. /*background-color: var(--booka);*/
  578. background: linear-gradient(85deg,#E6F0FF,#FFFFFF);
  579. }
  580. .bookmarkcolora,
  581. .bookmarkcolorx,
  582. .bookmarkcolor0,
  583. .bookmarkcolor1,
  584. .bookmarkcolor2,
  585. .bookmarkcolor3,
  586. .bookmarkcolor4,
  587. .bookmarkcolor5 {
  588. padding: 0px 2px;
  589. }
  590. .bma {
  591. display: none;
  592. }
  593. .bmx {}
  594. .bm1 {}
  595. .bm2 {}
  596. .bm3 {}
  597. .bm4 {}
  598. .bm5 {}
  599. #navi_bookmark_inner h3 {
  600. font-size: 100%;
  601. font-weight: 700;
  602. }
  603. /*.editor{
  604. display:inline;
  605. }*/
  606. .debugMsg {
  607. display: none;
  608. }
  609. /*
  610. table {
  611. border-collapse: collapse;
  612. background-color: #FFFFFF;
  613. width: 100%;
  614. }
  615. td,
  616. th {
  617. border: 1px solid #D2D2D2;
  618. font-size: 80%;
  619. vertical-align: baseline;
  620. }
  621. tr.h {
  622. background-color: #F5F5F5;
  623. font-weight: 500;
  624. color: #000000;
  625. }
  626. */
  627. .center {
  628. text-align: center;
  629. }
  630. #device {
  631. margin-right: 16px;
  632. }
  633. #device a:link,
  634. #device a:visited {
  635. color: #4688F1;
  636. text-decoration: none;
  637. }
  638. #device a:focus {
  639. outline: 1px dotted;
  640. }
  641. #device a:hover,
  642. #device a:active {
  643. color: #4688F1;
  644. outline: none;
  645. text-decoration: underline;
  646. }
  647. .select_mode a:link,
  648. #device a:visited {
  649. color: #AAA;
  650. text-decoration: none;
  651. }
  652. .select_mode a:focus {
  653. outline: 1px dotted;
  654. }
  655. .select_mode a:hover,
  656. #device a:active {
  657. color: #000;
  658. outline: none;
  659. text-decoration: underline;
  660. }
  661. button,
  662. input[type="button"],
  663. input[type="submit"] {
  664. font-weight: 500;
  665. font-size: 90%;
  666. background-color: none;
  667. border: 2px solid var(--btn-border-color);
  668. border-radius: 99px;
  669. margin: 2px;
  670. padding: 2px 12px;
  671. -webkit-transition-duration: 0.2s;
  672. -moz-transition-duration: 0.2s;
  673. transition-duration: 0.2s;
  674. cursor: pointer;
  675. display: -webkit-inline-flex;
  676. display: -moz-inline-flex;
  677. display: inline-flex;
  678. -webkit-align-items: center;
  679. -moz-align-items: center;
  680. align-items: center;
  681. -webkit-flex-wrap: nowrap;
  682. -moz-flex-wrap: nowrap;
  683. flex-wrap: nowrap;
  684. -webkit-justify-content: center;
  685. -moz-justify-content: center;
  686. justify-content: center;
  687. }
  688. button:hover,
  689. input[type="button"]:hover,
  690. input[type="submit"]:hover {
  691. background-color: var(--btn-border-color);
  692. color: var(--tool-color);
  693. }
  694. button:disabled,
  695. input[type="button"]:disabled,
  696. input[type="submit"]:disabled {
  697. color: #878787;
  698. border-color: #878787;
  699. }
  700. .btn-group {
  701. position: relative;
  702. width: auto;
  703. display: -webkit-flex;
  704. display: -moz-flex;
  705. display: flex;
  706. -webkit-flex-wrap: nowrap;
  707. -moz-flex-wrap: nowrap;
  708. flex-wrap: nowrap;
  709. }
  710. /*
  711. .btn-group .btn+.btn {
  712. margin-right: -7px;
  713. }*/
  714. .btn-group>.btn:not(:first-child):not(:last-child) {
  715. border-radius: 0;
  716. }
  717. .btn-group>.btn:first-child:not(:last-child) {
  718. border-top-right-radius: 0;
  719. border-bottom-right-radius: 0;
  720. margin-right: -1px;
  721. }
  722. .btn-group>.btn:last-child:not(:first-child) {
  723. border-top-left-radius: 0;
  724. border-bottom-left-radius: 0;
  725. }
  726. /* 容器 <div> - 需要定位下拉内容 */
  727. .dropdown {
  728. position: relative;
  729. display: inline-flex;
  730. }
  731. /* 下拉内容 (默认隐藏) */
  732. .dropdown-content {
  733. border-radius: 3px;
  734. display: none;
  735. position: absolute;
  736. background-color: var(--bg-color);
  737. min-width: 60px;
  738. box-shadow: 0px 3px 16px 0px var(--shadow-color);
  739. z-index: 6;
  740. top: 100%;
  741. right: 0;
  742. }
  743. /*使用一半宽度 (120/2 = 60) 来居中提示工具*/
  744. .dropdown-content::after {
  745. content: " ";
  746. position: absolute;
  747. bottom: 100%;
  748. right: 0;
  749. margin-right: 20px;
  750. border-width: 5px;
  751. border-style: solid;
  752. border-color: transparent transparent var(--bg-color) transparent;
  753. }
  754. /* 下拉菜单的链接 */
  755. .dropdown-content a {
  756. padding: 6px 6px;
  757. text-decoration: none;
  758. display: block;
  759. white-space: nowrap;
  760. color: var(--main-color);
  761. }
  762. /* 鼠标移上去后修改下拉菜单链接颜色 */
  763. .dropdown-content a:hover {
  764. background-color: var(--btn-hover-bg-color);
  765. color: var(--btn-hover-color);
  766. border-radius: 3px;
  767. }
  768. /* 当下拉内容显示后修改下拉按钮的背景颜色 */
  769. .dropdown:hover .icon_btn {
  770. background-color: var(--btn-hover-bg-color);
  771. border-color: var(--btn-border-line-color);
  772. }
  773. .dropdown:hover .icon {
  774. fill: var(--btn-hover-color);
  775. }
  776. #file_new {
  777. width: 8em;
  778. }
  779. .tran_words {
  780. font-size: 80%;
  781. border-width: 1px;
  782. border-style: solid;
  783. border-color: blue;
  784. padding: 4px;
  785. box-shadow: 0px 3px 16px 0px var(--shadow-color);
  786. border-radius: 4px;
  787. }
  788. #menu_bookmark,
  789. #menu_file,
  790. #menu_display,
  791. #menu_dict,
  792. #menu_file,
  793. #menu_pali_cannon,
  794. #menu_layout,
  795. #menu_project,
  796. #menu_plugin
  797. {
  798. display: none;
  799. }
  800. .submenu {
  801. background-color: var(--tool-bg-color3);
  802. border-radius: 6px;
  803. color: var(--tool-color);
  804. margin: 4px 0;
  805. transition: all .4s ease;
  806. }
  807. .submenu_title {
  808. display: flex;
  809. color: var(--btn-color);
  810. background-color: unset;
  811. padding: 8px 12px;
  812. cursor: pointer;
  813. /*width: 100%;*/
  814. margin: 0px;
  815. align-items: center;
  816. justify-content: space-between;
  817. }
  818. .submenu_title:hover {
  819. color: var(--tool-color);
  820. }
  821. .submenu_title:hover .icon {
  822. fill: var(--tool-color);
  823. }
  824. .submenu_details {
  825. opacity: 0;
  826. max-height: 0px;
  827. background-color: var(--tool-bg-color1);
  828. color: var(--btn-color);
  829. font-weight: 400;
  830. border-bottom-left-radius: 6px;
  831. border-bottom-right-radius: 6px;
  832. padding: 0px;
  833. width: 100%;
  834. transition: all .4s ease;
  835. overflow: hidden;
  836. }
  837. #btn_close_printprev {
  838. position: fixed;
  839. background-color: rgba(0, 0, 0, 0);
  840. width: 2.5em;
  841. height: 2.5em;
  842. font-size: 2em;
  843. color: #FFF;
  844. display: block;
  845. }
  846. #btn_close_printprev a {
  847. width: 2em;
  848. height: 2em;
  849. text-decoration: none;
  850. color: rgba(0, 0, 0, 0);
  851. }
  852. #btn_close_printprev a:hover {
  853. color: #FFF;
  854. text-decoration: none;
  855. }
  856. #basic_dict_list p {
  857. padding: 0px;
  858. margin: 2px 4px;
  859. }
  860. .grm_add_mean {
  861. color: #BD8B18;
  862. }
  863. .grm_add_mean_user {
  864. color: var(--mean-user-color);
  865. }
  866. /* 下拉按钮样式 */
  867. .case_dropbtn {
  868. }
  869. .case_dropdown .case_dropbtn {
  870. display: flex;
  871. cursor: pointer;
  872. margin: 0px;
  873. }
  874. /* 容器 <div> - 需要定位下拉内容 */
  875. .case_dropdown {
  876. padding: 0;
  877. cursor: pointer;
  878. min-width: 3em;
  879. }
  880. /* 下拉内容 (默认隐藏) */
  881. .case_dropdown-content {
  882. margin: 0.3em;
  883. display: none;
  884. position: absolute;
  885. background-color: var(--drop-bg-color);
  886. min-width: 8em;
  887. max-width: 30em;
  888. margin: -1px 0px;
  889. box-shadow: 0px 3px 13px 0px var(--shadow-color);
  890. color: var(--main-color);
  891. z-index: 200;
  892. }
  893. .case_dropdown-title{
  894. padding: 0.1em 0.1em;
  895. display: block;
  896. text-align: left;
  897. background-color: #fdfdbf;
  898. font-size: 80%;
  899. cursor: default;
  900. font-weight: 500;
  901. }
  902. /* 下拉菜单的链接 */
  903. .case_dropdown-content a {
  904. /*padding: 0.3em 0.4em;*/
  905. line-height: 160%;
  906. text-decoration: none;
  907. display: block;
  908. cursor: pointer;
  909. text-align: left;
  910. }
  911. /* 鼠标移上去后修改下拉菜单链接颜色 */
  912. .case_dropdown-content a:hover {
  913. background-color: var(--link-color);
  914. color: var(--btn-hover-color);
  915. }
  916. /* 在鼠标移上去后显示下拉菜单 */
  917. .case_dropdown:hover .case_dropdown-content {
  918. display: block;
  919. }
  920. /* 当下拉内容显示后修改下拉按钮的背景颜色 */
  921. .case_dropdown:hover .case_dropbtn {
  922. opacity: 0.4;
  923. }
  924. /*下拉菜单结束*/
  925. /* 子下拉按钮样式 */
  926. .case_dropbtn_sub {
  927. }
  928. .case_dropdown_sub .case_dropbtn_sub {
  929. display: flex;
  930. cursor: pointer;
  931. margin: 0px;
  932. }
  933. /* 容器 <div> - 需要定位下拉内容 */
  934. .case_dropdown_sub {
  935. padding: 0;
  936. cursor: pointer;
  937. min-width: 3em;
  938. }
  939. /* 下拉内容 (默认隐藏) */
  940. .case_dropdown-content_sub {
  941. margin: 0.3em;
  942. display: none;
  943. position: absolute;
  944. background-color: var(--drop-bg-color);
  945. min-width: 8em;
  946. max-width: 30em;
  947. margin: -1px 0px;
  948. box-shadow: 0px 3px 13px 0px var(--shadow-color);
  949. color: var(--main-color);
  950. z-index: 200;
  951. left:5em;
  952. }
  953. .case_dropdown-title_sub{
  954. padding: 0.1em 0.1em;
  955. display: block;
  956. text-align: left;
  957. background-color: #fdfdbf;
  958. font-size: 80%;
  959. cursor: default;
  960. font-weight: 500;
  961. }
  962. /* 下拉菜单的链接 */
  963. .case_dropdown-content_sub a {
  964. /*padding: 0.3em 0.4em;*/
  965. line-height: 160%;
  966. text-decoration: none;
  967. display: block;
  968. cursor: pointer;
  969. text-align: left;
  970. }
  971. /* 鼠标移上去后修改下拉菜单链接颜色 */
  972. .case_dropdown-content_sub a:hover {
  973. background-color: var(--link-color);
  974. color: var(--btn-hover-color);
  975. }
  976. /* 在鼠标移上去后显示下拉菜单 */
  977. .case_dropdown_sub:hover .case_dropdown-content_sub {
  978. display: block;
  979. }
  980. /* 当下拉内容显示后修改下拉按钮的背景颜色 */
  981. .case_dropdown_sub:hover .case_dropbtn_sub {
  982. opacity: 0.4;
  983. }
  984. /*下拉菜单结束*/
  985. .wbody:hover .edit_icon{
  986. opacity: 1;
  987. }
  988. #id_dict_matched dict {
  989. padding: 0px;
  990. margin: 6px 0 0 0;
  991. font-size: 1em;
  992. display: block;
  993. border-bottom: 2px solid #00F;
  994. }
  995. #id_dict_matched dict span {
  996. background: #00F;
  997. color: #FFF;
  998. }
  999. #id_dict_matched pali {
  1000. padding: 0px;
  1001. margin: 0px;
  1002. font-size: 0.9em;
  1003. font-weight: 700;
  1004. display: block;
  1005. background: #ccf;
  1006. }
  1007. #id_dict_matched pali:hover {
  1008. background: #aaf;
  1009. }
  1010. #id_dict_matched org {
  1011. padding: 0px;
  1012. margin: 0px;
  1013. font-size: 0.8em;
  1014. display: block;
  1015. background: #cdf;
  1016. }
  1017. #id_dict_matched org:hover {
  1018. background: #aaf;
  1019. }
  1020. #id_dict_matched mean {
  1021. padding: 0px;
  1022. margin: 0px;
  1023. font-size: 0.8em;
  1024. display: block;
  1025. background: #ccf;
  1026. background: #cdf;
  1027. }
  1028. #id_dict_matched mean:hover {
  1029. background: #aaf;
  1030. }
  1031. #id_dict_matched case {
  1032. padding: 0px;
  1033. margin: 0 0 4px 0;
  1034. font-size: 0.8em;
  1035. display: block;
  1036. background: #cdf;
  1037. }
  1038. #id_dict_matched case:hover {
  1039. background: #aaf;
  1040. }
  1041. /*
  1042. #modify_bookmark div {
  1043. padding: 5px;
  1044. }
  1045. #modify_bookmark div span {
  1046. cursor: pointer;
  1047. border-radius: 4px;
  1048. border: 1px solid #FFF;
  1049. }
  1050. #modify_bookmark div span:hover {
  1051. border: 1px solid #000000;
  1052. }
  1053. /* option tab css */
  1054. ul,
  1055. li {
  1056. white-space: nowrap;
  1057. color: inherit;
  1058. margin: 0px;
  1059. padding: 0px;
  1060. word-break: keep-all;
  1061. text-overflow: ellipsis;
  1062. }
  1063. .bookmark-tab {
  1064. position: relative;
  1065. height: 100%;
  1066. }
  1067. .bookmark-tab li {
  1068. font-size: 12px;
  1069. cursor: pointer;
  1070. outline-offset: -2px;
  1071. outline-color: var(--main-color);
  1072. }
  1073. .bookmark-tab li:hover {
  1074. box-shadow: 0 0 0 2px var(--link-color) inset;
  1075. }
  1076. .gramma-tab {
  1077. position: relative;
  1078. height: 100%;
  1079. border-bottom: 1px solid #555;
  1080. margin: 3px 0px;
  1081. }
  1082. .gramma-tab li {
  1083. padding: 4px 5px;
  1084. display: inline-block;
  1085. font-size: 0.8em;
  1086. text-align: center;
  1087. margin-left: 0px;
  1088. margin-right: 0px;
  1089. cursor: pointer;
  1090. height: 100%;
  1091. line-height: 1em;
  1092. margin-bottom: 4px;
  1093. border: 1px solid #FFF;
  1094. border-radius: 3px;
  1095. transition: all ease 0.3s;
  1096. }
  1097. .gramma-tab li:first-child {
  1098. margin-left: 0px;
  1099. }
  1100. .gramma-tab li:hover {}
  1101. .common-tab {
  1102. text-align: center;
  1103. width: auto;
  1104. position: relative;
  1105. height: 100%;
  1106. display: -webkit-flex;
  1107. display: -moz-flex;
  1108. display: flex;
  1109. margin: 15px 15px 0 15px;
  1110. align-items: flex-end;
  1111. color: var(--main-color);
  1112. font-weight: 500;
  1113. background-color: var(--tool-bg-color3);
  1114. z-index: 11;
  1115. }
  1116. .common-tab_li {
  1117. color: var(--btn-color);
  1118. margin: 0;
  1119. padding: 8px 10px;
  1120. display: inline-block;
  1121. cursor: pointer;
  1122. border: 1px solid var(--nocolor);
  1123. border-bottom: 0px;
  1124. }
  1125. .common-tab_li_act {
  1126. color:var(--tool-color);
  1127. margin: 0;
  1128. padding: 8px 10px;
  1129. display: inline-block;
  1130. cursor: pointer;
  1131. box-shadow: 0 1px 0 0 var(--tool-bg-color);
  1132. background-color: var(--tool-bg-color);
  1133. border: 1px solid var(--nocolor);
  1134. border-bottom: 0px;
  1135. border-top-right-radius: 4px;
  1136. border-top-left-radius: 4px;
  1137. }
  1138. /*
  1139. .common-tab li:first-child {
  1140. margin-left: 0px;
  1141. }
  1142. .common-tab li:last-child {
  1143. margin-right: 0px;
  1144. }
  1145. */
  1146. .common-tab_li:hover {
  1147. background-color: var(--btn-hover-bg-color);
  1148. border: 1px solid var(--tool-line-color);
  1149. border-bottom: 0px;
  1150. border-top-right-radius: 4px;
  1151. border-top-left-radius: 4px;
  1152. }
  1153. #export_data {
  1154. display: none;
  1155. }
  1156. .dict_row0 {
  1157. background: #FFF;
  1158. }
  1159. .dict_row-1 {
  1160. background: #FFD;
  1161. }
  1162. .dict_row-2 {
  1163. background: #FFB;
  1164. }
  1165. .dict_row0 {
  1166. background: #FFF;
  1167. }
  1168. .dict_row1 {
  1169. background: #FFD;
  1170. }
  1171. .dict_row2 {
  1172. background: #FFB;
  1173. }
  1174. .dict_row3 {
  1175. background: #FF9;
  1176. }
  1177. .dict_row4 {
  1178. background: #FF7;
  1179. }
  1180. .dict_row5 {
  1181. background: #FF5;
  1182. }
  1183. .dict_row6 {
  1184. background: #FF3;
  1185. }
  1186. .dict_row_new {
  1187. background: #F5F5F5;
  1188. width: auto;
  1189. }
  1190. .word_parent {
  1191. margin: 2px;
  1192. padding: 2px;
  1193. font-size: 80%;
  1194. }
  1195. .word_current {
  1196. margin: 2px;
  1197. padding-left: 0.5em;
  1198. font-size: 100%;
  1199. font-weight: 700;
  1200. }
  1201. .word_child {
  1202. margin: 2px;
  1203. padding-left: 2em;
  1204. font-size: 80%;
  1205. }
  1206. .mean_block span {
  1207. background-color: #AAF;
  1208. margin: 0;
  1209. padding: 0 3px;
  1210. border-radius: 4px;
  1211. }
  1212. /*
  1213. .mean_block span:hover,
  1214. span:active {
  1215. cursor: pointer;
  1216. background-color: #E0DDDD;
  1217. margin: 0;
  1218. padding: 0 3px;
  1219. border-radius: 4px;
  1220. }*/
  1221. .fun_block {
  1222. background-color: var(--tool-bg-color);
  1223. color: var(--tool-color);
  1224. width: 50em;
  1225. padding: 20px 40px;
  1226. margin-bottom: 20px;
  1227. box-shadow: 2px 2px 10px 2px var(--shadow-color);
  1228. border-radius: 8px;
  1229. }
  1230. .fun_block h2 {
  1231. border-bottom: 1px solid var(--tool-line-color);
  1232. margin-bottom: 1em;
  1233. padding-bottom: 10px;
  1234. font-size: 120%;
  1235. color: var(--tool-color);
  1236. }
  1237. #userfilelist {
  1238. display: inline-block;
  1239. width: 100%;
  1240. }
  1241. #id_app_name {
  1242. font-size: 200%;
  1243. font-weight: 400;
  1244. color: #1EAFFF;
  1245. padding: 25px 30px;
  1246. }
  1247. .mean_cell {
  1248. display: inline-block;
  1249. cursor: pointer;
  1250. border: black solid thin;
  1251. margin: 2px 2px;
  1252. padding: 1px 0;
  1253. border-radius: 4px;
  1254. background-color: #ECECEC;
  1255. }
  1256. .mean_inner {
  1257. display: inline;
  1258. }
  1259. .mean_button {
  1260. display: none;
  1261. margin: 0;
  1262. padding: 1px 5px;
  1263. }
  1264. .mean_cell:hover .mean_button {
  1265. display: inline;
  1266. }
  1267. .mean_button:hover {
  1268. background-color: #3e8e41;
  1269. }
  1270. .button_shell {
  1271. display: inline-block;
  1272. width: 1em;
  1273. }
  1274. #id_text_edit_form textarea {
  1275. font-size: 16px;
  1276. width: 99%;
  1277. }
  1278. .debugMsg>textarea {
  1279. width: 60%;
  1280. }
  1281. /*
  1282. .submitbtn {
  1283. border: 1px solid #DCDCDC;
  1284. padding: 4px 8px;
  1285. font-size: 13px;
  1286. font-weight: 400;
  1287. min-height: 1em;
  1288. color: #009191;
  1289. background-color: #F9F9F9;
  1290. border-radius: 4px;
  1291. margin: 0 2px;
  1292. -webkit-transition-duration: 0.2s;
  1293. transition-duration: 0.2;
  1294. cursor: pointer;
  1295. }
  1296. .submitbtn:hover {
  1297. background-color: #4688F1;
  1298. border: 1px solid #4688F1;
  1299. color: #FFFFFF;
  1300. }
  1301. .tool_button {}
  1302. */
  1303. .edit_tran_button {
  1304. display: inline;
  1305. height: 1.5em;
  1306. padding: 0 5px;
  1307. margin: 0 3px 0 0;
  1308. opacity: 0.7;
  1309. }
  1310. .edit_tran_button:hover {
  1311. opacity: 1;
  1312. }
  1313. @keyframes viewbug {
  1314. 0% {
  1315. opacity: 0;
  1316. }
  1317. 40% {
  1318. opacity: 1;
  1319. }
  1320. 60% {
  1321. opacity: 1;
  1322. }
  1323. 100% {
  1324. opacity: 0;
  1325. }
  1326. }
  1327. .note_sen {
  1328. font-size: 90%;
  1329. color: var(--detail-color);
  1330. }
  1331. .comm_par {
  1332. font-size: 80%;
  1333. padding: 16px;
  1334. border-top: 1px solid var(--main-color);
  1335. border-bottom:1px solid var(--main-color);
  1336. }
  1337. .imgbutton{
  1338. border:0;
  1339. padding: 0;
  1340. opacity: 0.6;
  1341. }
  1342. .imgbutton:hover{
  1343. border:0;
  1344. padding: 0;
  1345. opacity: 1;
  1346. background: none;
  1347. }
  1348. .imgbutton:hover .icon{
  1349. fill:var(--link-color);
  1350. }
  1351. .in_word_button {
  1352. margin: 0px 4px;
  1353. outline: 1px solid var(--detail-color);
  1354. outline-offset: -1px;
  1355. cursor: pointer;
  1356. }
  1357. .un_pali{
  1358. color:#AAF;
  1359. }
  1360. .un_begin{
  1361. color:#AAF;
  1362. }
  1363. .un_end{
  1364. color:#AAF;
  1365. }
  1366. .paliword1 {
  1367. }
  1368. .paliword2 {
  1369. margin: 0.3em 0;
  1370. clear: left;
  1371. display: none;
  1372. }
  1373. /*
  1374. .mean table {
  1375. border-collapse: collapse;
  1376. background-color: #FFFFFF;
  1377. width: 100%;
  1378. }
  1379. .mean td,th {
  1380. border: 1px solid #D2D2D2;
  1381. font-size: 100%;
  1382. vertical-align: baseline;
  1383. }
  1384. .mean tr.h {
  1385. background-color: #F5F5F5;
  1386. font-weight: 500;
  1387. color: #000000;
  1388. }
  1389. */
  1390. #id_palicannon_index_filelist li{
  1391. margin-left:1em;
  1392. overflow: hidden;
  1393. font-size: 95%;
  1394. }
  1395. #input_meaning{
  1396. width:90%;
  1397. }
  1398. #input_org{
  1399. width:90%;
  1400. }
  1401. #input_om{
  1402. width:90%;
  1403. }
  1404. #input_case{
  1405. width:90%;
  1406. display:none;
  1407. }
  1408. .tocitems li{
  1409. overflow: hidden;
  1410. }
  1411. .toc_h_0{
  1412. display:none;
  1413. }
  1414. .toc_h_1{
  1415. padding-left:0;
  1416. }
  1417. .toc_h_2{
  1418. padding-left:1em;
  1419. }
  1420. .toc_h_3{
  1421. padding-left:2em;
  1422. }
  1423. .toc_h_4{
  1424. padding-left:3em;
  1425. }
  1426. .head_par{
  1427. width: 100%;
  1428. font-weight: 700;
  1429. }
  1430. .head_par .head_pali_1 {
  1431. text-align: center;
  1432. font-size: 200%;
  1433. border-bottom: 3px solid var(--main-color);
  1434. }
  1435. .head_par .head_pali_2 {
  1436. text-align: center;
  1437. font-size: 150%;
  1438. }
  1439. .head_par .head_pali_3 {
  1440. font-size: 120%;
  1441. }
  1442. .head_par .head_pali_4 {
  1443. font-size: 100%;
  1444. }
  1445. #id_text_edit_form {
  1446. padding: 12px;
  1447. color:var(--btn-color);
  1448. background-color: var(--tool-bg-color);
  1449. width: 50%;
  1450. position: fixed;
  1451. box-shadow: 0px 4px 8px 0px var(--shadow-color);
  1452. left: 200px;
  1453. top: 200px;
  1454. display: none;
  1455. z-index: 18;
  1456. border-radius: 2px;
  1457. }
  1458. #id_text_edit_author{
  1459. width: 300px;
  1460. }
  1461. #id_text_edit_language{
  1462. margin-right:16px;
  1463. }
  1464. .dialog-title {
  1465. padding-bottom: 5px;
  1466. text-align: center;
  1467. vertical-align: middle;
  1468. width:100%;
  1469. font-weight:500;
  1470. }
  1471. #id_text_edit_caption{
  1472. display: flex;
  1473. flex-wrap:wrap;
  1474. cursor: move;
  1475. justify-content: space-between;
  1476. }
  1477. .blackscreen {
  1478. position: fixed;
  1479. left: 0;
  1480. top: 0;
  1481. width: 100%;
  1482. height: 100%;
  1483. background-color: rgba(25, 25, 25, 0.6);
  1484. display: none;
  1485. z-index: 14;
  1486. }
  1487. .nocolor{
  1488. opacity: 0;
  1489. }
  1490. .tree_expand{
  1491. padding:5px 1px;
  1492. border: 1px solid #DCDCDC;
  1493. }
  1494. .pnotediv{
  1495. width:100%;
  1496. padding: 5px;
  1497. box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2)
  1498. display:none;
  1499. }
  1500. .note_parblock:first-child{
  1501. border-top:none;
  1502. padding-top: 0;
  1503. }
  1504. .note_parblock{
  1505. border-bottom: var(--border);
  1506. padding: 1em 0;
  1507. }
  1508. .tran_parblock:first-child{
  1509. border-top:none;
  1510. padding-top: 0;
  1511. }
  1512. .tran_parblock{
  1513. border-top: var(--border);
  1514. padding: 1em 0;
  1515. }
  1516. .en_text{
  1517. font-size:150%;
  1518. }
  1519. .zh_text{
  1520. font-size:150%;
  1521. }
  1522. .tw_text{
  1523. font-size:150%;
  1524. }
  1525. .wnotediv {
  1526. font-size: 85%;
  1527. border-left: 5px solid #CDC;
  1528. margin: 2px 5px 2px 1em;
  1529. padding: 2px;
  1530. clear: left;
  1531. }
  1532. .wnotediv p {
  1533. margin: 5px 2px;
  1534. }
  1535. .full_note_handle .full_note{
  1536. display:none;
  1537. }
  1538. /* 在鼠标移上去后显示下拉菜单 */
  1539. .full_note_handle:hover .full_note {
  1540. display: inline;
  1541. }
  1542. .edit_tool{
  1543. flex: 0 0 100%;
  1544. display:block;
  1545. margin: 0;
  1546. }
  1547. .edit_tool .icon{
  1548. height: 1em;
  1549. width: 1em;
  1550. }
  1551. .head_tool{
  1552. margin-top: 3em;
  1553. color: var(--detail-color);
  1554. }
  1555. .par_heading{
  1556. flex: 0 0 100%;
  1557. margin-bottom: 2em;
  1558. font-family: 'Noto Serif', 'Noto Sans TC', 'Noto Sans SC';
  1559. }
  1560. .par_heading .heading_parblock_1_pali{
  1561. font-size:170%;
  1562. font-weight: 700;
  1563. border-bottom: 1px solid var(--border-line-color);
  1564. }
  1565. .par_heading .heading_parblock_1_zh{
  1566. font-size:110%;
  1567. font-weight: 700;
  1568. }
  1569. .par_heading .heading_parblock_1_tw{
  1570. font-size:110%;
  1571. font-weight: 700;
  1572. }
  1573. .par_heading .heading_parblock_1_en{
  1574. font-size:100%;
  1575. font-weight: 700;
  1576. }
  1577. .par_heading .heading_parblock_2_pali{
  1578. font-size:160%;
  1579. font-weight: 700;
  1580. border-bottom: 1px solid var(--border-line-color);
  1581. }
  1582. .par_heading .heading_parblock_2_zh{
  1583. font-size:110%;
  1584. font-weight: 700;
  1585. }
  1586. .par_heading .heading_parblock_2_tw{
  1587. font-size:110%;
  1588. font-weight: 700;
  1589. }
  1590. .par_heading .heading_parblock_2_en{
  1591. font-size:110%;
  1592. font-weight: 700;
  1593. }
  1594. .par_heading .heading_parblock_3_pali{
  1595. font-size:130%;
  1596. font-weight: 700;
  1597. border-bottom: 1px solid var(--border-line-color);
  1598. }
  1599. .par_heading .heading_parblock_3_zh{
  1600. font-size:100%;
  1601. font-weight: 700;
  1602. }
  1603. .par_heading .heading_parblock_3_tw{
  1604. font-size:100%;
  1605. font-weight: 700;
  1606. }
  1607. .par_heading .heading_parblock_3_en{
  1608. font-size:100%;
  1609. font-weight: 700;
  1610. }
  1611. .par_heading .heading_parblock_4_pali{
  1612. font-size:110%;
  1613. font-weight: 700;
  1614. border-bottom: 1px solid var(--border-line-color);
  1615. }
  1616. .par_heading .heading_parblock_4_zh{
  1617. font-size:90%;
  1618. font-weight: 700;
  1619. }
  1620. .par_heading .heading_parblock_4_tw{
  1621. font-size:90%;
  1622. font-weight: 700;
  1623. }
  1624. .par_heading .heading_parblock_4_en{
  1625. font-size:90%;
  1626. font-weight: 700;
  1627. }
  1628. .par_heading .heading_parblock_5_pali{
  1629. font-size:110%;
  1630. font-weight: 700;
  1631. border-bottom: 1px solid var(--border-line-color);
  1632. }
  1633. .par_heading .heading_parblock_5_zh{
  1634. font-size:90%;
  1635. font-weight: 700;
  1636. }
  1637. .par_heading .heading_parblock_5_tw{
  1638. font-size:90%;
  1639. font-weight: 700;
  1640. }
  1641. .par_heading .heading_parblock_5_en{
  1642. font-size:90%;
  1643. font-weight: 700;
  1644. }
  1645. .par_heading .heading_parblock_6_pali{
  1646. font-size:110%;
  1647. font-weight: 700;
  1648. border-bottom: 1px solid var(--border-line-color);
  1649. }
  1650. .par_heading .heading_parblock_6_zh{
  1651. font-size:90%;
  1652. font-weight: 700;
  1653. }
  1654. .par_heading .heading_parblock_6_tw{
  1655. font-size:90%;
  1656. font-weight: 700;
  1657. }
  1658. .par_heading .heading_parblock_6_en{
  1659. font-size:90%;
  1660. font-weight: 700;
  1661. }
  1662. .par_heading .heading_parblock_7_pali{
  1663. font-size:110%;
  1664. font-weight: 700;
  1665. border-bottom: 1px solid var(--border-line-color);
  1666. }
  1667. .par_heading .heading_parblock_7_zh{
  1668. font-size:90%;
  1669. font-weight: 700;
  1670. }
  1671. .par_heading .heading_parblock_7_tw{
  1672. font-size:90%;
  1673. font-weight: 700;
  1674. }
  1675. .par_heading .heading_parblock_7_en{
  1676. font-size:90%;
  1677. font-weight: 700;
  1678. }
  1679. .par_heading .heading_parblock_8_pali{
  1680. font-size:110%;
  1681. font-weight: 700;
  1682. border-bottom: 1px solid var(--border-line-color);
  1683. }
  1684. .par_heading .heading_parblock_8_zh{
  1685. font-size:90%;
  1686. font-weight: 700;
  1687. }
  1688. .par_heading .heading_parblock_8_tw{
  1689. font-size:90%;
  1690. font-weight: 700;
  1691. }
  1692. .par_heading .heading_parblock_8_en{
  1693. font-size:90%;
  1694. font-weight: 700;
  1695. }
  1696. .toc_heading{
  1697. padding:0;
  1698. }
  1699. .toc_heading_0{
  1700. display:none;
  1701. }
  1702. .toc_heading_1{
  1703. padding-left:0.5em;
  1704. padding-bottom:0.3em;
  1705. }
  1706. .toc_heading_2{
  1707. padding-left:1em;
  1708. padding-bottom:0.3em;
  1709. }
  1710. .toc_heading_3{
  1711. padding-left:1.5em;
  1712. padding-bottom:0.3em;
  1713. }
  1714. .toc_heading_4{
  1715. padding-left:2em;
  1716. padding-bottom:0.3em;
  1717. }
  1718. .toc_heading_5{
  1719. padding-left:2.5em;
  1720. padding-bottom:0.3em;
  1721. }
  1722. .toc_heading_6{
  1723. padding-left:3em;
  1724. padding-bottom:0.3em;
  1725. }
  1726. .toc_heading_7{
  1727. padding-left:3.5em;
  1728. padding-bottom:0.3em;
  1729. }
  1730. .toc_heading_8{
  1731. padding-left:4em;
  1732. padding-bottom:0.3em;
  1733. }
  1734. .toc_item{
  1735. display:block;
  1736. }
  1737. .toc_item_0{
  1738. display:none;
  1739. }
  1740. .toc_item_1{
  1741. padding-left:0.5em;
  1742. padding-bottom:0.3em;
  1743. }
  1744. .toc_item_2{
  1745. padding-left:1em;
  1746. padding-bottom:0.3em;
  1747. }
  1748. .toc_item_3{
  1749. padding-left:1.5em;
  1750. padding-bottom:0.3em;
  1751. }
  1752. .toc_item_4{
  1753. padding-left:2em;
  1754. padding-bottom:0.3em;
  1755. }
  1756. .toc_item_5{
  1757. padding-left:2.5em;
  1758. padding-bottom:0.3em;
  1759. }
  1760. .toc_item_6{
  1761. padding-left:3em;
  1762. padding-bottom:0.3em;
  1763. }
  1764. .toc_item_7{
  1765. padding-left:3.5em;
  1766. padding-bottom:0.3em;
  1767. }
  1768. .toc_item_8{
  1769. padding-left:4em;
  1770. padding-bottom:0.3em;
  1771. }
  1772. .edit_icon{
  1773. opacity: 0;
  1774. height: 1.2em;
  1775. width: 1.2em;
  1776. fill: var(--link-color);
  1777. -webkit-transition-duration: 0.2s;
  1778. transition-duration: 0.2s;
  1779. }
  1780. .toolbtn{
  1781. display: none;
  1782. }
  1783. #word_table_inner table {
  1784. border-collapse: collapse;
  1785. background-color: #FFFFFF;
  1786. width: 100%;
  1787. }
  1788. #word_table_inner td,th {
  1789. border: 1px solid #D2D2D2;
  1790. font-size: 80%;
  1791. vertical-align: baseline;
  1792. }
  1793. #word_table_inner tr.h {
  1794. background-color: #F5F5F5;
  1795. font-weight: 500;
  1796. color: #000000;
  1797. }
  1798. #menu_button_home{
  1799. margin-right: auto;
  1800. }
  1801. .border_right{
  1802. border-right:1px solid var(--tool-line-color);
  1803. height: 1.8em;
  1804. margin: 0 10px 0 10px;
  1805. }
  1806. #new_input_Tran1{
  1807. display:none;
  1808. }
  1809. #new_input_Tran2{
  1810. display:none;
  1811. }
  1812. .v_paranum{
  1813. color:#55F;
  1814. }
  1815. .v_note{
  1816. color:#51b351;
  1817. }
  1818. #id_heading_edit_level{
  1819. display:none;
  1820. }
  1821. #id_text_edit_delete{
  1822. background-color:#e6c9a4;
  1823. display:none;
  1824. }
  1825. .toc_heading td{
  1826. vertical-align:top;
  1827. }
  1828. .toc_heading_inner{
  1829. }
  1830. .code_list_dropdown{
  1831. display: flex;
  1832. align-items: center;
  1833. white-space: nowrap;
  1834. margin:0;
  1835. }
  1836. .project_res_add_author{
  1837. display: flex;
  1838. align-items: center;
  1839. white-space: nowrap;
  1840. margin:0;
  1841. }
  1842. .editor_project_res_info input{
  1843. width:100%;
  1844. }
  1845. #id_dict_curr_word_inner table{
  1846. }
  1847. #id_dict_curr_word_inner table {border-collapse: collapse;}
  1848. #id_dict_curr_word_inner td, th { border: 1px solid #000000; font-size: 80%; vertical-align: baseline;}
  1849. #id_dict_curr_word_inner .h {background-color: #9999cc; font-weight: bold; color: #000000;}
  1850. /*
  1851. #id_dict_match_result table {border-collapse: collapse;}
  1852. #id_dict_match_result td, th { border: 1px solid #000000; font-size: 80%; vertical-align: baseline;}
  1853. #id_dict_match_result .h {background-color: #9999cc; font-weight: bold; color: #000000;}
  1854. */
  1855. .normal_table table {border-collapse: collapse;}
  1856. .normal_table td, th { border: 1px solid #000000; font-size: 80%; vertical-align: baseline;}
  1857. .normal_table .h {background-color: #9999cc; font-weight: bold; color: #000000;}
  1858. .frame_table table {border-collapse: collapse;}
  1859. .frame_table td, th { border: 1px solid #FFF; font-size: 100%; vertical-align: baseline;}
  1860. #id_wizard_palicannon_index_filelist p{
  1861. margin:0;
  1862. }
  1863. .pali_book_select .pali_book_item{
  1864. padding: 0.3em 0.6em;
  1865. line-height: 1.4em;
  1866. border-radius: 2px;
  1867. -webkit-transition-duration: 0.2s;
  1868. transition-duration: 0.2s;
  1869. cursor: pointer;
  1870. display: -webkit-box;
  1871. display: -moz-box;
  1872. display: box;
  1873. word-break: keep-all;
  1874. overflow:hidden;
  1875. white-space: nowrap;
  1876. }
  1877. .pali_book_select .pali_book_item:hover{
  1878. background-color: var(--tool-link-hover-color);
  1879. color: var(--btn-hover-color);
  1880. }
  1881. .pali_book_select{
  1882. overflow-x:hidden;
  1883. /*border-left: 1px solid var(--border-line-color);*/
  1884. max-width: 100%;
  1885. float:left;
  1886. }
  1887. .word_edit {
  1888. width: auto;
  1889. font-size: 80%;
  1890. padding: 2px 4px;
  1891. margin-bottom: 10px;
  1892. background-color: #e2f9e3;
  1893. box-shadow: 2px 2px 8px 0px var(--shadow-color);
  1894. }
  1895. .word_edit .word_edit_head {
  1896. border-bottom: 1px solid var(--border-line-color);
  1897. margin-bottom: 0.1em;
  1898. padding-bottom: 3px;
  1899. font-weight: 400;
  1900. color: var(--main-color);
  1901. }
  1902. .word_edit input[type="input"]{
  1903. width: inherit;
  1904. }
  1905. //2018-7-21 add by visuddhinanda
  1906. .res_item .tool_bar td{
  1907. border-right: 1px solid var(--tool-line-color);
  1908. }
  1909. .res_item{
  1910. border: 1px solid var(--tool-line-color);
  1911. border-radius: 5px;
  1912. width: 302px;
  1913. margin:6px 0;
  1914. transition: all 0.4s ease;
  1915. }
  1916. .res_item .tool_bar .res_button{
  1917. margin:0;
  1918. padding:0;
  1919. cursor: pointer;
  1920. }
  1921. .res_item .tool_bar .res_type{
  1922. margin:0;
  1923. padding:0;
  1924. display:none;
  1925. }
  1926. .res_info{
  1927. border-left: 1px solid #555;
  1928. }
  1929. .res_info:hover {
  1930. border-left: 1px solid #585;
  1931. cursor: pointer;
  1932. }
  1933. .res_info_1{
  1934. color: var(--tool-color);
  1935. padding:2px 4px;
  1936. }
  1937. .res_info_2{
  1938. font-size:80%;
  1939. padding:1px 4px;
  1940. }
  1941. .res_info_1 .book_name{
  1942. font-weight:700;
  1943. }
  1944. #wizard_div_mybook,
  1945. #wizard_div_palicannon{
  1946. margin-top: 3.5em;
  1947. justify-content: center;
  1948. width: 80em;
  1949. }
  1950. #pc_res_loader{
  1951. /*display:none;*/
  1952. }
  1953. .res_load_progress_canvas{
  1954. background-color:#995;
  1955. }
  1956. .load_progress_canvas{
  1957. background-color:#995;
  1958. }
  1959. #loading_bar{
  1960. top:3.5em;
  1961. left: 0;
  1962. width:100%;
  1963. stroke-dasharray: 255%;
  1964. stroke-dashoffset: 255%;
  1965. stroke: #4688F1;
  1966. fill: none;
  1967. position:fixed;
  1968. }
  1969. @keyframes opacityGo{
  1970. 0% {opacity:1;}
  1971. 100% {opacity: 0;}
  1972. }
  1973. #circleProcess {
  1974. width: 3em;
  1975. height: 3em;
  1976. stroke-dasharray: 255%;
  1977. stroke-dashoffset: 255%;
  1978. stroke: var(--btn-color);
  1979. fill: none;
  1980. -webkit-transform: rotate(-90deg);
  1981. -moz-transform: rotate(-90deg);
  1982. -ms-transform: rotate(-90deg);
  1983. -o-transform: rotate(-90deg);
  1984. transform: rotate(-90deg);
  1985. display:none;
  1986. position:absolute;
  1987. stroke-width:0.2em
  1988. }
  1989. #load_progress_num
  1990. {display: none;
  1991. }
  1992. #id_wizard_palicannon_index_filelist .case_dropdown {
  1993. display:inline-block;
  1994. background-color:#AAA;
  1995. }
  1996. #load_progress_div{
  1997. margin-right:8px;
  1998. width:3em;
  1999. height:3em;
  2000. display:none;
  2001. -webkit-align-items: center;
  2002. -moz-align-items: center;
  2003. -webkit-justify-content: center;
  2004. -moz-justify-content: center;
  2005. justify-content: center;
  2006. }
  2007. .ctrl{
  2008. display:none;
  2009. }
  2010. .pali_book_select_div{
  2011. overflow: hidden;
  2012. display: inline-flex;
  2013. flex-wrap: nowrap;
  2014. justify-content: center;
  2015. align-items: center;
  2016. width: 100%;
  2017. height: 10em;
  2018. }
  2019. #wizard_palicannon_par_select_toc{
  2020. flex:3;
  2021. padding: 0 10px;
  2022. /*border-right: 1px solid var(--border-line-color);*/
  2023. will-change: min-height;
  2024. overflow-x:hidden;
  2025. }
  2026. .wizard_palicannon_par_select_toc_inner{
  2027. position: relative;
  2028. transform: translate(0, 0);
  2029. transform: translate3d(0, 0, 0);
  2030. will-change: position, transform;
  2031. }
  2032. .wizard_par_tools{
  2033. font-size:85%;
  2034. border-top: 1px solid var(--border-line-color);
  2035. }
  2036. .wizard_par_tools_title{
  2037. }
  2038. .pali_book_select .selected{
  2039. background-color: var(--link-color);
  2040. color: var(--btn-hover-color);
  2041. word-break: keep-all;
  2042. text-overflow: ellipsis;
  2043. overflow:hidden;
  2044. }
  2045. #id_wizard_palicannon_index_book{
  2046. font-weight: 700;
  2047. color: var(--tool-color);
  2048. }
  2049. .par_tools_show_ctl{
  2050. cursor: pointer;
  2051. }
  2052. .wizard_par_tools_body{
  2053. display:none;
  2054. }
  2055. .wizard_par_div p{
  2056. margin-top:0.2em;
  2057. margin-bottom:1.2em;
  2058. }
  2059. /*VRI CSS*/
  2060. .wizard_par_div .note {color: blue}
  2061. .wizard_par_div .bld {font-weight: bold; }
  2062. .wizard_par_div .paranum {font-weight: bold; }
  2063. .wizard_par_div .hit {background-color: blue; color: white; }
  2064. .wizard_par_div .context {background-color: green; color: white; }
  2065. .wizard_par_div p {
  2066. border-top: 0in; border-bottom: 0in;
  2067. padding-top: 0in; padding-bottom: 0in;
  2068. margin-top: 0in; margin-bottom: 0.5cm;
  2069. }
  2070. .wizard_par_div .indent { font-size: 12pt; text-indent: 2em; margin-left: 3em;}
  2071. .wizard_par_div .bodytext { font-size: 12pt; text-indent: 2em;}
  2072. .wizard_par_div .hangnum { font-size: 12pt; text-indent: 2em;}
  2073. /* Namo tassa, and nitthita -- no unique structural distinction */
  2074. .wizard_par_div .centered { font-size: 12pt; text-align:center;}
  2075. .wizard_par_div .unindented { font-size: 12pt;}
  2076. .wizard_par_div .book { font-size: 21pt; text-align:center; font-weight: bold;}
  2077. .wizard_par_div .chapter { font-size: 18pt; text-align:center; font-weight: bold;}
  2078. .wizard_par_div .nikaya { font-size: 24pt; text-align:center; font-weight: bold;}
  2079. .wizard_par_div .title { font-size: 12pt; text-align:center; font-weight: bold;}
  2080. .wizard_par_div .subhead { font-size: 12pt; text-align:center; font-weight: bold;}
  2081. .wizard_par_div .subsubhead { font-size: 12pt; text-align:center; font-weight: bold;}
  2082. /* Gatha line 1 */
  2083. .wizard_par_div .gatha1 { font-size: 12pt; margin-bottom: 0em; margin-left: 4em;}
  2084. /* Gatha line 2 */
  2085. .wizard_par_div .gatha2 { font-size: 12pt; margin-bottom: 0em; margin-left: 4em;}
  2086. /* Gatha line 3 */
  2087. .wizard_par_div .gatha3 { font-size: 12pt; margin-bottom: 0em; margin-left: 4em;}
  2088. /* Gatha last line */
  2089. .wizard_par_div .gathalast { font-size: 12pt; margin-bottom: 0.5cm; margin-left: 4em;}
  2090. /*VRI CSS End*/
  2091. #right_tool_bar {
  2092. color: var(--btn-color);
  2093. position: fixed;
  2094. height: calc(100% - 3.5em);
  2095. top: 3.5em;
  2096. left: 100%;
  2097. width: 25em;
  2098. background-color: var(--tool-bg-color);
  2099. box-shadow: 0px -4px 10px 0px var(--shadow-color);
  2100. z-index: 20;
  2101. -webkit-transition-duration: 0.4s;
  2102. transition-duration: 0.4s;
  2103. -webkit-contain:strict;
  2104. contain:strict;
  2105. z-index: 51;
  2106. }
  2107. #right_tool_bar_inner {
  2108. padding:10px;
  2109. height: calc(100% - 3px);
  2110. width: 100%;
  2111. overflow-y: auto;
  2112. }
  2113. .tooltip {
  2114. position: relative;
  2115. display: inline;
  2116. zcursor: help;
  2117. }
  2118. .tooltip .tooltiptext {
  2119. visibility: hidden;
  2120. position: absolute;
  2121. width: 100px;
  2122. background-color: #555;
  2123. color: #fff;
  2124. text-align: center;
  2125. padding: 5px 0;
  2126. border-radius: 6px;
  2127. z-index: 1;
  2128. opacity: 0;
  2129. transition: opacity .6s;
  2130. }
  2131. .tooltip:hover{
  2132. color:red;
  2133. }
  2134. .tooltip:hover .tooltiptext {
  2135. visibility: visible;
  2136. opacity: 1;
  2137. }
  2138. .tooltip-bottom {
  2139. top: 100%;
  2140. left: 50%;
  2141. margin-left: -60px;
  2142. }
  2143. .tooltip-bottom::after {
  2144. content: "";
  2145. position: absolute;
  2146. bottom: 100%;
  2147. left: 50%;
  2148. margin-left: -5px;
  2149. border-width: 5px;
  2150. border-style: solid;
  2151. border-color: transparent transparent #555 transparent;
  2152. }
  2153. .tooltip_menu {
  2154. position: relative;
  2155. display: inline;
  2156. zcursor: help;
  2157. }
  2158. .tooltip_menu .tooltiptext {
  2159. visibility: hidden;
  2160. position: absolute;
  2161. min-width: 80px;
  2162. background-color: #555;
  2163. color: #fff;
  2164. text-align: center;
  2165. padding:2px;
  2166. border-radius: 6px;
  2167. z-index: 1;
  2168. opacity: 0;
  2169. transition: opacity .6s;
  2170. }
  2171. .tooltip_menu a {
  2172. padding:3px 5px;
  2173. margin:0;
  2174. }
  2175. .tooltip_menu a:hover {
  2176. background-color: #fff;
  2177. color: #555;
  2178. }
  2179. .tooltip_menu:hover{
  2180. color:red;
  2181. }
  2182. .tooltip_menu:hover .tooltiptext {
  2183. visibility: visible;
  2184. opacity: 1;
  2185. }
  2186. .tooltip_menu-bottom {
  2187. top: 100%;
  2188. left: 50%;
  2189. margin-left: -60px;
  2190. }
  2191. .tooltip_menu-bottom::after {
  2192. content: "";
  2193. position: absolute;
  2194. bottom: 100%;
  2195. left: 50%;
  2196. margin-left: -5px;
  2197. border-width: 5px;
  2198. border-style: solid;
  2199. border-color: transparent transparent #555 transparent;
  2200. }
  2201. #wizard_palicannon_par_select_text_head{
  2202. padding: 20px 30px;
  2203. border-radius: 8px;
  2204. /*border: 1px solid var(--border-line-color);*/
  2205. display:none;
  2206. background-color: var(--tool-bg-color);
  2207. margin: 20px 40px 40px 40px;
  2208. box-shadow: 2px 2px 10px 2px var(--shadow-color);
  2209. }
  2210. .wizard_palicannon_par_select_text_head_inner{
  2211. width:100%;
  2212. display: inline-flex;
  2213. padding: 16px;
  2214. border-top: 1px solid var(--tool-line-color);
  2215. }
  2216. #wizard_palicannon_par_select_text_head_bookname{
  2217. padding: 1em;
  2218. font-size: 160%
  2219. }
  2220. .chapter_info{
  2221. width: 20em;
  2222. margin-right:auto;
  2223. float: left;
  2224. }
  2225. .resouse_info{
  2226. width: 20em;
  2227. float: left;
  2228. }
  2229. #palicannon_par_res_list {
  2230. color: var(--main-color);
  2231. width: auto;
  2232. max-width: 30em;
  2233. background-color: var(--bg-color);
  2234. margin: 0;
  2235. padding: 4px 10px;
  2236. position: absolute;
  2237. border-radius: 2px;
  2238. box-shadow: 0px 4px 8px 0px var(--shadow-color);
  2239. display: none;
  2240. z-index: 10;
  2241. transition: opacity .6s;
  2242. }
  2243. #palicannon_par_res_list_shell{
  2244. display: none;
  2245. }
  2246. .pc_nav_button_show_res_win{
  2247. margin:2px 5px;
  2248. padding:2px;
  2249. }
  2250. .icon_btn{
  2251. color:var(--btn-color);
  2252. padding: 0.3em 0.3em;
  2253. border: 1px solid var(--nocolor);
  2254. border-radius: 3px;
  2255. margin: 0 2px;
  2256. }
  2257. .icon_btn:hover{
  2258. background-color: var(--btn-hover-bg-color);
  2259. border: 1px solid var(--btn-border-line-color);
  2260. }
  2261. .importbtn{
  2262. width: 28em;
  2263. height: 28em;
  2264. border-radius: 8px;
  2265. text-align: left;
  2266. justify-content:flex-start;
  2267. vertical-align: bottom;
  2268. align-items: flex-end;
  2269. flex-wrap:wrap;
  2270. padding: 3em;
  2271. background-color: #7D7D7D;
  2272. color: var(--btn-hover-color);
  2273. background:
  2274. }
  2275. .importbtn h1,
  2276. .importbtnp p{
  2277. flex:100%;
  2278. text-align: left;
  2279. justify-content:flex-start;
  2280. vertical-align: bottom;
  2281. align-items: flex-end;
  2282. }
  2283. .editor_wizard_caption{
  2284. flex:100%;
  2285. text-align: left;
  2286. }
  2287. .editor_wizard_nav{
  2288. position: absolute;
  2289. right: 45px;
  2290. }
  2291. .palicannon_nav_item{
  2292. width: 10em;
  2293. text-overflow: ellipsis;
  2294. overflow: hidden;
  2295. white-space: nowrap;
  2296. }
  2297. #id_debug_output p{
  2298. margin:1px;
  2299. padding:1px;
  2300. font-size:10pt;
  2301. }
  2302. .palicannon_nav_level_0{
  2303. padding-left:7.5em;
  2304. display:none;
  2305. }
  2306. .palicannon_nav_level_1{
  2307. }
  2308. .palicannon_nav_level_1 {
  2309. font-weight: 700;
  2310. padding-left:0;
  2311. }
  2312. .palicannon_nav_level_2 {
  2313. }
  2314. .palicannon_nav_level_2 {
  2315. padding-left:1em;
  2316. }
  2317. .palicannon_nav_level_3{
  2318. }
  2319. .palicannon_nav_level_3 {
  2320. padding-left:2em;
  2321. }
  2322. .palicannon_nav_level_4{
  2323. }
  2324. .palicannon_nav_level_4 {
  2325. padding-left:3em;
  2326. }
  2327. .palicannon_nav_level_5 {
  2328. }
  2329. .palicannon_nav_level_5 {
  2330. padding-left:4em;
  2331. }
  2332. .palicannon_nav_level_6{
  2333. }
  2334. .palicannon_nav_level_6 {
  2335. padding-left:5em;
  2336. }
  2337. .palicannon_nav_level_7{
  2338. }
  2339. .palicannon_nav_level_7 {
  2340. padding-left:6em;
  2341. }
  2342. .palicannon_nav_level_8{
  2343. }
  2344. .palicannon_nav_level_8 {
  2345. padding-left:7em;
  2346. }
  2347. .tree_expand_0 {
  2348. cursor: pointer;
  2349. margin:0 3px;
  2350. }
  2351. .tree_expand_1 {
  2352. cursor: pointer;
  2353. margin:0 3px;
  2354. }
  2355. .tree_expand_2 {
  2356. cursor: pointer;
  2357. margin:0 3px;
  2358. }
  2359. .tree_expand_3{
  2360. cursor: pointer;
  2361. margin:0 3px;
  2362. }
  2363. .tree_expand_4{
  2364. cursor: pointer;
  2365. margin:0 3px;
  2366. }
  2367. .tree_expand_5{
  2368. cursor: pointer;
  2369. margin:0 3px;
  2370. }
  2371. .tree_expand_6{
  2372. cursor: pointer;
  2373. margin:0 3px;
  2374. }
  2375. .tree_expand_7{
  2376. cursor: pointer;
  2377. margin:0 3px;
  2378. }
  2379. .tree_expand_8{
  2380. cursor: pointer;
  2381. margin:0 3px;
  2382. }
  2383. .tree_collapse_0{
  2384. cursor: pointer;
  2385. margin:0 3px;
  2386. display:none;
  2387. }
  2388. .tree_collapse_1{
  2389. cursor: pointer;
  2390. margin:0 3px;
  2391. display:none;
  2392. }
  2393. .tree_collapse_2 {
  2394. cursor: pointer;
  2395. margin:0 3px;
  2396. display:none;
  2397. }
  2398. .tree_collapse_3{
  2399. cursor: pointer;
  2400. margin:0 3px;
  2401. display:none;
  2402. }
  2403. .tree_collapse_4{
  2404. cursor: pointer;
  2405. margin:0 3px;
  2406. display:none;
  2407. }
  2408. .tree_collapse_5{
  2409. cursor: pointer;
  2410. margin:0 3px;
  2411. display:none;
  2412. }
  2413. .tree_collapse_6{
  2414. cursor: pointer;
  2415. margin:0 3px;
  2416. display:none;
  2417. }
  2418. .tree_collapse_7{
  2419. cursor: pointer;
  2420. margin:0 3px;
  2421. display:none;
  2422. }
  2423. .tree_collapse_8{
  2424. cursor: pointer;
  2425. margin:0 3px;
  2426. display:none;
  2427. }
  2428. .foot_div{
  2429. text-align:center;
  2430. color: #b5b5b5;
  2431. }
  2432. #search_div{
  2433. font-size: 120%;
  2434. padding: 30px 0;
  2435. text-align:center;
  2436. padding-right: 1.5em;
  2437. }
  2438. .mybook_l{
  2439. flex: 5;
  2440. margin-right: 20px;
  2441. }
  2442. .mybook_r{
  2443. padding: 20px;
  2444. flex: 5;
  2445. border-radius: 8px;
  2446. background-color: var(--tool-bg-color);
  2447. box-shadow: 2px 2px 10px 2px var(--shadow-color);
  2448. }
  2449. .mybook_r .common-tab{
  2450. padding:0 20px;
  2451. margin: 0;
  2452. margin-top: 20px;
  2453. background-color: var(--tool-bg-color);
  2454. border-bottom: 1px solid var(--tool-line-color);
  2455. }
  2456. .mybook_r .common-tab_li{
  2457. padding:0.4em 0.6em;
  2458. margin: 0;
  2459. margin-bottom: -1px;
  2460. background-color: var(--tool-bg-color);
  2461. border-bottom: 1px solid var(--tool-line-color);
  2462. }
  2463. .mybook_r .common-tab_li_act{
  2464. padding:0.4em 0.6em;
  2465. margin-bottom: -1px;
  2466. background-color: var(--tool-bg-color);
  2467. border: 1px solid var(--tool-line-color);
  2468. border-bottom: 1px solid var(--tool-bg-color);
  2469. }
  2470. #wizard_sutta_preview{
  2471. color: var(--main-color);
  2472. height: 100%;
  2473. background-color: var(--bg-color);
  2474. padding: 2em;
  2475. box-shadow: 2px 2px 8px 0px var(--shadow-color);
  2476. }
  2477. .right_tool_btn{
  2478. position: fixed;
  2479. right: 50px;
  2480. top:5em;
  2481. background-color: unset;
  2482. }
  2483. .right_tool_btn button{
  2484. background-color: var(--link-color);
  2485. border-color: var(--link-color);
  2486. color: var(--btn-color);
  2487. height: 3em;
  2488. width: 3em;
  2489. padding: 0;
  2490. }
  2491. .right_tool_btn button:hover{
  2492. background-color: var(--link-hover-color);
  2493. border-color: var(--link-color);
  2494. color: var(--btn-hover-color);
  2495. height: 3em;
  2496. width: 3em;
  2497. padding: 0;
  2498. }
  2499. .right_tool_btn .icon{
  2500. height: 2em;
  2501. width: 2em;
  2502. }
  2503. /*Word Map*/
  2504. .wm_word_block{
  2505. /*width:100%;*/
  2506. }
  2507. .wm_word_block table{
  2508. width:auto;
  2509. font-size:100%;
  2510. }
  2511. .wm_word_block td{
  2512. width:auto;
  2513. font-size:100%;
  2514. }
  2515. .wm_word_block_root_shell{
  2516. width:auto;
  2517. display: inline-block;
  2518. padding:10px;
  2519. }
  2520. .wm_word_block_root{
  2521. width:auto;
  2522. border: 2px solid #98b304;
  2523. padding: 5px;
  2524. border-radius: 8px;
  2525. display: inline-block;
  2526. }
  2527. .wm_word_block_root .toolbar{
  2528. font-size:80%;
  2529. border-bottom: 1px solid #bbbbbb;
  2530. display:flex;
  2531. justify-content: space-between;
  2532. margin-bottom: 8px;
  2533. }
  2534. .word_new{
  2535. border: 2px solid #828282;
  2536. }
  2537. .wm_word_block_root_h{
  2538. margin: 0 1em;
  2539. }
  2540. .wm_word_block_root_v{
  2541. }
  2542. .wordmap_line_shell{
  2543. height: 5em;
  2544. width: 2em;
  2545. }
  2546. .wordmap_line{
  2547. width:100%;
  2548. stroke: #4688F1;
  2549. fill: none;
  2550. }
  2551. .wm_line{
  2552. height:2em;
  2553. }
  2554. .wm_child_div{
  2555. display:inline-flex;
  2556. }
  2557. .wm_div{
  2558. width:100%;
  2559. height:100%
  2560. }
  2561. #wm_title{
  2562. height:3em;
  2563. display:flex;
  2564. padding:5px;
  2565. justify-content: space-between;
  2566. border-bottom: 1px solid var(--tool-line-color);
  2567. }
  2568. #wm_body{
  2569. display: flex;
  2570. position: relative;
  2571. height: calc(100% - 3em);
  2572. height: -moz-calc(100% - 3em);
  2573. height: -webkit-calc(100% - 3em);
  2574. width:100%;
  2575. overflow-y:scroll;
  2576. overflow-x:scroll;
  2577. }
  2578. #wm_body_inner{
  2579. }
  2580. .wm_root_div{
  2581. text-align: center;
  2582. }
  2583. .wm_one_mean{
  2584. margin:2px 5px;
  2585. outline: 1px dotted;
  2586. }
  2587. .wm_one_mean:hover{
  2588. cursor: pointer;
  2589. outline: 1px solid;
  2590. }
  2591. .wm_dictname{
  2592. background-color:#999999;
  2593. }
  2594. .wm_dictname:hover{
  2595. cursor: pointer;
  2596. background-color:#bbbbbb;
  2597. }
  2598. .wm_word_block_root .type{
  2599. font-family: Times, Arial, Verdana;
  2600. font-style: italic;
  2601. font-weight: 400;
  2602. font-size: 95%;
  2603. }
  2604. /*End of Word-Map*/
  2605. /**/
  2606. .pop_win_full{
  2607. /*margin-top: 3.5em;*/
  2608. position: fixed;
  2609. left: 0;
  2610. top: 0;
  2611. opacity: 1;
  2612. width: 100%;
  2613. height: 100%;
  2614. background-color: rgba(0, 0, 0, 0.8);
  2615. display: none;
  2616. -webkit-align-items: center;
  2617. -moz-align-items: center;
  2618. -webkit-justify-content: center;
  2619. -moz-justify-content: center;
  2620. justify-content: center;
  2621. z-index: 21;
  2622. }
  2623. .pop_win_full #pop_win_inner {
  2624. /*background-color: var(--tool-bg-color);*/
  2625. color: var(--tool-color);
  2626. border-radius: 4px;
  2627. height: 95% ;
  2628. width: 100% ;
  2629. margin: 1em;
  2630. display: -webkit-flex;
  2631. display: -moz-flex;
  2632. display: flex;
  2633. }
  2634. .un_parent{
  2635. display:block;
  2636. width:3em;
  2637. overflow: auto;
  2638. }
  2639. .comp_parent{
  2640. display:block;
  2641. }
  2642. /*new*/
  2643. .radio-button {
  2644. text-align: center;
  2645. width: auto;
  2646. height: 90%;
  2647. display: -webkit-flex;
  2648. display: -moz-flex;
  2649. display: inline;
  2650. margin: 3px 10px;
  2651. align-items: flex-end;
  2652. color: var(--main-color);
  2653. font-weight: 500;
  2654. }
  2655. .radio-button li {
  2656. color: var(--btn-color);
  2657. margin: 0;
  2658. padding: 4px 5px;
  2659. display: inline;
  2660. cursor: pointer;
  2661. border: 1px solid var(--nocolor);
  2662. }
  2663. .radio-button .li_act {
  2664. color:var(--tool-color);
  2665. margin: 0;
  2666. padding: 4px 5px;
  2667. display: inline;
  2668. cursor: pointer;
  2669. background-color: var(--btn-hover-bg-color);
  2670. border: 1px solid var(--tool-line-color);
  2671. border-radius: 4px;
  2672. }
  2673. .radio-button li:hover {
  2674. background-color: var(--btn-hover-bg-color);
  2675. border: 1px solid var(--tool-line-color);
  2676. border-radius: 4px;
  2677. }
  2678. .dict_word_list{
  2679. }
  2680. .dict_word{
  2681. display: block;
  2682. border: 1px solid var(--tool-line-color);
  2683. border-radius: 5px;
  2684. margin: 6px 0;
  2685. padding: 5px;
  2686. transition: all 0.4s ease;
  2687. }
  2688. .dict_word .word{
  2689. display:block;
  2690. }
  2691. .dict_word .dict{
  2692. font-size: 80%;
  2693. color:#a4f5df;
  2694. /*border-bottom: 1px solid var(--tool-line-color);*/
  2695. }
  2696. .dict_word .mean{
  2697. font-size:90%;
  2698. margin: 2px 0;
  2699. line-height: 130%;
  2700. font-weight: 300;
  2701. display: inline-block;
  2702. }
  2703. .dict_word hl{
  2704. background-color:#ffff7a;
  2705. color: black;
  2706. font-weight: 400;
  2707. }
  2708. #dict_ref_search_input_head{
  2709. display:flex;
  2710. justify-content: space-between;
  2711. }
  2712. #dict_ref_search_input_head .case_dropdown{
  2713. min-width: 0;
  2714. }
  2715. #dict_ref_search_input_head .button_icon {
  2716. height: 1.2em;
  2717. width: 1.2em;
  2718. fill: var(--btn-color);
  2719. }
  2720. #code_list{
  2721. background-color:#545454;
  2722. }
  2723. #input_parts a{
  2724. margin:2pt 5pt;
  2725. text-decoration: underline;
  2726. }
  2727. .file_list_shell{
  2728. border-bottom: 1px solid var(--tool-line-color);
  2729. }