term.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929
  1. .term_link:hover .guide_contence {
  2. display: inline-block;
  3. }
  4. .term_meaning {
  5. font-weight: 700;
  6. }
  7. .term_author {
  8. font-size: 80%;
  9. color: gray;
  10. }
  11. .term_tag {
  12. font-size: 80%;
  13. font-weight: 500;
  14. margin: 0 8px;
  15. }
  16. .term_link {
  17. cursor: pointer;
  18. position: relative;
  19. }
  20. .term_link,
  21. .term_link_new {
  22. color: blue;
  23. padding-left: 2px;
  24. padding-right: 2px;
  25. }
  26. .term_link_new {
  27. color: red;
  28. }
  29. .tran {
  30. line-height: 1.5em;
  31. }
  32. .tran ul {
  33. list-style-type: circle;
  34. margin-left: 2em;
  35. }
  36. .tran li {
  37. list-style: inherit;
  38. }
  39. .tran ol {
  40. list-style-type: decimal;
  41. margin: 0;
  42. padding: 0;
  43. margin-left: 2em;
  44. }
  45. .tran:lang(en) > ol {
  46. list-style-type: decimal;
  47. }
  48. /*中文*/
  49. .tran:lang(zh) > ol {
  50. list-style-type: cjk-ideographic;
  51. margin-left: 2.5em;
  52. }
  53. /*简体中文*/
  54. .tran:lang(zh-cn) > ol {
  55. list-style-type: trad-chinese-formal;
  56. margin-left: 2.5em;
  57. }
  58. .tran:lang(zh-hans) > ol {
  59. list-style-type: trad-chinese-formal;
  60. margin-left: 2.5em;
  61. }
  62. /*繁体中文*/
  63. .tran:lang(zh-tw) > ol {
  64. list-style-type: trad-chinese-formal;
  65. margin-left: 2.5em;
  66. }
  67. .tran:lang(zh-hant) > ol {
  68. list-style-type: trad-chinese-formal;
  69. margin-left: 2.5em;
  70. }
  71. /*japanese*/
  72. .tran:lang(jp) > ol {
  73. list-style-type: hiragana;
  74. margin-left: 2.5em;
  75. }
  76. /*kora*/
  77. .tran:lang(ko) > ol {
  78. list-style-type: korean-hangul-formal;
  79. margin-left: 2.5em;
  80. }
  81. /*thai*/
  82. .tran:lang(ti) > ol {
  83. list-style-type: thai;
  84. margin-left: 2em;
  85. }
  86. /*myanmar*/
  87. .tran:lang(my) > ol {
  88. list-style-type: myanmar;
  89. margin-left: 2em;
  90. }
  91. /*myanmar*/
  92. .tran:lang(my) {
  93. font-size: 120%;
  94. line-height: 2em;
  95. }
  96. .tran_div {
  97. margin-bottom: 1em;
  98. padding-bottom: 1em;
  99. padding-top: 0.5em;
  100. border-bottom: 1px solid var(--border-line-color);
  101. }
  102. .tran_div:last-child {
  103. border-bottom: none;
  104. }
  105. .ref .tooltiptext {
  106. background-color: seashell;
  107. }
  108. .ref .tooltip .tooltiptext {
  109. left: calc(100% - 65vw);
  110. right: 0;
  111. box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 10px;
  112. white-space: normal;
  113. max-width: 80vw;
  114. }
  115. .ref .tooltip .tooltip-bottom::after {
  116. left: 90%;
  117. border-color: transparent transparent seashell transparent;
  118. }
  119. .ref .tooltip-bottom {
  120. top: 100%;
  121. left: unset;
  122. margin-left: unset;
  123. }
  124. note:hover chapter {
  125. display: inline;
  126. /*position: absolute;*/
  127. }
  128. .ref > .book_name > chapter:first-child {
  129. display: inline;
  130. }
  131. chapter {
  132. display: none;
  133. color: var(--box-bg-color1);
  134. text-decoration: none;
  135. cursor: pointer;
  136. }
  137. .path chapter {
  138. display: unset;
  139. }
  140. chapter::after {
  141. content: " > ";
  142. }
  143. chapter:hover {
  144. color: var(--link-color);
  145. /*text-decoration: underline;*/
  146. }
  147. .tooltiptext chapter {
  148. display: inline;
  149. }
  150. para {
  151. background-color: var(--drop-bg-color);
  152. padding: 0 4px;
  153. text-decoration: none;
  154. cursor: pointer;
  155. color: var(--btn-border-color);
  156. border-radius: 5px;
  157. display: none;
  158. }
  159. .tooltiptext para {
  160. display: inline;
  161. }
  162. .path para {
  163. display: unset;
  164. }
  165. para:hover {
  166. text-decoration: underline;
  167. }
  168. #contents_div .sent_no_read_mode {
  169. display: none;
  170. }
  171. commentary,
  172. com,
  173. nt,
  174. blockquote {
  175. margin: 0;
  176. margin-left: 1.5em;
  177. display: block;
  178. border-left: 3px solid gray;
  179. padding-left: 5px;
  180. }
  181. note > .tran {
  182. color: #5c5c5c;
  183. padding-left: 1em;
  184. padding: 0;
  185. position: relative;
  186. margin-top: -0.5em;
  187. line-height: 1.8em;
  188. }
  189. note > .tran > .text {
  190. margin-bottom: 1em;
  191. }
  192. .tran_text_tool_botton {
  193. border-radius: 50%;
  194. border: 2px solid var(--btn-bg-color);
  195. width: fit-content;
  196. padding: 2px;
  197. height: fit-content;
  198. margin-left: -1em;
  199. margin-right: 1em;
  200. background-color: var(--nocolor);
  201. visibility: hidden;
  202. }
  203. .tran_text_tool_botton > .icon_expand {
  204. width: 0.8em;
  205. height: 0.8em;
  206. min-width: 0.8em;
  207. min-height: 0.8em;
  208. }
  209. note > .tran .tran_text_tool_bar,
  210. .tran_text_tool_bar {
  211. padding: 0.5em 1em;
  212. position: absolute;
  213. display: none;
  214. color: var(--border-line-color);
  215. z-index: 40;
  216. width: auto;
  217. font-size: 14px;
  218. height: auto;
  219. line-height: 28px;
  220. background-color: var(--box-bg-color1);
  221. border-radius: 5px;
  222. }
  223. note > .tran:lang(my) .tran_text_tool_bar {
  224. margin-top: -2.5em;
  225. }
  226. note > .tran .tran_text_tool_bar::after,
  227. .tran .tran_text_tool_bar::after {
  228. content: " ";
  229. position: absolute;
  230. left: 1.4em;
  231. bottom: 100%;
  232. border-width: 5px;
  233. border-style: solid;
  234. border-color: transparent transparent var(--box-bg-color1) transparent;
  235. }
  236. .tran:hover > .tran_text_tool_botton {
  237. visibility: visible;
  238. }
  239. .tran_text_tool_bar li {
  240. list-style: none;
  241. display: flex;
  242. white-space: nowrap !important;
  243. }
  244. .tran_text_tool_bar .icon {
  245. margin: auto 0.4em auto 0;
  246. }
  247. .tip_buttom {
  248. padding: 0 0.2em;
  249. margin: 0 0.2em;
  250. cursor: pointer;
  251. background-color: inherit;
  252. border-radius: 5px;
  253. }
  254. .tip_buttom:hover {
  255. background-color: var(--btn-border-color);
  256. }
  257. .tran:hover .edit_button {
  258. display: inline-block;
  259. }
  260. .edit_button {
  261. display: inline-block;
  262. width: auto;
  263. min-width: 24px;
  264. height: auto;
  265. min-height: 24px;
  266. cursor: pointer;
  267. fill: var(--tool-color);
  268. background: url(edit.svg);
  269. background-repeat: no-repeat;
  270. background-size: contain;
  271. color: var(--tool-color);
  272. margin-top: -2em;
  273. }
  274. note > .palitext,
  275. .palitext {
  276. font-family: Noto serif;
  277. line-height: 1.5em;
  278. color: #9f3a01;
  279. font-weight: 500;
  280. margin: 4px;
  281. }
  282. note n {
  283. display: inline;
  284. color: blue;
  285. }
  286. .term_word_head_pali {
  287. text-transform: capitalize;
  288. font-size: 200%;
  289. margin-top: 0.5em;
  290. }
  291. .term_word_head {
  292. border-bottom: 1px solid #cecece;
  293. padding: 5px 0;
  294. }
  295. .term_block {
  296. border-bottom: 1px solid #cecece;
  297. padding: 5px 0;
  298. }
  299. .term_word_head_authors a {
  300. color: blue;
  301. margin: 0 3px;
  302. }
  303. .term_word_head_authors a:hover {
  304. text-decoration: underline;
  305. cursor: pointer;
  306. }
  307. note .ref {
  308. font-size: 75%;
  309. white-space: nowrap;
  310. max-width: 45%;
  311. text-align: right;
  312. /*position: absolute;
  313. right: 1em;*/
  314. }
  315. note:hover .ref {
  316. /*border-top: solid 1px var(--border-line-color);*/
  317. }
  318. .progress_bar_done {
  319. stroke-width: 0;
  320. fill: royalblue;
  321. }
  322. .progress_bar_undone {
  323. stroke-width: 0;
  324. fill: #c0c0c052;
  325. }
  326. .progress_bar_bg {
  327. stroke-width: 0;
  328. fill: #ffffff;
  329. }
  330. .progress_bar_percent {
  331. stroke-width: 0;
  332. fill: limegreen;
  333. }
  334. r {
  335. text-align: right;
  336. display: block;
  337. }
  338. note {
  339. padding: 0.5em 0 0 0;
  340. margin-bottom: 0.4em;
  341. border-radius: 5px;
  342. line-height: 1.3em;
  343. display: block;
  344. background-color: #80808014;
  345. position: relative;
  346. }
  347. note > .bottm_tool_button {
  348. border-radius: 5px;
  349. border: 4px dotted var(--border-line-color);
  350. display: none;
  351. transition: all 0.3s ease;
  352. }
  353. note:hover > .bottm_tool_button {
  354. display: block;
  355. }
  356. .add_new {
  357. display: inline-block;
  358. position: absolute;
  359. min-width: 1.4vw;
  360. display: none;
  361. }
  362. note:hover .add_new {
  363. display: inline-block;
  364. position: absolute;
  365. }
  366. .icon_add {
  367. width: 1.5vw;
  368. min-width: 1.4vw;
  369. height: 1.5vw;
  370. cursor: pointer;
  371. background: url(add.svg);
  372. background-repeat: no-repeat;
  373. background-size: contain;
  374. left: 0;
  375. bottom: 1em;
  376. }
  377. .tool_bar > .more_tran {
  378. display: inline-block;
  379. margin-right: 5px;
  380. transform: rotate(-90deg);
  381. transition: all 0.2s ease;
  382. }
  383. .icon_expand {
  384. width: auto;
  385. min-width: 14px;
  386. height: auto;
  387. min-height: 14px;
  388. cursor: pointer;
  389. background: url(expand.svg);
  390. background-repeat: no-repeat;
  391. background-size: contain;
  392. }
  393. .icon_fold {
  394. width: auto;
  395. min-width: 14px;
  396. height: auto;
  397. min-height: 14px;
  398. cursor: pointer;
  399. background: url(fold.svg);
  400. background-repeat: no-repeat;
  401. background-size: contain;
  402. }
  403. .other_tran_div {
  404. min-height: 1em;
  405. border-top: 1px solid var(--border-line-color);
  406. }
  407. .other_tran_div > .tool_bar {
  408. background-color: var(--btn-bg-color);
  409. padding: 0 6px;
  410. border-radius: 0 0 4px 4px;
  411. cursor: pointer;
  412. justify-content: space-between;
  413. line-height: 1.5em;
  414. }
  415. .other_tran_div > .tool_bar > .tool_left {
  416. white-space: nowrap;
  417. }
  418. .other_tran_div > .tool_bar > .tool_right {
  419. white-space: pre-wrap;
  420. margin-left: auto;
  421. }
  422. .other_tran_div > .other_tran {
  423. min-height: 1em;
  424. transition: all 0.2s ease;
  425. display: none;
  426. }
  427. .tool_bar {
  428. display: flex;
  429. }
  430. .bg_color_1 {
  431. background-color: #ebebeb66;
  432. }
  433. .bg_color_2 {
  434. background: linear-gradient(to left, #6afdb033, #ebebeb66);
  435. }
  436. .bg_color_3 {
  437. background: linear-gradient(to left, #6a95fd26, #ebebeb66);
  438. }
  439. .bg_color_4 {
  440. background: linear-gradient(to left, #f9e7911c, #ebebeb66);
  441. }
  442. .bg_color_5 {
  443. background: linear-gradient(to left, #fe99b91c, #ebebeb66);
  444. }
  445. pre {
  446. white-space: pre-line;
  447. font-family: auto;
  448. border-left: 3px solid var(--border-shadow);
  449. margin-left: 1em;
  450. padding-left: 0.5em;
  451. }
  452. .note_tool_bar {
  453. position: relative;
  454. display: none;
  455. z-index: 50;
  456. margin-right: 1em;
  457. }
  458. note:hover .note_tool_bar {
  459. display: block;
  460. }
  461. .sent_menu {
  462. right: 0;
  463. }
  464. .para_menu {
  465. left: 0;
  466. }
  467. .ui-widget input,
  468. .ui-widget select,
  469. .ui-widget textarea,
  470. .ui-widget button {
  471. font-family: unset;
  472. font-size: 1.1em;
  473. }
  474. .tran p {
  475. margin: 0;
  476. }
  477. .note_tool_context {
  478. position: absolute;
  479. right: -1vw;
  480. width: 1.5em;
  481. text-align: right;
  482. margin-top: -0.3em;
  483. }
  484. .note_tool_context .icon {
  485. fill: var(--link-color);
  486. }
  487. .note_tool_context:hover .icon {
  488. fill: (--link-hover-color);
  489. }
  490. .channel_select {
  491. display: none;
  492. }
  493. #channal_list .selected {
  494. background: linear-gradient(to right, #6afdb033, #ebebeb66);
  495. padding: 5px;
  496. border-radius: 5px;
  497. }
  498. #channal_list .noselect {
  499. background-color: unset;
  500. padding: 5px;
  501. border-radius: 5px;
  502. }
  503. .other_tran_num,
  504. .similar_sent_num {
  505. -webkit-border-radius: 7px;
  506. border-radius: 7px;
  507. background-color: cornflowerblue;
  508. position: relative;
  509. min-width: 14px;
  510. height: 14px;
  511. display: inline-flex;
  512. justify-content: center;
  513. text-align: center;
  514. line-height: 14px;
  515. display: none;
  516. margin: auto 2px;
  517. color: whitesmoke;
  518. padding: 0 3px;
  519. }
  520. .similar_sent_num {
  521. display: inline-flex;
  522. }
  523. .separate_line {
  524. border: solid 1px #e8e8e8;
  525. border-radius: 3px;
  526. margin: 1px 5px;
  527. width: 1px;
  528. background: #c6c6c6;
  529. text-decoration: none;
  530. }
  531. pw {
  532. padding-right: 0.5em;
  533. }
  534. .slider_show_shell {
  535. position: fixed;
  536. z-index: 1000;
  537. top: 0;
  538. left: 0;
  539. width: 100%;
  540. height: 85%;
  541. background-color: #000000f5;
  542. font-size: 180%;
  543. padding-top: 2em;
  544. }
  545. .slider_show_shell .bg_color_1 {
  546. background-color: unset;
  547. }
  548. /*编辑框*/
  549. .sent_tran {
  550. padding: 5px;
  551. margin-bottom: 2px;
  552. }
  553. .sent_tran_inner {
  554. display: flex;
  555. }
  556. .sent_tran:hover {
  557. background-color: rgba(0.5, 0.5, 0.5, 0.02);
  558. }
  559. .left_bar {
  560. flex: 1;
  561. display: flex;
  562. margin-right: 5px;
  563. }
  564. .sent_tran .left_bar > .face {
  565. display: block;
  566. margin: 0 0.5em auto auto;
  567. }
  568. .compact .left_bar > .face {
  569. display: none;
  570. }
  571. .left_bar > .date {
  572. display: none;
  573. }
  574. .compact .left_bar > .date {
  575. display: block;
  576. font-size: 80%;
  577. color: var(--main-color1);
  578. }
  579. .sent_tran_inner > .body {
  580. width: 100%;
  581. display: block;
  582. flex: 20;
  583. }
  584. .preview {
  585. font-size: 110%;
  586. }
  587. .compact .body > .head_bar {
  588. display: flex;
  589. }
  590. .compact .body > .head_bar > .date {
  591. display: none;
  592. }
  593. .head_bar > .info {
  594. display: none;
  595. }
  596. .head_bar > .info > .name {
  597. font-weight: 700;
  598. white-space: nowrap;
  599. margin-right: 0.5em;
  600. }
  601. .head_bar > .info > .date {
  602. font-size: 0.8em;
  603. color: gray;
  604. }
  605. .compact .head_bar > .info {
  606. display: block;
  607. }
  608. .compact .head_bar > .info > .date {
  609. display: none;
  610. }
  611. .foot_bar .info {
  612. color: var(--btn-border-line-color);
  613. }
  614. .tool_bar > .right {
  615. position: absolute;
  616. right: 2em;
  617. margin-top: calc(-1.8em - 8px);
  618. display: none;
  619. width: auto;
  620. background-color: var(--bg-color);
  621. border: 1px solid var(--border-line-color);
  622. border-radius: 6px;
  623. padding: 3px;
  624. /*margin-right: 20px;*/
  625. }
  626. .sent_tran_inner:hover .tool_bar > .right {
  627. display: block;
  628. }
  629. .body > .edit {
  630. display: none;
  631. }
  632. .body > .edit textarea {
  633. color: var(--main-color);
  634. width: 100%;
  635. background-color: var(--drop-bg-color);
  636. border: unset;
  637. border-radius: 8px;
  638. padding: 5px;
  639. line-height: 1.5em;
  640. height: 90px;
  641. font-size: 120%;
  642. }
  643. .foot_bar {
  644. font-size: 90%;
  645. }
  646. .foot_bar > .info {
  647. display: flex;
  648. }
  649. .foot_bar > .info span {
  650. margin-right: 4px;
  651. }
  652. .compact .foot_bar {
  653. display: none;
  654. }
  655. .edit_mode {
  656. background-color: #fafafa;
  657. }
  658. .edit_mode > .sent_tran_inner > .body > .head_bar > .preview {
  659. display: none;
  660. }
  661. .edit_mode > .sent_tran_inner > .body > .edit {
  662. display: block;
  663. }
  664. .pop_menu {
  665. display: flex;
  666. }
  667. .tag_list {
  668. display: flex;
  669. list-style-type: none;
  670. }
  671. .tag_list li {
  672. border-radius: 6px;
  673. margin-right: 5px;
  674. background-color: var(--bookx);
  675. padding: 2px 5px;
  676. cursor: pointer;
  677. }
  678. li.active {
  679. background-color: var(--booka);
  680. }
  681. .tag_list li:hover {
  682. background-color: var(--booka);
  683. }
  684. .sent_tran .preview p {
  685. line-height: normal;
  686. margin: 0;
  687. font-family: "Noto Sans", "Noto Sans", "Noto Sans SC", "Noto Sans TC", "Padauk", "ATaiThamKHNewV1-Normal", "Arial",
  688. "Verdana";
  689. }
  690. .pop_menu .icon {
  691. fill: var(--main-color);
  692. }
  693. .pr_content {
  694. margin-left: 3em;
  695. border-left: 3px solid var(--border-line-color);
  696. }
  697. .menu_space_between a {
  698. display: flex;
  699. justify-content: space-between;
  700. }
  701. .body > .head_bar > .loading {
  702. color: gray;
  703. }
  704. .tooltip {
  705. display: inline-flex;
  706. }
  707. .disable {
  708. cursor: not-allowed;
  709. }
  710. .channel_name {
  711. white-space: nowrap;
  712. }
  713. .channel_name:hover {
  714. background-color: var(--btn-border-color);
  715. }
  716. .channel_list {
  717. margin-right: 4px;
  718. }
  719. .pali_div {
  720. padding: 0 10px 5px 10px;
  721. }
  722. .case_dropdown {
  723. min-width: unset;
  724. }
  725. .channel_list > li:first-child {
  726. border-bottom: solid 1px;
  727. justify-content: center;
  728. font-weight: bold;
  729. }
  730. w {
  731. cursor: pointer;
  732. }
  733. w:hover {
  734. text-decoration: underline;
  735. }
  736. /*纵向*/
  737. .vertical .para_div {
  738. flex-direction: column;
  739. }
  740. .vertical .note_shell > note > .note_body {
  741. flex-direction: column;
  742. }
  743. .para_div {
  744. display: flex;
  745. }
  746. .note_shell > note > .note_body {
  747. display: flex;
  748. }
  749. /*段落模式 横向*/
  750. .horizontal .para_div {
  751. flex-direction: row;
  752. }
  753. .horizontal .palitext_div {
  754. flex: 5;
  755. }
  756. .horizontal .para_tran_div {
  757. flex: 5;
  758. }
  759. /*句子模式 横向*/
  760. .horizontal .note_shell > note > .note_body {
  761. flex-direction: row;
  762. }
  763. .horizontal .palitext_div {
  764. flex: 5;
  765. }
  766. .horizontal .sent_tran_div {
  767. flex: 5;
  768. }
  769. /*段落模式*/
  770. .para_mode .para_div {
  771. display: flex;
  772. }
  773. .para_mode .note_shell {
  774. display: none;
  775. }
  776. /*句子模式*/
  777. .sent_mode .para_div {
  778. display: none;
  779. }
  780. .sent_mode .note_shell {
  781. display: block;
  782. }
  783. .tran_sent p {
  784. display: inline;
  785. }
  786. .sent_tran li {
  787. line-height: normal;
  788. }
  789. .note_foot {
  790. display: flex;
  791. justify-content: space-between;
  792. }
  793. .term_pali {
  794. font-style: italic;
  795. }
  796. .note_body note {
  797. display: inline;
  798. }
  799. span.keybutton {
  800. background-color: gray;
  801. border-radius: 6px;
  802. font-size: 80%;
  803. padding: 0 3px;
  804. color: white;
  805. font-weight: 300;
  806. height: fit-content;
  807. }
  808. #contents_view .focus {
  809. border-radius: 20px;
  810. box-shadow: 0 5px 7px rgb(0 0 0 / 15%);
  811. margin: 10px 0;
  812. background-color: #f5deb36b;
  813. padding: 0.7rem;
  814. word-break: break-word;
  815. }
  816. span.tran_sent {
  817. display: block;
  818. }
  819. .icon_sent_status {
  820. display: none;
  821. width: 22px;
  822. height: 22px;
  823. background-repeat: no-repeat;
  824. background-size: contain;
  825. margin: 0 6px;
  826. }
  827. .icon_sent_status .icon {
  828. width: 22px;
  829. height: 22px;
  830. }
  831. .icon_sent_loading {
  832. background: url(loading.gif);
  833. background-size: contain;
  834. }
  835. .loading .icon_sent_loading {
  836. display: block;
  837. }
  838. .loading .face {
  839. display: none;
  840. }
  841. .error .left_bar > .face {
  842. display: none;
  843. }
  844. .icon_sent_error {
  845. display: none;
  846. fill: red;
  847. cursor: pointer;
  848. background: url(error.svg);
  849. background-size: contain;
  850. }
  851. .error .icon_sent_error {
  852. display: block;
  853. }
  854. .icon_spin {
  855. -webkit-animation: spin 1.5s linear infinite;
  856. animation: spin 1.5s linear infinite;
  857. }
  858. .read .bg_color_1 {
  859. background-color: unset;
  860. }
  861. .read .bg_color_2 {
  862. background: unset;
  863. }
  864. .read .bg_color_3 {
  865. background: unset;
  866. }
  867. .read .bg_color_4 {
  868. background: unset;
  869. }
  870. .read .bg_color_5 {
  871. background: unset;
  872. }
  873. .palitext n {
  874. color: dodgerblue;
  875. }