style.css 38 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534
  1. /* 通用样式 */
  2. html,
  3. body,
  4. div,
  5. dl,
  6. dt,
  7. dd,
  8. ul,
  9. ol,
  10. li,
  11. h1,
  12. h2,
  13. h3,
  14. h4,
  15. h5,
  16. h6,
  17. pre,
  18. form,
  19. fieldset,
  20. input,
  21. p,
  22. blockquote,
  23. th,
  24. td {
  25. padding: 0;
  26. margin: 0;
  27. }
  28. html {
  29. width: 100%;
  30. height: 100%;
  31. }
  32. body {
  33. font-size: 13px;
  34. font-family: Verdana, Arial, Microsoft YaHei, sans-serif;
  35. }
  36. button,
  37. [type=button],
  38. [type=reset],
  39. [type=submit] {
  40. -webkit-appearance: button;
  41. }
  42. button,
  43. select {
  44. text-transform: none;
  45. }
  46. ul {
  47. list-style: none;
  48. padding: 0;
  49. margin: 0;
  50. }
  51. ul li {
  52. margin: 0;
  53. padding: 0;
  54. }
  55. li {
  56. display: list-item;
  57. text-align: -webkit-match-parent;
  58. }
  59. body,
  60. .container {
  61. width: 100%;
  62. height: 100%;
  63. background-image: url("../../../../public/image/index/bigBackground.jpg");
  64. background-color: transparent;
  65. background-position: center center;
  66. background-repeat: no-repeat;
  67. background-size: cover;
  68. }
  69. body,
  70. .normal-font,
  71. .sds-window-v5 .ext-el-mask-msg .x-loading-message-inner,
  72. .sds-window-v5.x-window-dlg,
  73. .sds-window-v5.x-window-dlg input,
  74. .sds-window-v5.x-window-dlg textarea {
  75. color: #414b55;
  76. }
  77. .container {
  78. width: 100%;
  79. height: 100%;
  80. }
  81. /* 头部 */
  82. .taskbar-wrapper {
  83. position: absolute;
  84. z-index: 5;
  85. opacity: 1;
  86. top: 0px;
  87. width: 100%;
  88. height: 39px;
  89. display: flex;
  90. flex-direction: row;
  91. }
  92. .taskbar-wrapper .taskbar-left-wrapper {
  93. background-color: rgba(50, 60, 70, 0.9);
  94. box-shadow: 0px 1px 2px rgba(10, 20, 30, 0.5);
  95. border: 1px solid rgba(255, 255, 255, 0.1);
  96. border-top-width: 0px;
  97. height: 38px;
  98. margin: 0 6px 0px 160px;
  99. border-radius: 0px 0px 3px 3px;
  100. flex: 0 0 auto;
  101. }
  102. .show-all-button {
  103. cursor: pointer;
  104. top: 0;
  105. float: left;
  106. display: block;
  107. width: 17px;
  108. height: 36px;
  109. position: relative;
  110. border: 1px solid transparent;
  111. border-radius: 0px 0px 0px 2px;
  112. background-color: transparent;
  113. padding: 0;
  114. border: none;
  115. }
  116. .show-all-button::after {
  117. content: '';
  118. position: absolute;
  119. top: -1px;
  120. right: -1px;
  121. bottom: -1px;
  122. border-right: 1px solid rgba(255, 255, 255, 0.25);
  123. }
  124. .show-all-button::before {
  125. cursor: pointer;
  126. content: ' ';
  127. display: block;
  128. width: 16px;
  129. top: -1px;
  130. bottom: -1px;
  131. left: -18px;
  132. position: absolute;
  133. }
  134. .start-button {
  135. height: 39px;
  136. width: 77px;
  137. display: flex;
  138. align-items: center;
  139. justify-content: center;
  140. cursor: pointer;
  141. }
  142. .start-button .start-button-img {
  143. background-image: url(../../../../public/image/index/menu.png);
  144. background-size: 24px 72px;
  145. width: 24px;
  146. height: 24px;
  147. cursor: pointer;
  148. background-color: transparent;
  149. padding: 0;
  150. border: none;
  151. }
  152. .start-button .start-button-img:hover {
  153. background-position: 0 -24px;
  154. }
  155. .start-button .start-button-img:active,
  156. .start-button .start-button-img.pressed {
  157. background-position: 0 -48px;
  158. }
  159. .sds-notify-badge-num {
  160. width: 10px;
  161. height: 10px;
  162. overflow: hidden;
  163. cursor: pointer;
  164. display: inline-block;
  165. position: absolute;
  166. pointer-events: none;
  167. box-shadow: 0 1px 4px 0 rgba(46, 48, 50, 0.6);
  168. border-radius: 5px;
  169. display: none;
  170. }
  171. .taskbar-buttons-container {
  172. min-width: 150px;
  173. height: 39px;
  174. padding-right: 8px;
  175. flex: 1 1 auto;
  176. display: flex;
  177. flex-direction: row;
  178. white-space: nowrap;
  179. overflow: hidden;
  180. }
  181. .taskbar-buttons-container .taskbar-buttons-wrapper {
  182. background-color: rgba(50, 60, 70, 0.9);
  183. box-shadow: 0px 1px 2px rgba(10, 20, 30, 0.5);
  184. border: 1px solid rgba(255, 255, 255, 0.1);
  185. border-top-width: 0px;
  186. height: 39px;
  187. background-color: rgba(50, 60, 70, 0.9);
  188. display: inline-flex;
  189. vertical-align: top;
  190. width: auto;
  191. border-radius: 0 0 5px 5px;
  192. }
  193. .tray-container {
  194. background-color: rgba(50, 60, 70, 0.9);
  195. box-shadow: 0px 1px 2px rgba(10, 20, 30, 0.5);
  196. border: 1px solid rgba(255, 255, 255, 0.1);
  197. border-top-width: 0px;
  198. height: 39px;
  199. border-radius: 0 0 3px 3px;
  200. box-sizing: border-box;
  201. display: flex;
  202. flex: 0 0 auto;
  203. padding: 0 8px 0 8px;
  204. margin-right: 12px;
  205. }
  206. .tray-container .system-tray-wrapper {
  207. display: flex;
  208. flex: 0 0 auto;
  209. }
  210. .tray-item {
  211. position: relative;
  212. cursor: pointer;
  213. background-repeat: no-repeat;
  214. background-position: 0 0;
  215. background-color: transparent;
  216. padding: 0;
  217. border: none;
  218. }
  219. .tray-item.system {
  220. width: 24px;
  221. height: 24px;
  222. margin: 7px 8px 0px 8px;
  223. }
  224. .tray-item.system:hover {
  225. background-position: 0 -24px;
  226. }
  227. .tray-item.system:active,
  228. .tray-item.system.pressed {
  229. background-position: 0 -48px;
  230. }
  231. .tray-container .notify-button {
  232. background-image: url(../../../../public/image/index/message.png);
  233. background-size: 24px 72px;
  234. }
  235. .tray-container .user-button {
  236. background-image: url(../../../../public/image/index/user.png);
  237. background-size: 24px 72px;
  238. }
  239. .tray-container .widget-button {
  240. background-image: url(../../../../public/image/index/widget.png);
  241. background-size: 24px 72px;
  242. }
  243. .tray-container .search-button {
  244. background-image: url(../../../../public/image/index/search.png);
  245. background-size: 24px 72px;
  246. }
  247. /* 桌面 */
  248. #sds-desktop {
  249. opacity: 1;
  250. overflow: hidden;
  251. position: absolute;
  252. width: 100%;
  253. height: 100%;
  254. border: 0 none;
  255. overflow: hidden;
  256. cursor: default;
  257. zoom: 1;
  258. top: 0;
  259. }
  260. .menu.sds-desktop{
  261. position: absolute;
  262. width: 120px;
  263. height: 100%;
  264. }
  265. .menu.sds-desktop ul{
  266. width: 100px;
  267. text-align: center;
  268. }
  269. .menu.sds-desktop ul li{
  270. background-color: rgba(50,60,70,0.9);
  271. padding: 10px 25px;
  272. box-sizing: border-box;
  273. }
  274. .menu.sds-desktop ul li div{
  275. background-position: center;
  276. background-repeat: no-repeat;
  277. background-size: 24px 24px;
  278. width: 50px;
  279. height: 50px;
  280. }
  281. ul.sds-desktop-shortcut {
  282. position: absolute;
  283. float: left;
  284. top: 41px;
  285. left: 120px;
  286. width: 100%;
  287. height: calc(100% - 41px);
  288. padding: 10px 10px 10px 4px;
  289. box-sizing: border-box;
  290. }
  291. .sds-desktop-layout {
  292. width: 100%;
  293. height: 100%;
  294. display: flex;
  295. flex-direction: column;
  296. flex-wrap: wrap;
  297. justify-content: left;
  298. align-content: flex-start;
  299. }
  300. .launch-icon {
  301. width: 132px;
  302. height: 104px;
  303. float: left;
  304. overflow: visible;
  305. cursor: pointer;
  306. list-style-type: none;
  307. }
  308. .launch-icon .image {
  309. width: 64px;
  310. height: 64px;
  311. background-size: 64px 64px;
  312. position: relative;
  313. background-position: center center;
  314. background-repeat: no-repeat;
  315. margin: 0 auto 4px auto;
  316. }
  317. .launch-icon .sds-application-notify-badge-num {
  318. width: 14px;
  319. height: 14px;
  320. bottom: -1px;
  321. right: -2px;
  322. z-index: 0;
  323. }
  324. .sds-application-notify-badge-num {
  325. display: inline-block;
  326. background: #FF3737;
  327. box-shadow: 0 1px 4px 0 rgba(46, 48, 50, 0.6);
  328. border-radius: 100px;
  329. min-width: 12px;
  330. min-height: 12px;
  331. overflow: hidden;
  332. z-index: 3;
  333. pointer-events: none;
  334. box-sizing: border-box;
  335. right: -4px;
  336. bottom: -2px;
  337. position: absolute;
  338. }
  339. .launch-icon.icon-item .text {
  340. height: 36px;
  341. overflow: hidden;
  342. }
  343. .launch-icon .text,
  344. .launch-icon .text a {
  345. text-shadow: 0em 0.1em 0.2em rgba(0, 0, 0, 0.8);
  346. width: 100%;
  347. font-size: 12px;
  348. line-height: 18px;
  349. text-align: center;
  350. margin: 0 auto;
  351. overflow: visible;
  352. text-overflow: ellipsis;
  353. color: #fff;
  354. }
  355. .x-window {
  356. zoom: 1;
  357. }
  358. .x-window-proxy {
  359. border: 0px solid;
  360. z-index: 12000;
  361. overflow: hidden;
  362. position: absolute;
  363. left: 0;
  364. top: 0;
  365. display: none;
  366. opacity: .5;
  367. -moz-opacity: .5;
  368. filter: alpha(opacity=50);
  369. }
  370. .sds-window-v5 {
  371. box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.6);
  372. border-radius: 3px;
  373. overflow: hidden;
  374. }
  375. .ext-webkit .x-dlg-focus {
  376. width: 1px;
  377. height: 1px;
  378. }
  379. .sds-window-v5 .x-tool-close {
  380. background-image: url("../../../../public/image/index/windowClose.png");
  381. background-position: 0 0;
  382. }
  383. .sds-window-v5 .x-tool {
  384. width: 24px;
  385. height: 24px;
  386. margin-left: 8px;
  387. }
  388. .sds-window-v5 .x-tool-restore {
  389. background-image: url("../../../../public/image/index/windowRestore.png");
  390. background-position: 0 0;
  391. }
  392. .x-tool-restore {
  393. background-position: 0 -45px;
  394. }
  395. .sds-window-v5 .x-tool-maximize {
  396. background-image: url("../../../../public/image/index/windowMaximize.png");
  397. background-position: 0 0;
  398. }
  399. .x-tool-maximize {
  400. background-position: 0 -30px;
  401. }
  402. /* 右侧固定栏 */
  403. .v-widget-header .v-widget-header-tool-icon.add {
  404. background-image: url(../../../../public/image/index/windowAdd.png);
  405. background-size: 24px 72px;
  406. }
  407. .v-widget-header .v-widget-header-tool-icon.minimize {
  408. background-image: url(../../../../public/image/index/windowReduce.png);
  409. background-size: 24px 72px;
  410. }
  411. .v-widget-header .v-widget-header-tool-icon.pin {
  412. background-image: url(../../../../public/image/index/windowFixed.png);
  413. background-size: 24px 72px;
  414. }
  415. .v-widget-header .v-widget-header-tool-icon.dock {
  416. background-image: url(../../../../public/image/index/windowPosition.png);
  417. background-size: 24px 72px;
  418. }
  419. .v-widget-header .v-widget-header-tool-icon {
  420. cursor: pointer;
  421. height: 24px;
  422. width: 24px;
  423. background-position: 0 0;
  424. }
  425. .v-widget-header .v-widget-header-tool-icon:hover,
  426. .v-widget-header .v-widget-header-tool-icon.hover {
  427. background-position: 0px -24px;
  428. }
  429. .v-widget-header .v-widget-header-tool-icon:active,
  430. .v-widget-header .v-widget-header-tool-icon.active {
  431. background-position: 0px -48px;
  432. }
  433. .v-window {
  434. overflow: hidden;
  435. box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .6);
  436. border-radius: 3px;
  437. display: flex;
  438. flex-direction: column;
  439. background-color: #fff;
  440. }
  441. .v-widget-window {
  442. background: rgba(40, 50, 60, 0.85);
  443. box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.5);
  444. transition: top ease-in 0.2s, left ease-in 0.2s;
  445. }
  446. .v-window-draggable .v-window-header-wrapper,
  447. .v-window .v-window-header-wrapper {
  448. flex: 0 0 auto;
  449. display: flex;
  450. -webkit-user-select: none;
  451. -moz-user-select: none;
  452. user-select: none;
  453. cursor: default;
  454. border-top-right-radius: 3px;
  455. border-top-left-radius: 3px;
  456. background-color: #fff;
  457. position: relative;
  458. padding: 8px 0 0 18px;
  459. height: 40px;
  460. line-height: 40px;
  461. box-sizing: border-box;
  462. border-bottom: 1px solid rgba(198, 212, 224, .5);
  463. }
  464. .v-widget-window .v-window-header-wrapper {
  465. height: 32px;
  466. border: none;
  467. padding: 0;
  468. background: none;
  469. }
  470. .v-window .draggable.v-window-header-wrapper {
  471. cursor: move;
  472. }
  473. .v-widget-header {
  474. padding: 0 10px;
  475. display: flex;
  476. align-items: center;
  477. justify-content: space-between;
  478. width: 100%;
  479. }
  480. .v-widget-header .v-widget-header-left,
  481. .v-widget-header .v-widget-header-right {
  482. display: flex;
  483. }
  484. .v-widget-header .v-btn.v-btn-dropdown span {
  485. padding: 0;
  486. }
  487. .v-widget-header .v-widget-header-right .v-widget-header-tool-icon {
  488. margin-left: 8px;
  489. }
  490. .v-widget-header .v-btn.v-btn-dropdown {
  491. height: 24px;
  492. }
  493. .v-widget-window .v-window-body {
  494. background: none;
  495. }
  496. .v-widget-window .v-widget-items-wrapper {
  497. height: 100%;
  498. padding-bottom: 10px;
  499. box-sizing: border-box;
  500. }
  501. .v-widget-window .v-ps {
  502. padding-right: 0;
  503. }
  504. .v-widget-item {
  505. display: none;
  506. box-sizing: border-box;
  507. background: rgba(255, 255, 255, 0.95);
  508. margin-left: 10px;
  509. margin-right: 10px;
  510. border: 1px solid rgba(40, 50, 60, 0.3);
  511. border-radius: 3px;
  512. padding-bottom: 4px;
  513. height: 208px;
  514. box-shadow: none;
  515. overflow: hidden;
  516. transition: height ease-in 0.2s;
  517. }
  518. .v-widget-window .v-ps.show {
  519. padding-right: 4px;
  520. }
  521. .v-widget-list {
  522. display: flex;
  523. flex-direction: column;
  524. width: 100%;
  525. min-height: 100%;
  526. }
  527. .v-widget-item.active {
  528. display: block;
  529. }
  530. .v-widget-item.active~.v-widget-item.active {
  531. margin-top: 8px;
  532. }
  533. .v-widget-item .v-widget-item-header {
  534. cursor: move;
  535. display: flex;
  536. align-items: start;
  537. height: 35px;
  538. margin-left: 3px;
  539. margin-right: 5px;
  540. font-size: 12px;
  541. }
  542. .v-widget-item .v-widget-item-header {
  543. font-weight: 700;
  544. }
  545. .v-widget-item .v-widget-item-header .v-widget-item-header-icon {
  546. width: 32px;
  547. height: 32px;
  548. margin-top: 1px;
  549. margin-bottom: 2px;
  550. margin-right: 2px;
  551. cursor: pointer;
  552. }
  553. .v-widget-item .v-widget-item-header .v-widget-item-header-title {
  554. align-self: center;
  555. font-size: 1em;
  556. flex: 1;
  557. }
  558. .v-widget-item .v-widget-item-header {
  559. cursor: move;
  560. display: flex;
  561. align-items: start;
  562. height: 35px;
  563. margin-left: 3px;
  564. margin-right: 5px;
  565. font-size: 12px;
  566. }
  567. .v-widget-item .v-widget-item-header:hover .v-widget-item-header-tools {
  568. opacity: 1
  569. }
  570. .v-widget-item .v-widget-item-header .v-widget-item-header-title {
  571. align-self: center;
  572. font-size: 1em;
  573. flex: 1;
  574. }
  575. .v-widget-item .v-widget-item-header .v-widget-item-header-title .v-widget-item-header-title-text {
  576. cursor: pointer;
  577. }
  578. .v-widget-item .v-widget-item-header .v-widget-item-header-tools {
  579. justify-content: flex-end;
  580. display: flex;
  581. margin-top: 5px;
  582. margin-bottom: 6px;
  583. transition: opacity 0.2s;
  584. opacity: 0;
  585. }
  586. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.toolbar {
  587. background-image: url(../../../../public/image/index/windowMove.png);
  588. background-size: 24px 72px;
  589. }
  590. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon {
  591. cursor: pointer;
  592. margin-left: 8px;
  593. height: 24px;
  594. width: 24px;
  595. background-position: 0 0;
  596. }
  597. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.minimize {
  598. background-image: url(../../../../public/image/index/WindowUp.png);
  599. background-size: 24px 72px;
  600. }
  601. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.close {
  602. background-image: url(../../../../public/image/index/windowClose.png);
  603. background-size: 24px 72px;
  604. }
  605. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon:hover {
  606. background-position: 0px -24px;
  607. }
  608. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon:active {
  609. background-position: 0px -48px;
  610. }
  611. @media(-webkit-min-device-pixel-ratio: 1.5),
  612. (-o-min-device-pixel-ratio: 3/2),
  613. (min-resolution: 144dpi) {
  614. .synohdpack .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.toolbar {
  615. background-size: 24px 72px
  616. }
  617. }
  618. @media(-webkit-min-device-pixel-ratio: 1.5),
  619. (-o-min-device-pixel-ratio: 3/2),
  620. (min-resolution: 144dpi) {
  621. .synohdpackdebug .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.toolbar {
  622. background-size: 24px 72px;
  623. outline: 1px green dashed
  624. }
  625. }
  626. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.minimize {
  627. background-size: 24px 72px
  628. }
  629. @media(-webkit-min-device-pixel-ratio: 1.5),
  630. (-o-min-device-pixel-ratio: 3/2),
  631. (min-resolution: 144dpi) {
  632. .synohdpack .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.minimize {
  633. background-size: 24px 72px
  634. }
  635. }
  636. @media(-webkit-min-device-pixel-ratio: 1.5),
  637. (-o-min-device-pixel-ratio: 3/2),
  638. (min-resolution: 144dpi) {
  639. .synohdpackdebug.v-widget-item.v-widget-item-header.v-widget-item-header-tools.v-widget-item-header-tool-icon.minimize {
  640. background-size: 24px 72px;
  641. outline: 1px green dashed
  642. }
  643. }
  644. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.maximize {
  645. background-size: 24px 72px
  646. }
  647. @media(-webkit-min-device-pixel-ratio: 1.5),
  648. (-o-min-device-pixel-ratio: 3/2),
  649. (min-resolution: 144dpi) {
  650. .synohdpack .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.maximize {
  651. background-size: 24px 72px
  652. }
  653. }
  654. @media(-webkit-min-device-pixel-ratio: 1.5),
  655. (-o-min-device-pixel-ratio: 3/2),
  656. (min-resolution: 144dpi) {
  657. .synohdpackdebug .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.maximize {
  658. background-size: 24px 72px;
  659. outline: 1px green dashed
  660. }
  661. }
  662. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.close {
  663. background-size: 24px 72px
  664. }
  665. @media(-webkit-min-device-pixel-ratio: 1.5),
  666. (-o-min-device-pixel-ratio: 3/2),
  667. (min-resolution: 144dpi) {
  668. .synohdpack .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.close {
  669. background-size: 24px 72px
  670. }
  671. }
  672. @media(-webkit-min-device-pixel-ratio: 1.5),
  673. (-o-min-device-pixel-ratio: 3/2),
  674. (min-resolution: 144dpi) {
  675. .synohdpackdebug .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.close {
  676. background-size: 24px 72px;
  677. outline: 1px green dashed
  678. }
  679. }
  680. .syno-sysinfo-system-health .x-panel-body {
  681. background-color: transparent;
  682. }
  683. .syno-sysinfo-system-health .syno-sysinfo-system-health-status {
  684. height: 76px;
  685. width: 100%;
  686. padding-bottom: 4px;
  687. display: flex;
  688. align-items: center;
  689. }
  690. /* 系统状况 */
  691. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-west-normal,
  692. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-west-warning,
  693. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-west-initial,
  694. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-west-emergency {
  695. position: relative;
  696. margin: 8px 16px 8px 8px;
  697. width: 60px;
  698. height: 60px;
  699. background-image: url('../../../../public/image/index/minIcon.png');
  700. background-position: 0 -192px;
  701. background-repeat: no-repeat;
  702. }
  703. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-west-normal {
  704. background-position: 0 -192px;
  705. }
  706. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-content-wrap {
  707. display: flex;
  708. flex-direction: column;
  709. width: 212px;
  710. }
  711. .syno-sysinfo-health-text-overflow,
  712. .syno-sysinfo-system-health-south,
  713. .sys-info-south-table .x-table-layout-cell .syno-sysinfo-system-health-south-data,
  714. .sys-info-south-table .x-table-layout-cell .syno-sysinfo-system-health-south-title,
  715. .syno-sysinfo-system-health-content-header-warning,
  716. .syno-sysinfo-system-health-content-header-emergency,
  717. .syno-sysinfo-system-health-content-header-normal,
  718. .syno-sysinfo-system-health-content-header-initial {
  719. text-overflow: ellipsis;
  720. white-space: nowrap;
  721. overflow: hidden;
  722. }
  723. .syno-sysinfo-system-health-content-header-normal,
  724. .syno-sysinfo-system-health-content-header-initial {
  725. color: #009E05;
  726. }
  727. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-content-wrap .syno-sysinfo-system-health-summary {
  728. font-size: 20px;
  729. line-height: 28px;
  730. }
  731. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-content-wrap .syno-sysinfo-system-health-content {
  732. display: -webkit-box;
  733. -webkit-line-clamp: 2;
  734. -webkit-box-orient: vertical;
  735. overflow: hidden;
  736. line-height: 20px;
  737. max-height: 40px;
  738. font-size: 12px;
  739. }
  740. .sds-window-v5 .x-panel-body {
  741. background-color: transparent;
  742. }
  743. .syno-sysinfo-system-health .x-panel-body {
  744. background-color: transparent;
  745. }
  746. .sys-info-south-table {
  747. border: none;
  748. color: #414b55;
  749. }
  750. .sys-info-south-table .x-table-layout-ct {
  751. border: none;
  752. height: 84px !important;
  753. }
  754. .sys-info-south-table .x-table-layout {
  755. width: 296px !important;
  756. }
  757. .sys-info-south-table .x-table-layout-cell {
  758. height: 28px;
  759. line-height: 28px;
  760. }
  761. .sys-info-south-table .x-table-layout-cell .syno-sysinfo-system-health-south-title {
  762. width: 142px;
  763. padding-right: 6px;
  764. font-size: 12px;
  765. }
  766. .sys-info-south-table .sys-info-btn {
  767. border: none;
  768. background-image: none;
  769. background-color: transparent;
  770. }
  771. .sys-info-south-table .sys-info-btn .x-btn-text {
  772. color: #414b55;
  773. padding-left: 0px;
  774. font-size: 12px;
  775. }
  776. .sys-info-south-table .sys-info-btn,
  777. .sys-info-south-table .sys-info-btn .x-btn-text,
  778. .sys-info-south-table .x-table-layout-cell .syno-sysinfo-system-health-south-title {
  779. font-weight: 700;
  780. }
  781. .syno-cjk .sys-info-south-table .sys-info-btn,
  782. .sys-info-south-table .syno-cjk .sys-info-btn,
  783. .syno-cjk .sys-info-south-table .sys-info-btn .x-btn-text,
  784. .sys-info-south-table .sys-info-btn .syno-cjk .x-btn-text,
  785. .syno-cjk .sys-info-south-table .x-table-layout-cell .syno-sysinfo-system-health-south-title,
  786. .sys-info-south-table .x-table-layout-cell .syno-cjk .syno-sysinfo-system-health-south-title {
  787. font-weight: 600;
  788. }
  789. .syno-ux-button em.x-btn-arrow {
  790. display: block;
  791. padding-right: 12px;
  792. background-image: url("../../../../public/image/index/downArrow.png");
  793. background-repeat: no-repeat;
  794. background-position: right 2px;
  795. }
  796. .sys-info-south-table .row-left {
  797. padding-right: 6px;
  798. width: 148px;
  799. }
  800. .sys-info-south-table .x-table-layout-cell {
  801. height: 28px;
  802. line-height: 28px;
  803. }
  804. .sys-info-south-table .x-table-layout-cell .x-panel-body {
  805. border: none;
  806. }
  807. .resource-monitor-widget {
  808. padding: 4px 11px 5px 11px;
  809. }
  810. .x-panel {
  811. border-style: solid;
  812. border-width: 0;
  813. }
  814. /* 资源监控 */
  815. .resource-monitor-widget .resource-monitor-percentage-cmp .percentage-cmp-title {
  816. width: 86px;
  817. padding-right: 6px;
  818. float: left;
  819. line-height: 24px;
  820. color: #414b55;
  821. font-size: 12px;
  822. }
  823. .resource-monitor-widget .resource-monitor-percentage-cmp .percentage-cmp-hbar-background {
  824. background-color: rgba(34, 38, 54, 0.1);
  825. width: 160px;
  826. height: 8px;
  827. margin: 8px 0px;
  828. float: left;
  829. border-radius: 4px;
  830. overflow: hidden;
  831. }
  832. .resource-monitor-widget .resource-monitor-percentage-cmp .percentage-cmp-hbar-background .percentage-cmp-hbar-fill {
  833. width: 70px;
  834. height: 8px;
  835. background-color: #057FEB;
  836. -moz-transition-property: width;
  837. -o-transition-property: width;
  838. -webkit-transition-property: width;
  839. transition-property: width;
  840. -moz-transition-timing-function: ease-in;
  841. -o-transition-timing-function: ease-in;
  842. -webkit-transition-timing-function: ease-in;
  843. transition-timing-function: ease-in;
  844. -moz-transition-duration: 0.5s;
  845. -o-transition-duration: 0.5s;
  846. -webkit-transition-duration: 0.5s;
  847. transition-duration: 0.5s;
  848. }
  849. .resource-monitor-widget .resource-monitor-percentage-cmp .percentage-cmp-value {
  850. float: left;
  851. width: 34px;
  852. padding-left: 6px;
  853. line-height: 24px;
  854. font-size: 12px;
  855. }
  856. .resource-monitor-widget .resource-monitor-widget-subcmp-text,
  857. .resource-monitor-widget .resource-monitor-percentage-cmp,
  858. .resource-monitor-widget .resource-Monitor-networkio-cmp,
  859. .resource-monitor-widget .resource-Monitor-networkio-cmp .interface-selection-button.syno-ux-button .x-btn-arrow .x-btn-text {
  860. font-size: 13px;
  861. color: #414b55;
  862. line-height: 24px;
  863. }
  864. .resource-monitor-widget .resource-Monitor-networkio-cmp {
  865. float: left;
  866. height: 24px;
  867. }
  868. .resource-monitor-widget .resource-Monitor-networkio-cmp .networkio-cmp-icon.out {
  869. background-position: 0 0px;
  870. }
  871. .resource-monitor-widget .resource-Monitor-networkio-cmp .networkio-cmp-icon {
  872. background-image: url("../../../../public/image/index/upDown.png");
  873. background-repeat: no-repeat;
  874. background-position: center;
  875. width: 16px;
  876. height: 16px;
  877. padding: 0px;
  878. margin: 4px 0px 4px 6px;
  879. float: left;
  880. }
  881. .resource-monitor-widget .resource-Monitor-networkio-cmp .networkio-cmp-label.out {
  882. color: #057FEB;
  883. }
  884. .resource-monitor-widget .resource-Monitor-networkio-cmp .networkio-cmp-label {
  885. float: left;
  886. color: #09B3B3;
  887. height: 24px !important;
  888. line-height: 24px;
  889. padding: 0px 8px 0px 0px;
  890. font-size: 12px;
  891. }
  892. .resource-monitor-widget .resource-Monitor-networkio-cmp .networkio-cmp-icon.in {
  893. margin-left: 0px;
  894. background-position: 0 -16px;
  895. }
  896. .resource-monitor-widget .resource-Monitor-networkio-cmp .networkio-cmp-icon {
  897. background-image: url("../../../../public/image/index/upDown.png");
  898. background-repeat: no-repeat;
  899. background-position: center;
  900. width: 16px;
  901. height: 16px;
  902. padding: 0px;
  903. margin: 4px 0px 4px 6px;
  904. float: left;
  905. }
  906. .x-btn.interface-selection-button.x-btn-noicon {
  907. border: 0px;
  908. background-color: transparent;
  909. background-image: none;
  910. }
  911. .resource-monitor-widget .resource-Monitor-networkio-cmp .interface-selection-button.syno-ux-button .x-btn-arrow .x-btn-text {
  912. height: 24px;
  913. line-height: 24px;
  914. padding-left: 0px;
  915. font-size: 12px;
  916. max-width: 80px;
  917. white-space: nowrap;
  918. overflow: hidden;
  919. text-overflow: ellipsis;
  920. }
  921. .resource-Monitor-widget-base {
  922. width: 296px;
  923. }
  924. .resource-monitor-widget .resource-Monitor-widget-panel .echarts-wrapper {
  925. height: 92px;
  926. width: 296px;
  927. }
  928. /* 备份 */
  929. .syno-sds-backupapp-scedule-title,
  930. .syno-backup-task-main-page .syno-backup-task-status-panel .x-panel-body .task-status-text,
  931. .syno-backup-task-main-page .syno-backup-task-status-panel .x-panel-body .syno-backup-task-status-active-panel .progress-upper-row .syno-backup-progress-percentage-text,
  932. .syno-backup-task-main-page .syno-backup-task-status-panel .x-panel-body .syno-backup-task-status-suspend-panel .progress-upper-row .syno-backup-progress-percentage-text,
  933. .syno-backup-task-main-page .syno-backup-task-subpanel .x-panel-header .x-panel-header-text,
  934. .syno-backup-new-feature-panel .syno-backup-new-feature-panel-title,
  935. .syno-backup-new-feature-panel .syno-backup-learn-more-text,
  936. .syno-backup-app-grid-panel .x-grid3-row .x-grid3-cell .x-grid3-cell-inner .syno-backup-cell-app-title .syno-backup-cell-app-beta,
  937. .syno-backup-app-grid-panel .x-grid3-row .x-grid3-cell .x-grid3-cell-inner .syno-backup-cell-app-title .syno-backup-cell-app-name,
  938. .syno-backup-restore-progress-window .syno-ux-fieldset .x-fieldset-header .x-fieldset-header-text,
  939. .syno-backup-client-common-customized-retention-setting-window .syno-backup-customized-retention-description,
  940. .syno-backup-client-common-filter-setting-window-body .syno-backup-client-common-filter-setting-panel .syno-backup-filter-setting-mask-text,
  941. .syno-backup-client-common-statistic-window .syno-backup-statistic-panel .syno-backup-statistic-topbar-container .syno-backup-statistic-topbar-left-container .syno-backup-statistic-title,
  942. .syno-backup-client-common-statistic-window .syno-backup-statistic-panel .syno-backup-statistic-line-chart .empty-page-position .empty-page-parent .empty-page-text,
  943. .syno-backup-client-common-statistic-window .syno-backup-statistic-panel .syno-backup-statistic-line-chart .data-node-tooltip .title,
  944. .syno-backup-client-common-statistic-window .syno-backup-statistic-panel .syno-backup-statistic-line-chart .data-node-tooltip .text-field .tooltip-text span.right font,
  945. .syno-backup-client-common-source-info-panel .syno-backup-source-info-title,
  946. .syno-backup-client-common-source-usage-info .legend .legend-w .name,
  947. .syno-backup-client-explore .syno-sds-backup-filebrowser-treepanel .root_node a span,
  948. .syno-backup-client-explore .syno-sds-backup-filebrowser-treepanel .x-tree-node .root_node a span,
  949. .syno-backup-client-explore .syno-sds-backup-pathbar .x-btn-over .syno-sds-backup-pathbutton-text,
  950. .syno-backup-client-explore .syno-backup-timeline-wrapper .syno-backup-timeline-scroller ul .month-label,
  951. .syno-backup-client-explore .syno-backup-timeline-wrapper .syno-backup-timeline-scroller li.version-select .version-box .version-count,
  952. .syno-backup-client-explore .syno-backup-timeline-wrapper .syno-backup-timeline-scroller li.version-select .version-box .version-time,
  953. .syno-backup-client-explore .syno-backup-timeline-version-tag .syno-backup-timeline-version-tag-bubble span,
  954. .syno-backup-client-timeline-version-menu .syno-backup-timeline-version-ct .version-menu-header,
  955. .syno-backup-client-timeline-version-menu .syno-backup-timeline-version-ct table td.version-selected,
  956. .syno-sds-backup-client-jobtray.syno-sds-backup-jobtray-panel .jobtray-grid-panel .x-panel-header .x-panel-header-text {
  957. font-weight: 700;
  958. }
  959. .sds-widget-gridpanel .x-grid3 {
  960. background-color: transparent;
  961. }
  962. .sds-widget-gridpanel .arrow-scroller {
  963. position: absolute;
  964. top: 0px;
  965. right: 0px;
  966. width: 24px;
  967. bottom: 0px;
  968. margin: 2px;
  969. margin-right: 1px;
  970. }
  971. .sds-widget-gridpanel .arrow-scroller .up {
  972. height: 50%;
  973. cursor: pointer;
  974. }
  975. .sds-widget-gridpanel .arrow-scroller .up .arrow-up,
  976. .sds-widget-gridpanel .arrow-scroller .down .arrow-down {
  977. width: 24px;
  978. height: 24px;
  979. background-repeat: no-repeat;
  980. background-image: url(../../../../public/image/index/arrowhead.png);
  981. background-size: 48px 72px;
  982. }
  983. .sds-widget-gridpanel .arrow-scroller .up .arrow-up:hover,
  984. .sds-widget-gridpanel .arrow-scroller .down .arrow-down:hover {
  985. background-position: 0px -24px;
  986. }
  987. .sds-widget-gridpanel .arrow-scroller .up .arrow-up:active,
  988. .sds-widget-gridpanel .arrow-scroller .down .arrow-down:active {
  989. background-position: 0px -48px;
  990. }
  991. .sds-widget-gridpanel .arrow-scroller .up.arrow-disabled {
  992. cursor: default;
  993. }
  994. .sds-widget-gridpanel .arrow-scroller .up .arrow-up {
  995. background-position: -24px 0px;
  996. }
  997. .sds-widget-gridpanel .arrow-scroller .up .arrow-up {
  998. position: absolute;
  999. top: 0px;
  1000. }
  1001. .sds-widget-gridpanel .arrow-scroller .up.arrow-disabled .arrow-up {
  1002. background-position: -24px 0px !important;
  1003. opacity: 0.4;
  1004. }
  1005. .sds-widget-gridpanel .arrow-scroller .down .arrow-down {
  1006. background-position: 0px 0px;
  1007. }
  1008. .syno-sds-backupapp-widget-panel .x-grid3-row {
  1009. margin-bottom: 2px;
  1010. }
  1011. .sds-widget-gridpanel .arrow-scroller .down .arrow-down {
  1012. position: absolute;
  1013. bottom: 0px;
  1014. }
  1015. .sds-widget-gridpanel .arrow-scroller .down.arrow-disabled .arrow-down {
  1016. background-position: 0px 0px !important;
  1017. opacity: 0.4;
  1018. }
  1019. .sds-widget-gridpanel .x-grid3-row {
  1020. -webkit-text-size-adjust: none;
  1021. font-size: 12px;
  1022. border-width: 0;
  1023. background-color: transparent;
  1024. }
  1025. .sds-widget-gridpanel .x-grid3-row .x-grid3-td-bkpstatus .x-grid3-cell-inner {
  1026. height: 64px;
  1027. padding: 8px 0 8px 0;
  1028. }
  1029. .sds-widget-gridpanel .x-grid3-row .x-grid3-cell-inner {
  1030. line-height: 28px;
  1031. }
  1032. .syno-sds-backupapp-scedule-icon.no-result {
  1033. background-position: 0px -48px;
  1034. }
  1035. .syno-sds-backupapp-scedule-enable div {
  1036. text-overflow: ellipsis;
  1037. overflow: hidden;
  1038. }
  1039. .syno-sds-backupapp-scedule-icon {
  1040. background-image: url("../../../../public/image/index/wdgt_icn_scheduled_status.png");
  1041. width: 24px;
  1042. height: 24px;
  1043. float: left;
  1044. margin-right: 6px;
  1045. }
  1046. .syno-sds-backupapp-scedule-icon.schedule-inactive {
  1047. background-position: 0px -144px;
  1048. }
  1049. .syno-sds-backupapp-scedule-enable div {
  1050. text-overflow: ellipsis;
  1051. overflow: hidden;
  1052. }
  1053. .syno-sds-backupapp-scedule-title {
  1054. width: 134px;
  1055. float: left;
  1056. }
  1057. .syno-sds-backupapp-scedule-time {
  1058. width: 114px;
  1059. float: right;
  1060. text-align: right;
  1061. }
  1062. .syno-sds-backupapp-scedule-enable div {
  1063. text-overflow: ellipsis;
  1064. overflow: hidden;
  1065. }
  1066. /* 最新日志 */
  1067. .sds-widget-gridpanel .x-grid3-row {
  1068. -webkit-text-size-adjust: none;
  1069. font-size: 12px;
  1070. border-width: 0;
  1071. background-color: transparent;
  1072. }
  1073. .sds-widget-gridpanel .x-grid3-cell-inner {
  1074. text-overflow: ellipsis;
  1075. }
  1076. .sds-widget-gridpanel .x-grid3-row .x-grid3-cell-inner {
  1077. height: 28px;
  1078. padding: 0px;
  1079. line-height: 28px;
  1080. }
  1081. .sds-sysinfo-widget-icon,
  1082. .syno-sysinfo-file-change-log,
  1083. .sds-recentlog-loglevel,
  1084. .syno-crrentconn-icon {
  1085. background-image: url('../../../../public/image/index/minIcon.png');
  1086. background-position: 0 0;
  1087. background-repeat: no-repeat;
  1088. width: 24px;
  1089. height: 24px;
  1090. margin: 2px 6px 2px 7px;
  1091. float: left;
  1092. }
  1093. .log-info {
  1094. color: #414b55;
  1095. }
  1096. .sds-recentlog-loglevel.log-info {
  1097. background-position: 0 -24px;
  1098. }
  1099. /* 计划的任务 */
  1100. .syno-taskscheduler-enable-taskicon,
  1101. .syno-taskscheduler-disable-taskicon {
  1102. background-image: url("../../../../public/image/index/wdgt_icn_items.png");
  1103. width: 24px;
  1104. height: 24px;
  1105. margin: 2px 6px 2px 7px;
  1106. float: left;
  1107. background-position: 0 -144px;
  1108. }
  1109. /* 已连接用户 */
  1110. .syno-crrentconn-split {
  1111. background-image: url('../../../../public/image/index/minIcon.png');
  1112. background-position: 0 -372px;
  1113. width: 2px;
  1114. height: 28px;
  1115. float: left;
  1116. }
  1117. .syno-sysinfo-disconn-button ,.syno-sysinfo-conn-button {
  1118. background-image: url('../../../../public/image/index/minIcon.png') !important;
  1119. background-position: -2px -372px;
  1120. width: 24px;
  1121. height: 24px;
  1122. cursor: pointer;
  1123. margin: 2px 8px 2px 8px;
  1124. }
  1125. .syno-sysinfo-conn-button {
  1126. background-position: 34px -372px;
  1127. }
  1128. .syno-sysinfo-disconn-button:hover{
  1129. background-position: -2px -396px;
  1130. }
  1131. .syno-sysinfo-disconn-button:active{
  1132. background-position: -2px -420px;
  1133. }
  1134. .syno-sysinfo-conn-button:hover{
  1135. background-position: 34px -396px;
  1136. }
  1137. .syno-sysinfo-conn-button:active{
  1138. background-position: 34px -420px;
  1139. }
  1140. /* 存储 */
  1141. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .x-grid3-cell-inner {
  1142. height: 82px !important;
  1143. }
  1144. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box {
  1145. margin: 0 8px 0px 10px;
  1146. padding-top: 8px;
  1147. padding-bottom: 8px;
  1148. height: 64px;
  1149. }
  1150. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .icon-block {
  1151. position: relative;
  1152. display: inline-block;
  1153. width: 40px;
  1154. height: 64px;
  1155. margin-right: 18px;
  1156. }
  1157. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .icon-block .icon-volume-img {
  1158. position: absolute;
  1159. width: 40px;
  1160. height: 40px;
  1161. top: 9px;
  1162. background-image: url("../../../../public/image/index/wdgt_icn_volume.png");
  1163. }
  1164. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .icon-block .icon-volume-status {
  1165. position: absolute;
  1166. width: 24px;
  1167. height: 24px;
  1168. top: 31px;
  1169. left: 22px;
  1170. background-image: url('../../../../public/image/index/minIcon.png');
  1171. background-position: -26px -372px;
  1172. }
  1173. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block {
  1174. display: inline-block;
  1175. font-size: 12px;
  1176. vertical-align: top;
  1177. position: relative;
  1178. width: 200px;
  1179. }
  1180. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block .volume-name-status, .syno-sysinfo-system-health-mini .system-health-widget-mini-hostname {
  1181. font-weight: 700;
  1182. }
  1183. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block .volume-name-status {
  1184. line-height: 24px;
  1185. color: #414b55;
  1186. }
  1187. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block .usage-bar-container {
  1188. position: relative;
  1189. height: 20px;
  1190. }
  1191. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block .usage-bar-container .usage-bar-bg {
  1192. position: absolute;
  1193. top: 6px;
  1194. width: 200px;
  1195. height: 8px;
  1196. background-color: rgba(34, 38, 54, 0.1);
  1197. border-radius: 4px;
  1198. overflow: hidden;
  1199. }
  1200. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block .usage-bar-container .usage-bar-fill {
  1201. height: 8px;
  1202. background-color: #057FEB;
  1203. }
  1204. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block .usage-text {
  1205. line-height: 20px;
  1206. color: #414b55;
  1207. }
  1208. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block .usage-text .usage-used-text {
  1209. color: #057FEB;
  1210. }
  1211. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block .usage-ratio-text {
  1212. position: absolute;
  1213. right: 0;
  1214. bottom: 0;
  1215. line-height: 20px;
  1216. color: #414b55;
  1217. }
  1218. /* 侧边滑动栏 */
  1219. .v-widget-window .v-ps .ps__rail-y {
  1220. opacity: 1;
  1221. }
  1222. .v-widget-window .v-ps .ps__rail-y .ps__thumb-y {
  1223. right: 4px;
  1224. background-color: rgba(255, 255, 255, 0.3);
  1225. }
  1226. .v-widget-window .v-ps {
  1227. padding-right: 0;
  1228. }
  1229. .v-ps.ps__rail-x:hover>.ps__thumb-x,
  1230. .v-ps.ps__rail-x:focus>.ps__thumb-x,
  1231. .v-ps.ps__rail-x.ps--clicking.ps__thumb-x {
  1232. background-color: rgba(0, 0, 0, .42)
  1233. }
  1234. .v-ps.ps__rail-y:hover>.ps__thumb-y,
  1235. .v-ps.ps__rail-y:focus>.ps__thumb-y,
  1236. .v-ps.ps__rail-y.ps--clicking.ps__thumb-y {
  1237. background-color: rgba(0, 0, 0, .42)
  1238. }
  1239. @media screen and (max-height: 456px){
  1240. #sds-desktop .v-widget-window{
  1241. height: calc(100vh - 10px) !important;
  1242. }
  1243. }
  1244. /* 套件中心弹出框 */
  1245. /* .tjDetail{
  1246. display: none;
  1247. } */
  1248. .sds-window-v5 .x-tool-help {
  1249. background-image: url("../../../image/index//wdheader_bt_help.png");
  1250. }
  1251. .sds-window-v5 .x-tool-restore {
  1252. background-image: url("../../../image/index/windowRestore.png");
  1253. }
  1254. .sds-window-v5.x-window .x-toolbar-cell .x-btn {
  1255. margin: 0px;
  1256. }
  1257. .synopkg-icon-btn .synopkg-btn-icon {
  1258. width: 24px !important;
  1259. height: 24px !important;
  1260. padding: 0 !important;
  1261. margin: 2px 3px !important;
  1262. }
  1263. .synopkg-icon-btn {
  1264. height: 28px !important;
  1265. width: 30px !important;
  1266. background: rgba(198,212,224,0.4);
  1267. border-radius: 3px;
  1268. border: none;
  1269. }
  1270. .synopkg-toolbar .synopkg-toolbar-back-btn {
  1271. margin: 0 !important;
  1272. border-right: 1px solid rgba(198,212,224,0.9);
  1273. border-radius: 3px 0 0 3px;
  1274. }
  1275. .synopkg-toolbar .synopkg-toolbar-next-btn {
  1276. border-radius: 0 3px 3px 0;
  1277. }
  1278. .synopkg-toolbar .synopkg-toolbar-back-btn.x-item-disabled {
  1279. border-right: 1px solid rgba(198,212,224,0.5);
  1280. }
  1281. .sds-window-v5 .x-tool-minimize {
  1282. background-image: url("../../../image/index/wdheader_bt_minimize.png");
  1283. }
  1284. .synopkg-toolbar .synopkg-toolbar-back-btn .synopkg-toolbar-back-icon {
  1285. background-image: url('../../../image/index/sprite-s19f0e38f3d.png');
  1286. background-position: 0 -248px;
  1287. }
  1288. .synopkg-toolbar .synopkg-toolbar-next-btn .synopkg-toolbar-next-icon {
  1289. background-image: url('../../../image/index/sprite-s19f0e38f3d.png');
  1290. background-position: 0 -296px;
  1291. }
  1292. .synopkg-toolbar .synopkg-toolbar-refresh-icon {
  1293. background-image: url('../../../image/index/sprite-s19f0e38f3d.png');
  1294. background-position: 10px 0;
  1295. }
  1296. .synopkg-toolbar .syno-ux-textfilter {
  1297. width: 100%;
  1298. }