style.css 39 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565
  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-widget-window.active{
  447. opacity: 0.5;
  448. }
  449. .v-window-draggable .v-window-header-wrapper,
  450. .v-window .v-window-header-wrapper {
  451. flex: 0 0 auto;
  452. display: flex;
  453. -webkit-user-select: none;
  454. -moz-user-select: none;
  455. user-select: none;
  456. cursor: default;
  457. border-top-right-radius: 3px;
  458. border-top-left-radius: 3px;
  459. background-color: #fff;
  460. position: relative;
  461. padding: 8px 0 0 18px;
  462. height: 40px;
  463. line-height: 40px;
  464. box-sizing: border-box;
  465. border-bottom: 1px solid rgba(198, 212, 224, .5);
  466. }
  467. .v-widget-window .v-window-header-wrapper {
  468. height: 32px;
  469. border: none;
  470. padding: 0;
  471. background: none;
  472. }
  473. .v-window .draggable.v-window-header-wrapper {
  474. cursor: move;
  475. }
  476. .v-widget-header {
  477. padding: 0 10px;
  478. display: flex;
  479. align-items: center;
  480. justify-content: space-between;
  481. width: 100%;
  482. }
  483. .v-widget-header .v-widget-header-left,
  484. .v-widget-header .v-widget-header-right {
  485. display: flex;
  486. }
  487. .v-widget-header .v-btn.v-btn-dropdown span {
  488. padding: 0;
  489. }
  490. .v-widget-header .v-widget-header-right .v-widget-header-tool-icon {
  491. margin-left: 8px;
  492. }
  493. .v-widget-header .v-btn.v-btn-dropdown {
  494. height: 24px;
  495. }
  496. .v-widget-window .v-window-body {
  497. background: none;
  498. }
  499. .v-widget-window .v-widget-items-wrapper {
  500. height: 100%;
  501. padding-bottom: 10px;
  502. box-sizing: border-box;
  503. }
  504. .v-widget-window .v-ps {
  505. padding-right: 0;
  506. }
  507. .v-widget-item {
  508. display: none;
  509. box-sizing: border-box;
  510. background: rgba(255, 255, 255, 0.95);
  511. margin-left: 10px;
  512. margin-right: 10px;
  513. border: 1px solid rgba(40, 50, 60, 0.3);
  514. border-radius: 3px;
  515. padding-bottom: 4px;
  516. height: 208px;
  517. box-shadow: none;
  518. overflow: hidden;
  519. transition: height ease-in 0.2s;
  520. }
  521. .v-widget-window .v-ps.show {
  522. padding-right: 4px;
  523. }
  524. .v-widget-list {
  525. display: flex;
  526. flex-direction: column;
  527. width: 340px;
  528. position: relative;
  529. min-height: 100%;
  530. }
  531. .v-widget-item.active {
  532. display: block;
  533. }
  534. .v-widget-item.active~.v-widget-item.active {
  535. margin-top: 8px;
  536. }
  537. .v-widget-item .v-widget-item-header {
  538. cursor: move;
  539. display: flex;
  540. align-items: start;
  541. height: 35px;
  542. margin-left: 3px;
  543. margin-right: 5px;
  544. font-size: 12px;
  545. }
  546. .v-widget-item .v-widget-item-header {
  547. font-weight: 700;
  548. }
  549. .v-widget-item .v-widget-item-header .v-widget-item-header-icon {
  550. width: 32px;
  551. height: 32px;
  552. margin-top: 1px;
  553. margin-bottom: 2px;
  554. margin-right: 2px;
  555. cursor: pointer;
  556. }
  557. .v-widget-item .v-widget-item-header .v-widget-item-header-title {
  558. align-self: center;
  559. font-size: 1em;
  560. flex: 1;
  561. }
  562. .v-widget-item .v-widget-item-header {
  563. cursor: move;
  564. display: flex;
  565. align-items: start;
  566. height: 35px;
  567. margin-left: 3px;
  568. margin-right: 5px;
  569. font-size: 12px;
  570. }
  571. .v-widget-item .v-widget-item-header:hover .v-widget-item-header-tools {
  572. opacity: 1
  573. }
  574. .v-widget-item .v-widget-item-header .v-widget-item-header-title {
  575. align-self: center;
  576. font-size: 1em;
  577. flex: 1;
  578. }
  579. .v-widget-item .v-widget-item-header .v-widget-item-header-title .v-widget-item-header-title-text {
  580. cursor: pointer;
  581. }
  582. .v-widget-item .v-widget-item-header .v-widget-item-header-tools {
  583. justify-content: flex-end;
  584. display: flex;
  585. margin-top: 5px;
  586. margin-bottom: 6px;
  587. transition: opacity 0.2s;
  588. opacity: 0;
  589. }
  590. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.toolbar {
  591. background-image: url(../../../../public/image/index/windowMove.png);
  592. background-size: 24px 72px;
  593. }
  594. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon {
  595. cursor: pointer;
  596. margin-left: 8px;
  597. height: 24px;
  598. width: 24px;
  599. background-position: 0 0;
  600. }
  601. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.minimize {
  602. background-image: url(../../../../public/image/index/WindowUp.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.close {
  606. background-image: url(../../../../public/image/index/windowClose.png);
  607. background-size: 24px 72px;
  608. }
  609. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon:hover {
  610. background-position: 0px -24px;
  611. }
  612. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon:active {
  613. background-position: 0px -48px;
  614. }
  615. @media(-webkit-min-device-pixel-ratio: 1.5),
  616. (-o-min-device-pixel-ratio: 3/2),
  617. (min-resolution: 144dpi) {
  618. .synohdpack .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.toolbar {
  619. background-size: 24px 72px
  620. }
  621. }
  622. @media(-webkit-min-device-pixel-ratio: 1.5),
  623. (-o-min-device-pixel-ratio: 3/2),
  624. (min-resolution: 144dpi) {
  625. .synohdpackdebug .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.toolbar {
  626. background-size: 24px 72px;
  627. outline: 1px green dashed
  628. }
  629. }
  630. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.minimize {
  631. background-size: 24px 72px
  632. }
  633. @media(-webkit-min-device-pixel-ratio: 1.5),
  634. (-o-min-device-pixel-ratio: 3/2),
  635. (min-resolution: 144dpi) {
  636. .synohdpack .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.minimize {
  637. background-size: 24px 72px
  638. }
  639. }
  640. @media(-webkit-min-device-pixel-ratio: 1.5),
  641. (-o-min-device-pixel-ratio: 3/2),
  642. (min-resolution: 144dpi) {
  643. .synohdpackdebug.v-widget-item.v-widget-item-header.v-widget-item-header-tools.v-widget-item-header-tool-icon.minimize {
  644. background-size: 24px 72px;
  645. outline: 1px green dashed
  646. }
  647. }
  648. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.maximize {
  649. background-size: 24px 72px
  650. }
  651. @media(-webkit-min-device-pixel-ratio: 1.5),
  652. (-o-min-device-pixel-ratio: 3/2),
  653. (min-resolution: 144dpi) {
  654. .synohdpack .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.maximize {
  655. background-size: 24px 72px
  656. }
  657. }
  658. @media(-webkit-min-device-pixel-ratio: 1.5),
  659. (-o-min-device-pixel-ratio: 3/2),
  660. (min-resolution: 144dpi) {
  661. .synohdpackdebug .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.maximize {
  662. background-size: 24px 72px;
  663. outline: 1px green dashed
  664. }
  665. }
  666. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.close {
  667. background-size: 24px 72px
  668. }
  669. @media(-webkit-min-device-pixel-ratio: 1.5),
  670. (-o-min-device-pixel-ratio: 3/2),
  671. (min-resolution: 144dpi) {
  672. .synohdpack .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.close {
  673. background-size: 24px 72px
  674. }
  675. }
  676. @media(-webkit-min-device-pixel-ratio: 1.5),
  677. (-o-min-device-pixel-ratio: 3/2),
  678. (min-resolution: 144dpi) {
  679. .synohdpackdebug .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.close {
  680. background-size: 24px 72px;
  681. outline: 1px green dashed
  682. }
  683. }
  684. .syno-sysinfo-system-health .x-panel-body {
  685. background-color: transparent;
  686. }
  687. .syno-sysinfo-system-health .syno-sysinfo-system-health-status {
  688. height: 76px;
  689. width: 100%;
  690. padding-bottom: 4px;
  691. display: flex;
  692. align-items: center;
  693. }
  694. /* 系统状况 */
  695. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-west-normal,
  696. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-west-warning,
  697. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-west-initial,
  698. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-west-emergency {
  699. position: relative;
  700. margin: 8px 16px 8px 8px;
  701. width: 60px;
  702. height: 60px;
  703. background-image: url('../../../../public/image/index/minIcon.png');
  704. background-position: 0 -192px;
  705. background-repeat: no-repeat;
  706. }
  707. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-west-normal {
  708. background-position: 0 -192px;
  709. }
  710. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-content-wrap {
  711. display: flex;
  712. flex-direction: column;
  713. width: 212px;
  714. }
  715. .syno-sysinfo-health-text-overflow,
  716. .syno-sysinfo-system-health-south,
  717. .sys-info-south-table .x-table-layout-cell .syno-sysinfo-system-health-south-data,
  718. .sys-info-south-table .x-table-layout-cell .syno-sysinfo-system-health-south-title,
  719. .syno-sysinfo-system-health-content-header-warning,
  720. .syno-sysinfo-system-health-content-header-emergency,
  721. .syno-sysinfo-system-health-content-header-normal,
  722. .syno-sysinfo-system-health-content-header-initial {
  723. text-overflow: ellipsis;
  724. white-space: nowrap;
  725. overflow: hidden;
  726. }
  727. .syno-sysinfo-system-health-content-header-normal,
  728. .syno-sysinfo-system-health-content-header-initial {
  729. color: #009E05;
  730. }
  731. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-content-wrap .syno-sysinfo-system-health-summary {
  732. font-size: 20px;
  733. line-height: 28px;
  734. }
  735. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-content-wrap .syno-sysinfo-system-health-content {
  736. display: -webkit-box;
  737. -webkit-line-clamp: 2;
  738. -webkit-box-orient: vertical;
  739. overflow: hidden;
  740. line-height: 20px;
  741. max-height: 40px;
  742. font-size: 12px;
  743. }
  744. .sds-window-v5 .x-panel-body {
  745. background-color: transparent;
  746. }
  747. .syno-sysinfo-system-health .x-panel-body {
  748. background-color: transparent;
  749. }
  750. .sys-info-south-table {
  751. border: none;
  752. color: #414b55;
  753. }
  754. .sys-info-south-table .x-table-layout-ct {
  755. border: none;
  756. height: 84px !important;
  757. }
  758. .sys-info-south-table .x-table-layout {
  759. width: 296px !important;
  760. }
  761. .sys-info-south-table .x-table-layout-cell {
  762. height: 28px;
  763. line-height: 28px;
  764. }
  765. .sys-info-south-table .x-table-layout-cell .syno-sysinfo-system-health-south-title {
  766. width: 142px;
  767. padding-right: 6px;
  768. font-size: 12px;
  769. }
  770. .sys-info-south-table .sys-info-btn {
  771. border: none;
  772. background-image: none;
  773. background-color: transparent;
  774. }
  775. .sys-info-south-table .sys-info-btn .x-btn-text {
  776. color: #414b55;
  777. padding-left: 0px;
  778. font-size: 12px;
  779. }
  780. .sys-info-south-table .sys-info-btn,
  781. .sys-info-south-table .sys-info-btn .x-btn-text,
  782. .sys-info-south-table .x-table-layout-cell .syno-sysinfo-system-health-south-title {
  783. font-weight: 700;
  784. }
  785. .syno-cjk .sys-info-south-table .sys-info-btn,
  786. .sys-info-south-table .syno-cjk .sys-info-btn,
  787. .syno-cjk .sys-info-south-table .sys-info-btn .x-btn-text,
  788. .sys-info-south-table .sys-info-btn .syno-cjk .x-btn-text,
  789. .syno-cjk .sys-info-south-table .x-table-layout-cell .syno-sysinfo-system-health-south-title,
  790. .sys-info-south-table .x-table-layout-cell .syno-cjk .syno-sysinfo-system-health-south-title {
  791. font-weight: 600;
  792. }
  793. .syno-ux-button em.x-btn-arrow {
  794. display: block;
  795. padding-right: 12px;
  796. background-image: url("../../../../public/image/index/downArrow.png");
  797. background-repeat: no-repeat;
  798. background-position: right 2px;
  799. }
  800. .sys-info-south-table .row-left {
  801. padding-right: 6px;
  802. width: 148px;
  803. }
  804. .sys-info-south-table .x-table-layout-cell {
  805. height: 28px;
  806. line-height: 28px;
  807. }
  808. .sys-info-south-table .x-table-layout-cell .x-panel-body {
  809. border: none;
  810. }
  811. .resource-monitor-widget {
  812. padding: 4px 11px 5px 11px;
  813. }
  814. .x-panel {
  815. border-style: solid;
  816. border-width: 0;
  817. }
  818. /* 资源监控 */
  819. .resource-monitor-widget .resource-monitor-percentage-cmp .percentage-cmp-title {
  820. width: 86px;
  821. padding-right: 6px;
  822. float: left;
  823. line-height: 24px;
  824. color: #414b55;
  825. font-size: 12px;
  826. }
  827. .resource-monitor-widget .resource-monitor-percentage-cmp .percentage-cmp-hbar-background {
  828. background-color: rgba(34, 38, 54, 0.1);
  829. width: 160px;
  830. height: 8px;
  831. margin: 8px 0px;
  832. float: left;
  833. border-radius: 4px;
  834. overflow: hidden;
  835. }
  836. .resource-monitor-widget .resource-monitor-percentage-cmp .percentage-cmp-hbar-background .percentage-cmp-hbar-fill {
  837. width: 70px;
  838. height: 8px;
  839. background-color: #057FEB;
  840. -moz-transition-property: width;
  841. -o-transition-property: width;
  842. -webkit-transition-property: width;
  843. transition-property: width;
  844. -moz-transition-timing-function: ease-in;
  845. -o-transition-timing-function: ease-in;
  846. -webkit-transition-timing-function: ease-in;
  847. transition-timing-function: ease-in;
  848. -moz-transition-duration: 0.5s;
  849. -o-transition-duration: 0.5s;
  850. -webkit-transition-duration: 0.5s;
  851. transition-duration: 0.5s;
  852. }
  853. .resource-monitor-widget .resource-monitor-percentage-cmp .percentage-cmp-value {
  854. float: left;
  855. width: 34px;
  856. padding-left: 6px;
  857. line-height: 24px;
  858. font-size: 12px;
  859. }
  860. .resource-monitor-widget .resource-monitor-widget-subcmp-text,
  861. .resource-monitor-widget .resource-monitor-percentage-cmp,
  862. .resource-monitor-widget .resource-Monitor-networkio-cmp,
  863. .resource-monitor-widget .resource-Monitor-networkio-cmp .interface-selection-button.syno-ux-button .x-btn-arrow .x-btn-text {
  864. font-size: 13px;
  865. color: #414b55;
  866. line-height: 24px;
  867. }
  868. .resource-monitor-widget .resource-Monitor-networkio-cmp {
  869. float: left;
  870. height: 24px;
  871. }
  872. .resource-monitor-widget .resource-Monitor-networkio-cmp .networkio-cmp-icon.out {
  873. background-position: 0 0px;
  874. }
  875. .resource-monitor-widget .resource-Monitor-networkio-cmp .networkio-cmp-icon {
  876. background-image: url("../../../../public/image/index/upDown.png");
  877. background-repeat: no-repeat;
  878. background-position: center;
  879. width: 16px;
  880. height: 16px;
  881. padding: 0px;
  882. margin: 4px 0px 4px 6px;
  883. float: left;
  884. }
  885. .resource-monitor-widget .resource-Monitor-networkio-cmp .networkio-cmp-label.out {
  886. color: #057FEB;
  887. }
  888. .resource-monitor-widget .resource-Monitor-networkio-cmp .networkio-cmp-label {
  889. float: left;
  890. color: #09B3B3;
  891. height: 24px !important;
  892. line-height: 24px;
  893. padding: 0px 8px 0px 0px;
  894. font-size: 12px;
  895. }
  896. .resource-monitor-widget .resource-Monitor-networkio-cmp .networkio-cmp-icon.in {
  897. margin-left: 0px;
  898. background-position: 0 -16px;
  899. }
  900. .resource-monitor-widget .resource-Monitor-networkio-cmp .networkio-cmp-icon {
  901. background-image: url("../../../../public/image/index/upDown.png");
  902. background-repeat: no-repeat;
  903. background-position: center;
  904. width: 16px;
  905. height: 16px;
  906. padding: 0px;
  907. margin: 4px 0px 4px 6px;
  908. float: left;
  909. }
  910. .x-btn.interface-selection-button.x-btn-noicon {
  911. border: 0px;
  912. background-color: transparent;
  913. background-image: none;
  914. }
  915. .resource-monitor-widget .resource-Monitor-networkio-cmp .interface-selection-button.syno-ux-button .x-btn-arrow .x-btn-text {
  916. height: 24px;
  917. line-height: 24px;
  918. padding-left: 0px;
  919. font-size: 12px;
  920. max-width: 80px;
  921. white-space: nowrap;
  922. overflow: hidden;
  923. text-overflow: ellipsis;
  924. }
  925. .resource-Monitor-widget-base {
  926. width: 296px;
  927. }
  928. .resource-monitor-widget .resource-Monitor-widget-panel .echarts-wrapper {
  929. height: 92px;
  930. width: 296px;
  931. }
  932. /* 备份 */
  933. .syno-sds-backupapp-scedule-title,
  934. .syno-backup-task-main-page .syno-backup-task-status-panel .x-panel-body .task-status-text,
  935. .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,
  936. .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,
  937. .syno-backup-task-main-page .syno-backup-task-subpanel .x-panel-header .x-panel-header-text,
  938. .syno-backup-new-feature-panel .syno-backup-new-feature-panel-title,
  939. .syno-backup-new-feature-panel .syno-backup-learn-more-text,
  940. .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,
  941. .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,
  942. .syno-backup-restore-progress-window .syno-ux-fieldset .x-fieldset-header .x-fieldset-header-text,
  943. .syno-backup-client-common-customized-retention-setting-window .syno-backup-customized-retention-description,
  944. .syno-backup-client-common-filter-setting-window-body .syno-backup-client-common-filter-setting-panel .syno-backup-filter-setting-mask-text,
  945. .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,
  946. .syno-backup-client-common-statistic-window .syno-backup-statistic-panel .syno-backup-statistic-line-chart .empty-page-position .empty-page-parent .empty-page-text,
  947. .syno-backup-client-common-statistic-window .syno-backup-statistic-panel .syno-backup-statistic-line-chart .data-node-tooltip .title,
  948. .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,
  949. .syno-backup-client-common-source-info-panel .syno-backup-source-info-title,
  950. .syno-backup-client-common-source-usage-info .legend .legend-w .name,
  951. .syno-backup-client-explore .syno-sds-backup-filebrowser-treepanel .root_node a span,
  952. .syno-backup-client-explore .syno-sds-backup-filebrowser-treepanel .x-tree-node .root_node a span,
  953. .syno-backup-client-explore .syno-sds-backup-pathbar .x-btn-over .syno-sds-backup-pathbutton-text,
  954. .syno-backup-client-explore .syno-backup-timeline-wrapper .syno-backup-timeline-scroller ul .month-label,
  955. .syno-backup-client-explore .syno-backup-timeline-wrapper .syno-backup-timeline-scroller li.version-select .version-box .version-count,
  956. .syno-backup-client-explore .syno-backup-timeline-wrapper .syno-backup-timeline-scroller li.version-select .version-box .version-time,
  957. .syno-backup-client-explore .syno-backup-timeline-version-tag .syno-backup-timeline-version-tag-bubble span,
  958. .syno-backup-client-timeline-version-menu .syno-backup-timeline-version-ct .version-menu-header,
  959. .syno-backup-client-timeline-version-menu .syno-backup-timeline-version-ct table td.version-selected,
  960. .syno-sds-backup-client-jobtray.syno-sds-backup-jobtray-panel .jobtray-grid-panel .x-panel-header .x-panel-header-text {
  961. font-weight: 700;
  962. }
  963. .sds-widget-gridpanel .x-grid3 {
  964. background-color: transparent;
  965. }
  966. .sds-widget-gridpanel .arrow-scroller {
  967. position: absolute;
  968. top: 0px;
  969. right: 0px;
  970. width: 24px;
  971. bottom: 0px;
  972. margin: 2px;
  973. margin-right: 1px;
  974. }
  975. .sds-widget-gridpanel .arrow-scroller .up {
  976. height: 50%;
  977. cursor: pointer;
  978. }
  979. .sds-widget-gridpanel .arrow-scroller .up .arrow-up,
  980. .sds-widget-gridpanel .arrow-scroller .down .arrow-down {
  981. width: 24px;
  982. height: 24px;
  983. background-repeat: no-repeat;
  984. background-image: url(../../../../public/image/index/arrowhead.png);
  985. background-size: 48px 72px;
  986. }
  987. .sds-widget-gridpanel .arrow-scroller .up .arrow-up:hover,
  988. .sds-widget-gridpanel .arrow-scroller .down .arrow-down:hover {
  989. background-position: 0px -24px;
  990. }
  991. .sds-widget-gridpanel .arrow-scroller .up .arrow-up:active,
  992. .sds-widget-gridpanel .arrow-scroller .down .arrow-down:active {
  993. background-position: 0px -48px;
  994. }
  995. .sds-widget-gridpanel .arrow-scroller .up.arrow-disabled {
  996. cursor: default;
  997. }
  998. .sds-widget-gridpanel .arrow-scroller .up .arrow-up {
  999. background-position: -24px 0px;
  1000. }
  1001. .sds-widget-gridpanel .arrow-scroller .up .arrow-up {
  1002. position: absolute;
  1003. top: 0px;
  1004. }
  1005. .sds-widget-gridpanel .arrow-scroller .up.arrow-disabled .arrow-up {
  1006. background-position: -24px 0px !important;
  1007. opacity: 0.4;
  1008. }
  1009. .sds-widget-gridpanel .arrow-scroller .down .arrow-down {
  1010. background-position: 0px 0px;
  1011. }
  1012. .syno-sds-backupapp-widget-panel .x-grid3-row {
  1013. margin-bottom: 2px;
  1014. }
  1015. .sds-widget-gridpanel .arrow-scroller .down .arrow-down {
  1016. position: absolute;
  1017. bottom: 0px;
  1018. }
  1019. .sds-widget-gridpanel .arrow-scroller .down.arrow-disabled .arrow-down {
  1020. background-position: 0px 0px !important;
  1021. opacity: 0.4;
  1022. }
  1023. .sds-widget-gridpanel .x-grid3-row {
  1024. -webkit-text-size-adjust: none;
  1025. font-size: 12px;
  1026. border-width: 0;
  1027. background-color: transparent;
  1028. }
  1029. .sds-widget-gridpanel .x-grid3-row .x-grid3-td-bkpstatus .x-grid3-cell-inner {
  1030. height: 64px;
  1031. padding: 8px 0 8px 0;
  1032. }
  1033. .sds-widget-gridpanel .x-grid3-row .x-grid3-cell-inner {
  1034. line-height: 28px;
  1035. }
  1036. .syno-sds-backupapp-scedule-icon.no-result {
  1037. background-position: 0px -48px;
  1038. }
  1039. .syno-sds-backupapp-scedule-enable div {
  1040. text-overflow: ellipsis;
  1041. overflow: hidden;
  1042. }
  1043. .syno-sds-backupapp-scedule-icon {
  1044. background-image: url("../../../../public/image/index/wdgt_icn_scheduled_status.png");
  1045. width: 24px;
  1046. height: 24px;
  1047. float: left;
  1048. margin-right: 6px;
  1049. }
  1050. .syno-sds-backupapp-scedule-icon.schedule-inactive {
  1051. background-position: 0px -144px;
  1052. }
  1053. .syno-sds-backupapp-scedule-enable div {
  1054. text-overflow: ellipsis;
  1055. overflow: hidden;
  1056. }
  1057. .syno-sds-backupapp-scedule-title {
  1058. width: 134px;
  1059. float: left;
  1060. }
  1061. .syno-sds-backupapp-scedule-time {
  1062. width: 114px;
  1063. float: right;
  1064. text-align: right;
  1065. }
  1066. .syno-sds-backupapp-scedule-enable div {
  1067. text-overflow: ellipsis;
  1068. overflow: hidden;
  1069. }
  1070. /* 最新日志 */
  1071. .sds-widget-gridpanel .x-grid3-row {
  1072. -webkit-text-size-adjust: none;
  1073. font-size: 12px;
  1074. border-width: 0;
  1075. background-color: transparent;
  1076. }
  1077. .sds-widget-gridpanel .x-grid3-cell-inner {
  1078. text-overflow: ellipsis;
  1079. }
  1080. .sds-widget-gridpanel .x-grid3-row .x-grid3-cell-inner {
  1081. height: 28px;
  1082. padding: 0px;
  1083. line-height: 28px;
  1084. }
  1085. .sds-sysinfo-widget-icon,
  1086. .syno-sysinfo-file-change-log,
  1087. .sds-recentlog-loglevel,
  1088. .syno-crrentconn-icon {
  1089. background-image: url('../../../../public/image/index/minIcon.png');
  1090. background-position: 0 0;
  1091. background-repeat: no-repeat;
  1092. width: 24px;
  1093. height: 24px;
  1094. margin: 2px 6px 2px 7px;
  1095. float: left;
  1096. }
  1097. .log-info {
  1098. color: #414b55;
  1099. }
  1100. .sds-recentlog-loglevel.log-info {
  1101. background-position: 0 -24px;
  1102. }
  1103. /* 计划的任务 */
  1104. .syno-taskscheduler-enable-taskicon,
  1105. .syno-taskscheduler-disable-taskicon {
  1106. background-image: url("../../../../public/image/index/wdgt_icn_items.png");
  1107. width: 24px;
  1108. height: 24px;
  1109. margin: 2px 6px 2px 7px;
  1110. float: left;
  1111. background-position: 0 -144px;
  1112. }
  1113. /* 已连接用户 */
  1114. .syno-crrentconn-split {
  1115. background-image: url('../../../../public/image/index/minIcon.png');
  1116. background-position: 0 -372px;
  1117. width: 2px;
  1118. height: 28px;
  1119. float: left;
  1120. }
  1121. .syno-sysinfo-disconn-button ,.syno-sysinfo-conn-button {
  1122. background-image: url('../../../../public/image/index/minIcon.png') !important;
  1123. background-position: -2px -372px;
  1124. width: 24px;
  1125. height: 24px;
  1126. cursor: pointer;
  1127. margin: 2px 8px 2px 8px;
  1128. }
  1129. .syno-sysinfo-conn-button {
  1130. background-position: 34px -372px;
  1131. }
  1132. .syno-sysinfo-disconn-button:hover{
  1133. background-position: -2px -396px;
  1134. }
  1135. .syno-sysinfo-disconn-button:active{
  1136. background-position: -2px -420px;
  1137. }
  1138. .syno-sysinfo-conn-button:hover{
  1139. background-position: 34px -396px;
  1140. }
  1141. .syno-sysinfo-conn-button:active{
  1142. background-position: 34px -420px;
  1143. }
  1144. /* 存储 */
  1145. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .x-grid3-cell-inner {
  1146. height: 82px !important;
  1147. }
  1148. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box {
  1149. margin: 0 8px 0px 10px;
  1150. padding-top: 8px;
  1151. padding-bottom: 8px;
  1152. height: 64px;
  1153. }
  1154. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .icon-block {
  1155. position: relative;
  1156. display: inline-block;
  1157. width: 40px;
  1158. height: 64px;
  1159. margin-right: 18px;
  1160. }
  1161. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .icon-block .icon-volume-img {
  1162. position: absolute;
  1163. width: 40px;
  1164. height: 40px;
  1165. top: 9px;
  1166. background-image: url("../../../../public/image/index/wdgt_icn_volume.png");
  1167. }
  1168. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .icon-block .icon-volume-status {
  1169. position: absolute;
  1170. width: 24px;
  1171. height: 24px;
  1172. top: 31px;
  1173. left: 22px;
  1174. background-image: url('../../../../public/image/index/minIcon.png');
  1175. background-position: -26px -372px;
  1176. }
  1177. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block {
  1178. display: inline-block;
  1179. font-size: 12px;
  1180. vertical-align: top;
  1181. position: relative;
  1182. width: 200px;
  1183. }
  1184. .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 {
  1185. font-weight: 700;
  1186. }
  1187. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block .volume-name-status {
  1188. line-height: 24px;
  1189. color: #414b55;
  1190. }
  1191. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block .usage-bar-container {
  1192. position: relative;
  1193. height: 20px;
  1194. }
  1195. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block .usage-bar-container .usage-bar-bg {
  1196. position: absolute;
  1197. top: 6px;
  1198. width: 200px;
  1199. height: 8px;
  1200. background-color: rgba(34, 38, 54, 0.1);
  1201. border-radius: 4px;
  1202. overflow: hidden;
  1203. }
  1204. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block .usage-bar-container .usage-bar-fill {
  1205. height: 8px;
  1206. background-color: #057FEB;
  1207. }
  1208. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block .usage-text {
  1209. line-height: 20px;
  1210. color: #414b55;
  1211. }
  1212. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block .usage-text .usage-used-text {
  1213. color: #057FEB;
  1214. }
  1215. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block .usage-ratio-text {
  1216. position: absolute;
  1217. right: 0;
  1218. bottom: 0;
  1219. line-height: 20px;
  1220. color: #414b55;
  1221. }
  1222. /* 空固定窗 */
  1223. .v-widget-list .v-widget-list-empty{
  1224. margin: auto;
  1225. }
  1226. .v-widget-list .v-widget-list-empty .v-widget-list-empty-img {
  1227. margin: auto;
  1228. height: 120px;
  1229. width: 120px;
  1230. background-image: url(../../../image/index/fixWindowEmpty.png);
  1231. background-size: 120px 120px;
  1232. }
  1233. .v-widget-list .v-widget-list-empty .v-widget-list-empty-content {
  1234. margin-top: 10px;
  1235. color: #96a0aa;
  1236. line-height: 24px;
  1237. }
  1238. /* 侧边滑动栏 */
  1239. .v-widget-window .v-ps .ps__rail-y {
  1240. opacity: 1;
  1241. }
  1242. .v-widget-window .v-ps .ps__rail-y .ps__thumb-y {
  1243. right: 2px;
  1244. background-color: rgba(255, 255, 255, 0.3);
  1245. }
  1246. .v-widget-window .v-ps {
  1247. padding-right: 0;
  1248. }
  1249. .v-ps .ps__rail-x:hover>.ps__thumb-x,
  1250. .v-ps .ps__rail-x:focus>.ps__thumb-x,
  1251. .v-ps .ps__rail-x.ps--clicking.ps__thumb-x {
  1252. background-color: rgba(255, 255, 255, 0.8)
  1253. }
  1254. .v-ps .ps__rail-y:hover>.ps__thumb-y,
  1255. .v-ps .ps__rail-y:focus>.ps__thumb-y,
  1256. .v-ps .ps__rail-y.ps--clicking.ps__thumb-y {
  1257. background-color: rgba(255, 255, 255, 0.8)
  1258. }
  1259. @media screen and (max-height: 456px){
  1260. #sds-desktop .v-widget-window .v-widget-items-wrapper{
  1261. height: calc(100vh - 42px) !important;
  1262. }
  1263. #sds-desktop .v-widget-window{
  1264. height: calc(100vh - 10px) !important;
  1265. }
  1266. }
  1267. /* 套件中心弹出框 */
  1268. /* .tjDetail{
  1269. display: none;
  1270. } */
  1271. .sds-window-v5 .x-tool-help {
  1272. background-image: url("../../../image/index//wdheader_bt_help.png");
  1273. }
  1274. .sds-window-v5 .x-tool-restore {
  1275. background-image: url("../../../image/index/windowRestore.png");
  1276. }
  1277. .sds-window-v5.x-window .x-toolbar-cell .x-btn {
  1278. margin: 0px;
  1279. }
  1280. .synopkg-icon-btn .synopkg-btn-icon {
  1281. width: 24px !important;
  1282. height: 24px !important;
  1283. padding: 0 !important;
  1284. margin: 2px 3px !important;
  1285. }
  1286. .synopkg-icon-btn {
  1287. height: 28px !important;
  1288. width: 30px !important;
  1289. background: rgba(198,212,224,0.4);
  1290. border-radius: 3px;
  1291. border: none;
  1292. }
  1293. .synopkg-toolbar .synopkg-toolbar-back-btn {
  1294. margin: 0 !important;
  1295. border-right: 1px solid rgba(198,212,224,0.9);
  1296. border-radius: 3px 0 0 3px;
  1297. }
  1298. .synopkg-toolbar .synopkg-toolbar-next-btn {
  1299. border-radius: 0 3px 3px 0;
  1300. }
  1301. .synopkg-toolbar .synopkg-toolbar-back-btn.x-item-disabled {
  1302. border-right: 1px solid rgba(198,212,224,0.5);
  1303. }
  1304. .sds-window-v5 .x-tool-minimize {
  1305. background-image: url("../../../image/index/wdheader_bt_minimize.png");
  1306. }
  1307. .synopkg-toolbar .synopkg-toolbar-back-btn .synopkg-toolbar-back-icon {
  1308. background-image: url('../../../image/index/sprite-s19f0e38f3d.png');
  1309. background-position: 0 -248px;
  1310. }
  1311. .synopkg-toolbar .synopkg-toolbar-next-btn .synopkg-toolbar-next-icon {
  1312. background-image: url('../../../image/index/sprite-s19f0e38f3d.png');
  1313. background-position: 0 -296px;
  1314. }
  1315. .synopkg-toolbar .synopkg-toolbar-refresh-icon {
  1316. background-image: url('../../../image/index/sprite-s19f0e38f3d.png');
  1317. background-position: 10px 0;
  1318. }
  1319. .synopkg-toolbar .syno-ux-textfilter {
  1320. width: 100%;
  1321. }
  1322. /* 选择固定窗口的子窗口 */
  1323. .v-menu .v-menu-item-select-selected .v-icon {
  1324. background-image: url(../../../image/index/select.png);
  1325. }