content-script.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876
  1. #jfContent {
  2. -webkit-user-select: text;
  3. margin: 0;
  4. }
  5. .xjf-btn {
  6. cursor: pointer;
  7. -webkit-border-radius: 2px;
  8. -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  9. -webkit-user-select: none;
  10. background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5);
  11. outline: none;
  12. border: 1px solid #aaa;
  13. color: #444;
  14. font-size: 12px;
  15. margin-bottom: 0px;
  16. min-width: 4em;
  17. position: relative;
  18. z-index: 10;
  19. display: inline-block;
  20. padding: 2px 10px;
  21. text-shadow: 1px 1px rgba(255, 255, 255, 0.3)
  22. }
  23. .xjf-btn-mid, .xjf-btn-right {
  24. margin-left: 0;
  25. border-top-left-radius: 0;
  26. border-bottom-left-radius: 0;
  27. }
  28. .xjf-btn-mid, .xjf-btn-left {
  29. margin-right: 0;
  30. border-top-right-radius: 0;
  31. border-bottom-right-radius: 0;
  32. border-right: none
  33. }
  34. .xjf-btn:hover {
  35. -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  36. background: #ebebeb -webkit-linear-gradient(#fefefe, #f8f8f8 40%, #e9e9e9);
  37. border-color: #999;
  38. color: #222
  39. }
  40. .xjf-btn:active {
  41. -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
  42. background: #ebebeb -webkit-linear-gradient(#f4f4f4, #efefef 40%, #dcdcdc);
  43. color: #333
  44. }
  45. .xjf-btn.selected {
  46. -webkit-box-shadow: inset 0px 1px 5px rgba(0, 0, 0, 0.2);
  47. background: #ebebeb -webkit-linear-gradient(#e4e4e4, #dfdfdf 40%, #dcdcdc);
  48. color: #333
  49. }
  50. #jsonpOpener, #jsonpCloser {
  51. padding: 4px 0 0 8px;
  52. color: black;
  53. margin-bottom: -6px
  54. }
  55. #jsonpCloser {
  56. margin-top: 0
  57. }
  58. #formattedJson {
  59. padding-left: 21px;
  60. padding-top: 6px
  61. }
  62. html.fh-jf pre {
  63. /* padding: 36px 5px 5px 5px */
  64. }
  65. #jfContent {
  66. margin-bottom: 25px;
  67. }
  68. /*================json format style start===================*/
  69. html.fh-jf .item {
  70. display: block;
  71. padding-left: 20px;
  72. margin-left: -20px;
  73. position: relative;
  74. padding-top:1px;
  75. padding-bottom: 1px;
  76. }
  77. html.fh-jf .item .kv-list {
  78. display: block;
  79. padding-left: 24px;
  80. border-left: 1px dashed #bbb;
  81. margin-left: 2px
  82. }
  83. html.fh-jf .item .string {
  84. word-wrap: break-word
  85. }
  86. html.fh-jf .item .string a {
  87. text-decoration: underline;
  88. }
  89. html.fh-jf .item .string a:hover {
  90. color: #b00;
  91. }
  92. html.fh-jf .item .brace {
  93. font-weight: bold;
  94. }
  95. html.fh-jf .item .expand {
  96. width: 20px;
  97. height: 18px;
  98. display: block;
  99. position: absolute;
  100. left: -2px;
  101. top: 4px;
  102. z-index: 5;
  103. opacity: 0.35;
  104. -webkit-user-select: none;
  105. cursor: pointer;
  106. }
  107. html.fh-jf .item .expand:after {
  108. content: "\25bc";
  109. }
  110. html.fh-jf .item .expand:hover {
  111. opacity: 0.35
  112. }
  113. html.fh-jf .item .expand:active {
  114. opacity: 0.5
  115. }
  116. html.fh-jf .item.collapsed {
  117. white-space: nowrap
  118. }
  119. html.fh-jf .item.collapsed > .kv-list {
  120. display: none
  121. }
  122. html.fh-jf .item.collapsed .item .expand {
  123. display: none
  124. }
  125. html.fh-jf .item.collapsed > .ellipsis:after {
  126. content: "\2026";
  127. font-weight: bold
  128. }
  129. html.fh-jf .item.collapsed > .ellipsis {
  130. margin: 0 4px;
  131. color: #888
  132. }
  133. html.fh-jf .item.collapsed .item {
  134. display: inline
  135. }
  136. html.fh-jf .item.collapsed > .expand {
  137. -webkit-transform: rotate(-90deg);
  138. top: -1px
  139. }
  140. html.fh-jf .remove-quote .quote {
  141. display: none;
  142. }
  143. /*================json format style end===================*/
  144. #formattedJson, #jsonpOpener, #jsonpCloser {
  145. color: #333;
  146. font: 14px/18px monospace;
  147. }
  148. #formattedJson {
  149. color: #444
  150. }
  151. #formattingMsg {
  152. position: absolute;
  153. top: calc(40vh);
  154. left: calc(45vw);
  155. z-index: 100;
  156. display: none;
  157. }
  158. #formattingMsg .x-loading {
  159. width: 12px;
  160. height: 12px;
  161. border: 1px solid #f00;
  162. border-radius: 50%;
  163. box-shadow: 0 0 10px 2px;
  164. color: #cc0000;
  165. border-right-color: transparent;
  166. border-top-color: transparent;
  167. animation: spin-right 1s linear infinite normal;
  168. animation-delay: 0s;
  169. margin: 0 5px 0 0;
  170. display: inline-block;
  171. }
  172. #formattingMsg .x-loading:before {
  173. display: block;
  174. width: 8px;
  175. height: 8px;
  176. margin: 1px;
  177. border: 2px solid #f00;
  178. content: " ";
  179. border-radius: 50%;
  180. border-left-color: transparent;
  181. border-bottom-color: transparent;
  182. }
  183. @keyframes spin-right {
  184. from {
  185. transform: rotate(0deg);
  186. opacity: 0.2;
  187. }
  188. 50% {
  189. transform: rotate(180deg);
  190. opacity: 1.0;
  191. }
  192. to {
  193. transform: rotate(360deg);
  194. opacity: 0.2;
  195. }
  196. }
  197. [hidden] {
  198. display: none !important
  199. }
  200. #jfContentspan {
  201. white-space: pre-wrap
  202. }
  203. @-webkit-keyframes spin {
  204. from {
  205. -webkit-transform: rotate(0deg)
  206. }
  207. to {
  208. -webkit-transform: rotate(360deg)
  209. }
  210. }
  211. #spinner {
  212. -webkit-animation: spin 1s 0 infinite
  213. }
  214. html.fh-jf * {
  215. -webkit-font-smoothing: antialiased
  216. }
  217. #jfContent .x-json-tips {
  218. color: red;
  219. }
  220. #jfContent_pre {
  221. padding: 0;
  222. margin: 0;
  223. word-break: break-all;
  224. }
  225. html.fh-jf {
  226. font-size: 14px;
  227. color: #333;
  228. direction: ltr;
  229. }
  230. html.fh-jf body {
  231. direction: inherit;
  232. margin: 0;
  233. }
  234. html..fh-jf body {
  235. padding: 0 8px;
  236. }
  237. /* 工具栏 */
  238. html.fh-jf .x-toolbar {
  239. background-color: #f5f5f5;
  240. background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5);
  241. margin: 10px 0;
  242. border: 1px solid #ddd;
  243. border-bottom-color: #ccc;
  244. border-radius: 4px;
  245. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  246. box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
  247. padding: 5px 15px;
  248. position: sticky;
  249. top: 0;
  250. z-index: 10000;
  251. font-size: 12px;
  252. user-select: none;
  253. }
  254. html.fh-jf .x-toolbar .x-sort input {
  255. margin-right: 10px;
  256. }
  257. html.fh-jf .x-toolbar span {
  258. white-space: normal !important;
  259. }
  260. html.fh-jf .x-toolbar .x-sort input#sort_desc {
  261. margin-right: 0;
  262. }
  263. html.fh-jf .x-toolbar .x-sort {
  264. display: inline;
  265. margin: 0;
  266. }
  267. html.fh-jf .x-toolbar .x-split {
  268. margin: 0 15px;
  269. color: #ccc;
  270. display: inline;
  271. }
  272. html.fh-jf .x-toolbar label {
  273. font-weight: normal;
  274. margin-bottom: 0;
  275. }
  276. html.fh-jf .x-toolbar img {
  277. vertical-align: middle;
  278. }
  279. html.fh-jf .x-toolbar .x-a-title {
  280. font-size: 14px;
  281. color: blue;
  282. text-decoration: none;
  283. font-weight: bold;
  284. }
  285. html.fh-jf .x-toolbar .x-b-title {
  286. font-size: 14px;
  287. font-weight: bold;
  288. }
  289. html.fh-jf .x-toolbar.t-collapse {
  290. position: fixed;
  291. left: 100%;
  292. margin-left: -24px;
  293. width: 10000px;
  294. top: -10px;
  295. }
  296. html.fh-jf .x-toolbar.t-collapse .fe-feedback {
  297. float: left;
  298. margin-left: -10px;
  299. margin-right: 20px;
  300. }
  301. html.fh-jf .x-toolbar.t-collapse .fe-feedback .x-settings{
  302. display: none;
  303. }
  304. html.fh-jf .mod-json .format-item button {
  305. width: 80px;
  306. height: 30px;
  307. float: right;
  308. }
  309. html.fh-jf .mod-contentscript {
  310. width: auto;
  311. }
  312. #optionBar {
  313. display: inline-block !important;
  314. position: static !important;
  315. }
  316. html.fh-jf body>#optionBar ,
  317. html.fh-jf body>#jfContent {
  318. display: none !important;
  319. }
  320. #formatTips {
  321. color: #888;
  322. font-size: 14px;
  323. display: block;
  324. position: absolute;
  325. top: 0px;
  326. left: 0px;
  327. }
  328. #jsonSource {
  329. height: 120px;
  330. }
  331. html.fh-jf .mod-json .callback-name {
  332. font-weight: bolder;
  333. color: #a00;
  334. }
  335. #errorMsg {
  336. margin-top: 10px;
  337. float: left;
  338. color: #f00;
  339. }
  340. #statusBar {
  341. position: fixed;
  342. bottom: 0;
  343. left: 0;
  344. right: 0;
  345. background: #f5f5f5;
  346. border-top:1px solid #f4f4f4;
  347. font-size: 12px;
  348. font-weight: bold;
  349. padding: 2px 10px 2px 2px;
  350. z-index: 10
  351. }
  352. html.fh-jf .hide-status-bar #statusBar {
  353. width:0;
  354. height:0;
  355. opacity: 0;
  356. }
  357. #jsonPath {
  358. cursor: default;
  359. }
  360. html.fh-jf .boxOpt {
  361. position: absolute;
  362. right: 0;
  363. top:-1px;
  364. background: -webkit-linear-gradient(#fafafa,#f4f4f4 40%,#e5e5e5);
  365. color: #888;
  366. border:1px solid #ddd;
  367. user-select: none;
  368. font-weight: normal;
  369. z-index: 1000;
  370. }
  371. html.fh-jf .boxOpt a {
  372. cursor: pointer;
  373. margin: 0 5px;
  374. font-size: 12px;
  375. color: #666;
  376. text-decoration: none;
  377. }
  378. html.fh-jf .boxOpt a:hover {
  379. color:#000;
  380. text-decoration: none;
  381. }
  382. html.fh-jf .fe-feedback {
  383. font-size: 12px;
  384. padding-top: 3px;
  385. color: #888;
  386. float: right;
  387. cursor: pointer;
  388. font-weight: bold;
  389. }
  390. .fe-feedback a {
  391. color: #888;
  392. text-decoration: none;
  393. text-align: left;
  394. margin-right: 5px;
  395. }
  396. .fe-feedback a:hover {
  397. color: #c00;
  398. }
  399. html.fh-jf svg:not(:root) {
  400. overflow: hidden;
  401. }
  402. .fe-feedback svg {
  403. vertical-align: text-bottom;
  404. display: inline-block;
  405. fill: currentColor;
  406. }
  407. .fe-feedback img {
  408. opacity: 0.6;
  409. position: relative;
  410. top: 1px;
  411. }
  412. .fe-feedback a:focus {
  413. outline: none;
  414. }
  415. .fe-feedback a:hover img {
  416. opacity: 1.0;
  417. }
  418. .fe-feedback .x-settings {
  419. cursor: pointer;
  420. margin-right: 10px;
  421. }
  422. .fe-feedback .x-settings:hover {
  423. color: #c00;
  424. }
  425. #fehelper_alertmsg {
  426. font-family: "monospace", "微软雅黑";
  427. }
  428. #aLinkDownload {
  429. position: absolute;
  430. top:-10000px;
  431. left:-10000px;
  432. }
  433. /*设置面板*/
  434. .mod-setting-panel {
  435. position: absolute;
  436. top: 32px;
  437. right: 0;
  438. z-index:10000;
  439. width:300px;
  440. background:#f1f1f1;
  441. padding:0 20px 20px;
  442. border:1px solid #ddd;
  443. border-radius: 4px;
  444. font-size:12px;
  445. color:#454545;
  446. box-shadow: 2px 2px #f9f9f9;
  447. }
  448. .mod-setting-panel h4 {
  449. border-bottom: 1px solid #ccc;
  450. padding-bottom: 4px;
  451. margin:20px 0 10px;
  452. }
  453. .mod-setting-panel input[name="maxlength"] {
  454. width:50px;
  455. background: #fff;
  456. border: 1px solid #eee;
  457. }
  458. .mod-setting-panel ul {
  459. margin:0;
  460. padding:0 10px;
  461. }
  462. .mod-setting-panel li {
  463. padding:2px 0;
  464. list-style: none;
  465. }
  466. .mod-setting-panel li:hover {
  467. color:#600;
  468. }
  469. .mod-setting-panel ol {
  470. padding:0 0 0 10px;
  471. }
  472. .mod-setting-panel .btns {
  473. margin-top:20px;
  474. }
  475. .mod-setting-panel input[name="reset"] {
  476. margin-left:20px;
  477. }
  478. .mod-setting-panel form {
  479. margin:0;
  480. padding:0;
  481. }
  482. .t-collapse .mod-setting-panel {
  483. position: fixed;
  484. right: 8px;
  485. }
  486. /*================ 皮肤:theme-default ===================*/
  487. html.fh-jf body.theme-default {
  488. background-color: #fff;
  489. }
  490. .theme-default .item .key {
  491. color: #000;
  492. }
  493. .theme-default .item .kv-list {
  494. border-left: 1px dashed #bbb;
  495. }
  496. .theme-default .item .string {
  497. color: #0B7500;
  498. }
  499. .theme-default .item .string a {
  500. color: #00b;
  501. text-decoration: underline;
  502. }
  503. .theme-default .item .string a:hover {
  504. color: #b00;
  505. }
  506. .theme-default .item .bool,
  507. .theme-default .item .null,
  508. .theme-default .item .number {
  509. font-weight: bold;
  510. color: #ff6b00
  511. }
  512. .theme-default .item .number {
  513. color:#1A01CC;
  514. }
  515. .theme-default .item .item-object:hover > span,
  516. .theme-default .item .item-array:hover > span,
  517. .theme-default .item .item-block:hover > span{
  518. font-weight: bold;
  519. color: #f00;
  520. }
  521. .theme-default .item .item-line:hover,
  522. .theme-default .item-line.x-selected{
  523. background: #f9f9f9;
  524. }
  525. .theme-default .item .item-line:hover span ,
  526. .theme-default .item.x-selected>span {
  527. font-weight: bolder;
  528. background: #ff5;
  529. }
  530. /*================ 皮肤:theme-simple ===================*/
  531. .theme-simple .rootItem {
  532. white-space: pre !important;
  533. color: #000;
  534. }
  535. /*================ 皮肤:theme-light ===================*/
  536. .theme-light .item .key {
  537. color: #4d4d4c;
  538. }
  539. .theme-light .item .kv-list {
  540. border-left: 1px dashed #f1f1f1;
  541. }
  542. .theme-light .item .string {
  543. color: #718c00;
  544. }
  545. .theme-light .item .string a {
  546. color: #00b;
  547. text-decoration: underline;
  548. }
  549. .theme-light .item .string a:hover {
  550. color: #b00;
  551. }
  552. .theme-light .item .brace {
  553. font-weight: normal;
  554. }
  555. .theme-light .item .bool,
  556. .theme-light .item .null,
  557. .theme-light .item .number {
  558. font-weight: bold;
  559. color: #f5871f
  560. }
  561. .theme-light .item .number {
  562. color:#ff7c00;
  563. }
  564. .theme-light .item .item-object:hover > span,
  565. .theme-light .item .item-array:hover > span,
  566. .theme-light .item .item-block:hover > span{
  567. }
  568. .theme-light .item .item-line:hover,
  569. .theme-light .item-line.x-selected {
  570. background: #f7f3f3;
  571. }
  572. .theme-light .item .item-line:hover span ,
  573. .theme-light .item.x-selected>span {
  574. font-weight: bolder;
  575. background: #f7f3f3;
  576. }
  577. .theme-light .item .quote {
  578. color:#ccc;
  579. }
  580. /*================ 皮肤:theme-dark ===================*/
  581. .theme-dark {
  582. background:#000;
  583. }
  584. .theme-dark .x-toolbar {
  585. background: -webkit-linear-gradient(#222,#222,#111);
  586. border: 1px solid #333;
  587. border-bottom-color: #363636;
  588. color:#ddd;
  589. }
  590. .theme-dark .x-toolbar .x-a-title {
  591. color:#48b;
  592. }
  593. .theme-dark .xjf-btn {
  594. background:-webkit-linear-gradient(#222,#222,#111);
  595. border:1px solid #444;
  596. color:#ddd;
  597. }
  598. .theme-dark .xjf-btn:hover {
  599. background:-webkit-linear-gradient(#333,#333,#222);
  600. }
  601. .theme-dark #statusBar {
  602. background: #333;
  603. color: #ddd;
  604. border-top: 1px solid #555;
  605. }
  606. .theme-dark .boxOpt {
  607. background: -webkit-linear-gradient(#222,#222,#111);
  608. border: 1px solid #333;
  609. }
  610. .theme-dark .boxOpt a:hover {
  611. color:#eee;
  612. }
  613. .theme-dark .mod-setting-panel {
  614. background: #222;
  615. color: #fff;
  616. border-color: #444;
  617. box-shadow: 1px 1px #111;
  618. }
  619. .theme-dark .mod-setting-panel li:hover {
  620. color:#ff0;
  621. }
  622. .theme-dark .mod-setting-panel input[name="maxlength"] {
  623. background: #000;
  624. border: 1px solid #555;
  625. color: #fff;
  626. }
  627. .theme-dark .item .key {
  628. color: #fff;
  629. }
  630. .theme-dark .item .kv-list {
  631. border-left: 1px dashed #222;
  632. }
  633. .theme-dark .item .string {
  634. color: #0f0;
  635. }
  636. .theme-dark .item .string a {
  637. color: #369ad6;
  638. text-decoration: underline;
  639. }
  640. .theme-dark .item .string a:hover {
  641. color: #b00;
  642. }
  643. .theme-dark .item .brace,
  644. .theme-dark .item .colon,
  645. .theme-dark .item .comma{
  646. color:#eaeaea;
  647. }
  648. .theme-dark .item .bool,
  649. .theme-dark .item .null,
  650. .theme-dark .item .number {
  651. font-weight: bold;
  652. color: #f00
  653. }
  654. .theme-dark .item .item-object:hover > span,
  655. .theme-dark .item .item-array:hover > span,
  656. .theme-dark .item .item-block:hover > span{
  657. font-weight: bold;
  658. color: orange;
  659. }
  660. .theme-dark .item .item-line:hover,
  661. .theme-dark .item-line.x-selected {
  662. background: #111;
  663. }
  664. .theme-dark .item .item-line:hover span ,
  665. .theme-dark .item.x-selected>span {
  666. font-weight: bolder;
  667. background: #444;
  668. }
  669. .theme-dark .item .quote {
  670. color:#eaeaea;
  671. }
  672. .theme-dark .item .expand {
  673. color:#fff;
  674. }
  675. /*================ 皮肤:theme-vscode ===================*/
  676. .theme-vscode .item .key {
  677. color: #f00;
  678. }
  679. .theme-vscode .item .quote {
  680. color:#eaa;
  681. }
  682. .theme-vscode .item .kv-list {
  683. border-left: 1px dashed #f1f1f1;
  684. }
  685. .theme-vscode .item .string {
  686. color: #a31515;
  687. }
  688. .theme-vscode .item .string a {
  689. color: #00b;
  690. text-decoration: underline;
  691. }
  692. .theme-vscode .item .string a:hover {
  693. color: #b00;
  694. }
  695. .theme-vscode .item .brace {
  696. font-weight: normal;
  697. }
  698. .theme-vscode .item .bool,
  699. .theme-vscode .item .null,
  700. .theme-vscode .item .number {
  701. font-weight: bold;
  702. color: #a31515
  703. }
  704. .theme-vscode .item .number {
  705. color: blue;
  706. }
  707. .theme-vscode .item .item-line:hover,
  708. .theme-vscode .item-line.x-selected {
  709. background: #f7f3f3;
  710. }
  711. .theme-vscode .item .item-line:hover span ,
  712. .theme-vscode .item.x-selected>span {
  713. font-weight: bolder;
  714. background: #f7f3f3;
  715. }
  716. /*================ 皮肤:theme-github ===================*/
  717. .theme-github {
  718. background: #f8f8f8;
  719. }
  720. .theme-github .item .key {
  721. color: #333;
  722. }
  723. .theme-github .item .quote {
  724. color:#aaa;
  725. }
  726. .theme-github .item .kv-list {
  727. border-left: 1px dashed #e8e8e8;
  728. }
  729. .theme-github .item .string {
  730. color: #d14;
  731. }
  732. .theme-github .item .string a {
  733. color: #00b;
  734. text-decoration: underline;
  735. }
  736. .theme-github .item .string a:hover {
  737. color: #b00;
  738. }
  739. .theme-github .item .brace {
  740. font-weight: normal;
  741. }
  742. .theme-github .item .bool,
  743. .theme-github .item .null,
  744. .theme-github .item .number {
  745. font-weight: bold;
  746. color: #008080
  747. }
  748. .theme-github .item .number {
  749. color: blue;
  750. }
  751. .theme-github .item .item-line:hover,
  752. .theme-github .item-line.x-selected {
  753. background: #f7f3f3;
  754. }
  755. .theme-github .item .item-line:hover span ,
  756. .theme-github .item.x-selected>span {
  757. font-weight: bolder;
  758. background: #f7f3f3;
  759. }
  760. /*================ 皮肤:theme-vegetarian ===================*/
  761. .theme-vegetarian .item-line.x-selected {
  762. background: #f9f9f9;
  763. }