style.css 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460
  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. /*
  37. body::-webkit-scrollbar {
  38. display: none;
  39. } */
  40. button,
  41. [type=button],
  42. [type=reset],
  43. [type=submit] {
  44. -webkit-appearance: button;
  45. }
  46. button,
  47. select {
  48. text-transform: none;
  49. }
  50. ul {
  51. list-style: none;
  52. padding: 0;
  53. margin: 0;
  54. }
  55. ul li {
  56. margin: 0;
  57. padding: 0;
  58. }
  59. li {
  60. display: list-item;
  61. text-align: -webkit-match-parent;
  62. }
  63. body,
  64. .container {
  65. width: 100%;
  66. height: 100%;
  67. background-image: url("../../../../public/image/index/bigBackground.jpg");
  68. background-color: transparent;
  69. background-position: center center;
  70. background-repeat: no-repeat;
  71. background-size: cover;
  72. }
  73. body,
  74. .normal-font,
  75. .sds-window-v5 .ext-el-mask-msg .x-loading-message-inner,
  76. .sds-window-v5.x-window-dlg,
  77. .sds-window-v5.x-window-dlg input,
  78. .sds-window-v5.x-window-dlg textarea {
  79. color: #414b55;
  80. }
  81. .container {
  82. width: 100%;
  83. height: 100%;
  84. }
  85. /* 头部 */
  86. .taskbar-wrapper {
  87. position: absolute;
  88. z-index: 5;
  89. opacity: 1;
  90. top: 0px;
  91. width: 100%;
  92. height: 39px;
  93. display: flex;
  94. flex-direction: row;
  95. }
  96. .taskbar-wrapper .taskbar-left-wrapper {
  97. background-color: rgba(50, 60, 70, 0.9);
  98. box-shadow: 0px 1px 2px rgba(10, 20, 30, 0.5);
  99. border: 1px solid rgba(255, 255, 255, 0.1);
  100. border-top-width: 0px;
  101. height: 38px;
  102. margin: 0 6px 0px 160px;
  103. border-radius: 0px 0px 3px 3px;
  104. flex: 0 0 auto;
  105. }
  106. .show-all-button {
  107. cursor: pointer;
  108. top: 0;
  109. float: left;
  110. display: block;
  111. width: 17px;
  112. height: 36px;
  113. position: relative;
  114. border: 1px solid transparent;
  115. border-radius: 0px 0px 0px 2px;
  116. background-color: transparent;
  117. padding: 0;
  118. border: none;
  119. }
  120. .show-all-button::after {
  121. content: '';
  122. position: absolute;
  123. top: -1px;
  124. right: -1px;
  125. bottom: -1px;
  126. border-right: 1px solid rgba(255, 255, 255, 0.25);
  127. }
  128. .show-all-button::before {
  129. cursor: pointer;
  130. content: ' ';
  131. display: block;
  132. width: 16px;
  133. top: -1px;
  134. bottom: -1px;
  135. left: -18px;
  136. position: absolute;
  137. }
  138. .start-button {
  139. height: 39px;
  140. width: 77px;
  141. display: flex;
  142. align-items: center;
  143. justify-content: center;
  144. cursor: pointer;
  145. }
  146. .start-button .start-button-img {
  147. background-image: url(../../../../public/image/index/menu.png);
  148. background-size: 24px 72px;
  149. width: 24px;
  150. height: 24px;
  151. cursor: pointer;
  152. background-color: transparent;
  153. padding: 0;
  154. border: none;
  155. }
  156. .start-button:hover .start-button-img,
  157. .start-button .start-button-img:hover {
  158. background-position: 0 -24px;
  159. }
  160. .start-button:active .start-button-img,
  161. .start-button .start-button-img:active,
  162. .start-button .start-button-img.pressed {
  163. background-position: 0 -48px;
  164. }
  165. .sds-notify-badge-num {
  166. width: 10px;
  167. height: 10px;
  168. overflow: hidden;
  169. cursor: pointer;
  170. display: inline-block;
  171. position: absolute;
  172. pointer-events: none;
  173. box-shadow: 0 1px 4px 0 rgba(46, 48, 50, 0.6);
  174. border-radius: 5px;
  175. display: none;
  176. }
  177. .taskbar-buttons-container {
  178. min-width: 150px;
  179. height: 39px;
  180. padding-right: 8px;
  181. flex: 1 1 auto;
  182. display: flex;
  183. flex-direction: row;
  184. white-space: nowrap;
  185. overflow: hidden;
  186. }
  187. .taskbar-buttons-container .taskbar-buttons-wrapper {
  188. background-color: rgba(50, 60, 70, 0.9);
  189. box-shadow: 0px 1px 2px rgba(10, 20, 30, 0.5);
  190. border: 1px solid rgba(255, 255, 255, 0.1);
  191. border-top-width: 0px;
  192. height: 39px;
  193. background-color: rgba(50, 60, 70, 0.9);
  194. display: inline-flex;
  195. vertical-align: top;
  196. width: auto;
  197. border-radius: 0 0 5px 5px;
  198. }
  199. .tray-container {
  200. background-color: rgba(50, 60, 70, 0.9);
  201. box-shadow: 0px 1px 2px rgba(10, 20, 30, 0.5);
  202. border: 1px solid rgba(255, 255, 255, 0.1);
  203. border-top-width: 0px;
  204. height: 39px;
  205. border-radius: 0 0 3px 3px;
  206. box-sizing: border-box;
  207. display: flex;
  208. flex: 0 0 auto;
  209. padding: 0 8px 0 8px;
  210. margin-right: 12px;
  211. }
  212. .tray-container .system-tray-wrapper {
  213. display: flex;
  214. flex: 0 0 auto;
  215. }
  216. .tray-item {
  217. position: relative;
  218. cursor: pointer;
  219. background-repeat: no-repeat;
  220. background-position: 0 0;
  221. background-color: transparent;
  222. padding: 0;
  223. border: none;
  224. }
  225. .tray-item.system {
  226. width: 24px;
  227. height: 24px;
  228. margin: 7px 8px 0px 8px;
  229. }
  230. .tray-item.system:hover {
  231. background-position: 0 -24px;
  232. }
  233. .tray-item.system:active,
  234. .tray-item.system.pressed {
  235. background-position: 0 -48px;
  236. }
  237. .tray-container .notify-button {
  238. background-image: url(../../../../public/image/index/message.png);
  239. background-size: 24px 72px;
  240. }
  241. .tray-container .user-button {
  242. background-image: url(../../../../public/image/index/user.png);
  243. background-size: 24px 72px;
  244. }
  245. .tray-container .widget-button {
  246. background-image: url(../../../../public/image/index/widget.png);
  247. background-size: 24px 72px;
  248. }
  249. .tray-container .search-button {
  250. background-image: url(../../../../public/image/index/search.png);
  251. background-size: 24px 72px;
  252. }
  253. .tray-notify-badge {
  254. width: 10px;
  255. height: 10px;
  256. bottom: 0;
  257. right: 0;
  258. overflow: hidden;
  259. cursor: pointer;
  260. display: inline-block;
  261. position: absolute;
  262. pointer-events: none;
  263. background: #FF3737;
  264. box-shadow: 0 1px 4px 0 rgba(46,48,50,0.6);
  265. border-radius: 5px;
  266. }
  267. /* 桌面 */
  268. #sds-desktop {
  269. opacity: 1;
  270. overflow: hidden;
  271. position: absolute;
  272. width: 100%;
  273. height: 100%;
  274. border: 0 none;
  275. overflow: hidden;
  276. cursor: default;
  277. zoom: 1;
  278. top: 0;
  279. }
  280. .menu.sds-desktop{
  281. position: absolute;
  282. width: 120px;
  283. height: 100%;
  284. z-index: 6;
  285. }
  286. .menu.sds-desktop ul{
  287. width: 100px;
  288. text-align: center;
  289. }
  290. .menu.sds-desktop ul li{
  291. background-color: rgba(50,60,70,0.9);
  292. padding: 10px 25px;
  293. box-sizing: border-box;
  294. }
  295. .menu.sds-desktop ul li div{
  296. background-position: center;
  297. background-repeat: no-repeat;
  298. background-size: 24px 24px;
  299. width: 50px;
  300. height: 50px;
  301. }
  302. ul.sds-desktop-shortcut {
  303. position: absolute;
  304. float: left;
  305. top: 41px;
  306. left: 120px;
  307. width: 100%;
  308. height: calc(100% - 41px);
  309. padding: 10px 10px 10px 4px;
  310. box-sizing: border-box;
  311. }
  312. .sds-desktop-layout {
  313. width: 100%;
  314. height: 100%;
  315. display: flex;
  316. flex-direction: column;
  317. flex-wrap: wrap;
  318. justify-content: left;
  319. align-content: flex-start;
  320. }
  321. .launch-icon {
  322. width: 132px;
  323. height: 104px;
  324. float: left;
  325. overflow: visible;
  326. cursor: pointer;
  327. list-style-type: none;
  328. }
  329. .launch-icon .image {
  330. width: 64px;
  331. height: 64px;
  332. background-size: 64px 64px;
  333. position: relative;
  334. background-position: center center;
  335. background-repeat: no-repeat;
  336. margin: 0 auto 4px auto;
  337. }
  338. .launch-icon .sds-application-notify-badge-num {
  339. width: 14px;
  340. height: 14px;
  341. bottom: -1px;
  342. right: -2px;
  343. z-index: 0;
  344. }
  345. .sds-application-notify-badge-num {
  346. display: inline-block;
  347. background: #FF3737;
  348. box-shadow: 0 1px 4px 0 rgba(46, 48, 50, 0.6);
  349. border-radius: 100px;
  350. min-width: 12px;
  351. min-height: 12px;
  352. overflow: hidden;
  353. z-index: 3;
  354. pointer-events: none;
  355. box-sizing: border-box;
  356. right: -4px;
  357. bottom: -2px;
  358. position: absolute;
  359. }
  360. .launch-icon.icon-item .text {
  361. height: 36px;
  362. overflow: hidden;
  363. }
  364. .launch-icon .text,
  365. .launch-icon .text a {
  366. text-shadow: 0em 0.1em 0.2em rgba(0, 0, 0, 0.8);
  367. width: 100%;
  368. font-size: 12px;
  369. line-height: 18px;
  370. text-align: center;
  371. margin: 0 auto;
  372. overflow: visible;
  373. text-overflow: ellipsis;
  374. color: #fff;
  375. }
  376. .x-window {
  377. zoom: 1;
  378. }
  379. .x-window-proxy {
  380. border: 0px solid;
  381. z-index: 12000;
  382. overflow: hidden;
  383. position: absolute;
  384. left: 0;
  385. top: 0;
  386. display: none;
  387. opacity: .5;
  388. -moz-opacity: .5;
  389. filter: alpha(opacity=50);
  390. }
  391. .sds-window-v5 {
  392. box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.6);
  393. border-radius: 3px;
  394. overflow: hidden;
  395. }
  396. .ext-webkit .x-dlg-focus {
  397. width: 1px;
  398. height: 1px;
  399. }
  400. .sds-window-v5 .x-tool-close {
  401. background-image: url("../../../../public/image/index/windowClose.png");
  402. background-position: 0 0;
  403. }
  404. .sds-window-v5 .x-tool {
  405. width: 24px;
  406. height: 24px;
  407. margin-left: 8px;
  408. }
  409. .sds-window-v5 .x-tool-restore {
  410. background-image: url("../../../../public/image/index/windowRestore.png");
  411. background-position: 0 0;
  412. }
  413. .x-tool-restore {
  414. background-position: 0 -45px;
  415. }
  416. .sds-window-v5 .x-tool-maximize {
  417. background-image: url("../../../../public/image/index/windowMaximize.png");
  418. background-position: 0 0;
  419. }
  420. .x-tool-maximize {
  421. background-position: 0 -30px;
  422. }
  423. /* 右侧固定栏 */
  424. .v-widget-header .v-widget-header-tool-icon.add {
  425. background-image: url(../../../../public/image/index/windowAdd.png);
  426. background-size: 24px 72px;
  427. }
  428. .v-widget-header .v-widget-header-tool-icon.minimize {
  429. background-image: url(../../../../public/image/index/windowReduce.png);
  430. background-size: 24px 72px;
  431. }
  432. .v-widget-header .v-widget-header-tool-icon.pin {
  433. background-image: url(../../../../public/image/index/windowFixed.png);
  434. background-size: 24px 72px;
  435. }
  436. .v-widget-header .v-widget-header-tool-icon.dock {
  437. background-image: url(../../../../public/image/index/windowPosition.png);
  438. background-size: 24px 72px;
  439. }
  440. .v-widget-header .v-widget-header-tool-icon {
  441. cursor: pointer;
  442. height: 24px;
  443. width: 24px;
  444. background-position: 0 0;
  445. }
  446. .v-widget-header .v-widget-header-tool-icon:hover,
  447. .v-widget-header .v-widget-header-tool-icon.hover {
  448. background-position: 0px -24px;
  449. }
  450. .v-widget-header .v-widget-header-tool-icon:active,
  451. .v-widget-header .v-widget-header-tool-icon.active {
  452. background-position: 0px -48px;
  453. }
  454. .v-window {
  455. overflow: hidden;
  456. box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .6);
  457. border-radius: 3px;
  458. display: flex;
  459. flex-direction: column;
  460. background-color: #fff;
  461. }
  462. .v-widget-window {
  463. background: rgba(40, 50, 60, 0.85);
  464. box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.5);
  465. transition: top ease-in 0.2s, left ease-in 0.2s;
  466. }
  467. .v-widget-window.move{
  468. opacity: 0.5;
  469. }
  470. .v-window-draggable .v-window-header-wrapper,
  471. .v-window .v-window-header-wrapper {
  472. flex: 0 0 auto;
  473. display: flex;
  474. -webkit-user-select: none;
  475. -moz-user-select: none;
  476. user-select: none;
  477. cursor: default;
  478. border-top-right-radius: 3px;
  479. border-top-left-radius: 3px;
  480. background-color: #fff;
  481. position: relative;
  482. padding: 8px 0 0 18px;
  483. height: 40px;
  484. line-height: 40px;
  485. box-sizing: border-box;
  486. border-bottom: 1px solid rgba(198, 212, 224, .5);
  487. }
  488. .v-widget-window .v-window-header-wrapper {
  489. height: 32px;
  490. border: none;
  491. padding: 0;
  492. background: none;
  493. }
  494. .v-window .draggable.v-window-header-wrapper {
  495. cursor: move;
  496. }
  497. .v-widget-header {
  498. padding: 0 10px;
  499. display: flex;
  500. align-items: center;
  501. justify-content: space-between;
  502. width: 100%;
  503. }
  504. .v-widget-header .v-widget-header-left,
  505. .v-widget-header .v-widget-header-right {
  506. display: flex;
  507. }
  508. .v-widget-header .v-btn.v-btn-dropdown span {
  509. padding: 0;
  510. }
  511. .v-widget-header .v-widget-header-right .v-widget-header-tool-icon {
  512. margin-left: 8px;
  513. }
  514. .v-widget-header .v-btn.v-btn-dropdown {
  515. height: 24px;
  516. }
  517. .v-widget-window .v-window-body {
  518. background: none;
  519. }
  520. .v-widget-window .v-widget-items-wrapper {
  521. height: 100%;
  522. padding-bottom: 10px;
  523. box-sizing: border-box;
  524. }
  525. .v-widget-window .v-ps {
  526. padding-right: 0;
  527. }
  528. .v-widget-item {
  529. display: none;
  530. box-sizing: border-box;
  531. background: rgba(255, 255, 255, 0.95);
  532. margin-left: 10px;
  533. margin-right: 10px;
  534. border: 1px solid rgba(40, 50, 60, 0.3);
  535. border-radius: 3px;
  536. padding-bottom: 4px;
  537. height: 208px;
  538. box-shadow: none;
  539. overflow: hidden;
  540. transition: height ease-in 0.2s;
  541. }
  542. .v-widget-window .v-ps.show {
  543. padding-right: 4px;
  544. }
  545. .v-widget-list {
  546. display: flex;
  547. flex-direction: column;
  548. width: 340px;
  549. position: relative;
  550. min-height: 100%;
  551. }
  552. .v-widget-item.active {
  553. display: block;
  554. }
  555. .v-widget-item.active~.v-widget-item.active {
  556. margin-top: 8px;
  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 {
  568. font-weight: 700;
  569. }
  570. .v-widget-item .v-widget-item-header .v-widget-item-header-icon {
  571. width: 32px;
  572. height: 32px;
  573. margin-top: 1px;
  574. margin-bottom: 2px;
  575. margin-right: 2px;
  576. cursor: pointer;
  577. }
  578. .v-widget-item .v-widget-item-header .v-widget-item-header-title {
  579. align-self: center;
  580. font-size: 1em;
  581. flex: 1;
  582. }
  583. .v-widget-item .v-widget-item-header {
  584. cursor: move;
  585. display: flex;
  586. align-items: start;
  587. height: 35px;
  588. margin-left: 3px;
  589. margin-right: 5px;
  590. font-size: 12px;
  591. }
  592. .v-widget-item .v-widget-item-header:hover .v-widget-item-header-tools {
  593. opacity: 1
  594. }
  595. .v-widget-item .v-widget-item-header .v-widget-item-header-title {
  596. align-self: center;
  597. font-size: 1em;
  598. flex: 1;
  599. }
  600. .v-widget-item .v-widget-item-header .v-widget-item-header-title .v-widget-item-header-title-text {
  601. cursor: pointer;
  602. }
  603. .v-widget-item .v-widget-item-header .v-widget-item-header-tools {
  604. justify-content: flex-end;
  605. display: flex;
  606. margin-top: 5px;
  607. margin-bottom: 6px;
  608. transition: opacity 0.2s;
  609. opacity: 0;
  610. }
  611. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.toolbar {
  612. background-image: url(../../../../public/image/index/windowMove.png);
  613. background-size: 24px 72px;
  614. }
  615. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon {
  616. cursor: pointer;
  617. margin-left: 8px;
  618. height: 24px;
  619. width: 24px;
  620. background-position: 0 0;
  621. }
  622. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.minimize {
  623. background-image: url(../../../../public/image/index/WindowUp.png);
  624. background-size: 24px 72px;
  625. }
  626. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.close {
  627. background-image: url(../../../../public/image/index/windowClose.png);
  628. background-size: 24px 72px;
  629. }
  630. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon:hover {
  631. background-position: 0px -24px;
  632. }
  633. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon:active {
  634. background-position: 0px -48px;
  635. }
  636. @media(-webkit-min-device-pixel-ratio: 1.5),
  637. (-o-min-device-pixel-ratio: 3/2),
  638. (min-resolution: 144dpi) {
  639. .synohdpack .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.toolbar {
  640. background-size: 24px 72px
  641. }
  642. }
  643. @media(-webkit-min-device-pixel-ratio: 1.5),
  644. (-o-min-device-pixel-ratio: 3/2),
  645. (min-resolution: 144dpi) {
  646. .synohdpackdebug .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.toolbar {
  647. background-size: 24px 72px;
  648. outline: 1px green dashed
  649. }
  650. }
  651. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.minimize {
  652. background-size: 24px 72px
  653. }
  654. @media(-webkit-min-device-pixel-ratio: 1.5),
  655. (-o-min-device-pixel-ratio: 3/2),
  656. (min-resolution: 144dpi) {
  657. .synohdpack .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.minimize {
  658. background-size: 24px 72px
  659. }
  660. }
  661. @media(-webkit-min-device-pixel-ratio: 1.5),
  662. (-o-min-device-pixel-ratio: 3/2),
  663. (min-resolution: 144dpi) {
  664. .synohdpackdebug.v-widget-item.v-widget-item-header.v-widget-item-header-tools.v-widget-item-header-tool-icon.minimize {
  665. background-size: 24px 72px;
  666. outline: 1px green dashed
  667. }
  668. }
  669. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.maximize {
  670. background-size: 24px 72px
  671. }
  672. @media(-webkit-min-device-pixel-ratio: 1.5),
  673. (-o-min-device-pixel-ratio: 3/2),
  674. (min-resolution: 144dpi) {
  675. .synohdpack .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.maximize {
  676. background-size: 24px 72px
  677. }
  678. }
  679. @media(-webkit-min-device-pixel-ratio: 1.5),
  680. (-o-min-device-pixel-ratio: 3/2),
  681. (min-resolution: 144dpi) {
  682. .synohdpackdebug .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.maximize {
  683. background-size: 24px 72px;
  684. outline: 1px green dashed
  685. }
  686. }
  687. .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.close {
  688. background-size: 24px 72px
  689. }
  690. @media(-webkit-min-device-pixel-ratio: 1.5),
  691. (-o-min-device-pixel-ratio: 3/2),
  692. (min-resolution: 144dpi) {
  693. .synohdpack .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.close {
  694. background-size: 24px 72px
  695. }
  696. }
  697. @media(-webkit-min-device-pixel-ratio: 1.5),
  698. (-o-min-device-pixel-ratio: 3/2),
  699. (min-resolution: 144dpi) {
  700. .synohdpackdebug .v-widget-item .v-widget-item-header .v-widget-item-header-tools .v-widget-item-header-tool-icon.close {
  701. background-size: 24px 72px;
  702. outline: 1px green dashed
  703. }
  704. }
  705. .syno-sysinfo-system-health .x-panel-body {
  706. background-color: transparent;
  707. }
  708. .syno-sysinfo-system-health .syno-sysinfo-system-health-status {
  709. height: 76px;
  710. width: 100%;
  711. padding-bottom: 4px;
  712. display: flex;
  713. align-items: center;
  714. }
  715. /* 系统状况 */
  716. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-west-normal,
  717. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-west-warning,
  718. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-west-initial,
  719. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-west-emergency {
  720. position: relative;
  721. margin: 8px 16px 8px 8px;
  722. width: 60px;
  723. height: 60px;
  724. background-image: url('../../../../public/image/index/minIcon.png');
  725. background-position: 0 -192px;
  726. background-repeat: no-repeat;
  727. }
  728. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-west-normal {
  729. background-position: 0 -192px;
  730. }
  731. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-content-wrap {
  732. display: flex;
  733. flex-direction: column;
  734. width: 212px;
  735. }
  736. .syno-sysinfo-health-text-overflow,
  737. .syno-sysinfo-system-health-south,
  738. .sys-info-south-table .x-table-layout-cell .syno-sysinfo-system-health-south-data,
  739. .sys-info-south-table .x-table-layout-cell .syno-sysinfo-system-health-south-title,
  740. .syno-sysinfo-system-health-content-header-warning,
  741. .syno-sysinfo-system-health-content-header-emergency,
  742. .syno-sysinfo-system-health-content-header-normal,
  743. .syno-sysinfo-system-health-content-header-initial {
  744. text-overflow: ellipsis;
  745. white-space: nowrap;
  746. overflow: hidden;
  747. }
  748. .syno-sysinfo-system-health-content-header-normal,
  749. .syno-sysinfo-system-health-content-header-initial {
  750. color: #009E05;
  751. }
  752. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-content-wrap .syno-sysinfo-system-health-summary {
  753. font-size: 20px;
  754. line-height: 28px;
  755. }
  756. .syno-sysinfo-system-health .syno-sysinfo-system-health-status .syno-sysinfo-system-health-content-wrap .syno-sysinfo-system-health-content {
  757. display: -webkit-box;
  758. -webkit-line-clamp: 2;
  759. -webkit-box-orient: vertical;
  760. overflow: hidden;
  761. line-height: 20px;
  762. max-height: 40px;
  763. font-size: 12px;
  764. }
  765. .sds-window-v5 .x-panel-body {
  766. background-color: transparent;
  767. }
  768. .syno-sysinfo-system-health .x-panel-body {
  769. background-color: transparent;
  770. }
  771. .sys-info-south-table {
  772. border: none;
  773. color: #414b55;
  774. }
  775. .sys-info-south-table .x-table-layout-ct {
  776. border: none;
  777. height: 84px !important;
  778. }
  779. .sys-info-south-table .x-table-layout {
  780. width: 296px !important;
  781. }
  782. .sys-info-south-table .x-table-layout-cell {
  783. height: 28px;
  784. line-height: 28px;
  785. }
  786. .sys-info-south-table .x-table-layout-cell .syno-sysinfo-system-health-south-title {
  787. width: 142px;
  788. padding-right: 6px;
  789. font-size: 12px;
  790. }
  791. .sys-info-south-table .sys-info-btn {
  792. border: none;
  793. background-image: none;
  794. background-color: transparent;
  795. }
  796. .sys-info-south-table .sys-info-btn .x-btn-text {
  797. color: #414b55;
  798. padding-left: 0px;
  799. font-size: 12px;
  800. }
  801. .sys-info-south-table .sys-info-btn,
  802. .sys-info-south-table .sys-info-btn .x-btn-text,
  803. .sys-info-south-table .x-table-layout-cell .syno-sysinfo-system-health-south-title {
  804. font-weight: 700;
  805. }
  806. .syno-cjk .sys-info-south-table .sys-info-btn,
  807. .sys-info-south-table .syno-cjk .sys-info-btn,
  808. .syno-cjk .sys-info-south-table .sys-info-btn .x-btn-text,
  809. .sys-info-south-table .sys-info-btn .syno-cjk .x-btn-text,
  810. .syno-cjk .sys-info-south-table .x-table-layout-cell .syno-sysinfo-system-health-south-title,
  811. .sys-info-south-table .x-table-layout-cell .syno-cjk .syno-sysinfo-system-health-south-title {
  812. font-weight: 600;
  813. }
  814. .syno-ux-button em.x-btn-arrow {
  815. display: block;
  816. padding-right: 12px;
  817. background-image: url("../../../../public/image/index/downArrow.png");
  818. background-repeat: no-repeat;
  819. background-position: right 2px;
  820. }
  821. .sys-info-south-table .row-left {
  822. padding-right: 6px;
  823. width: 148px;
  824. }
  825. .sys-info-south-table .x-table-layout-cell {
  826. height: 28px;
  827. line-height: 28px;
  828. }
  829. .sys-info-south-table .x-table-layout-cell .x-panel-body {
  830. border: none;
  831. }
  832. .resource-monitor-widget {
  833. padding: 4px 11px 5px 11px;
  834. }
  835. .x-panel {
  836. border-style: solid;
  837. border-width: 0;
  838. }
  839. /* 资源监控 */
  840. .resource-monitor-widget .resource-monitor-percentage-cmp .percentage-cmp-title {
  841. width: 86px;
  842. padding-right: 6px;
  843. float: left;
  844. line-height: 24px;
  845. color: #414b55;
  846. font-size: 12px;
  847. }
  848. .resource-monitor-widget .resource-monitor-percentage-cmp .percentage-cmp-hbar-background {
  849. background-color: rgba(34, 38, 54, 0.1);
  850. width: 160px;
  851. height: 8px;
  852. margin: 8px 0px;
  853. float: left;
  854. border-radius: 4px;
  855. overflow: hidden;
  856. }
  857. .resource-monitor-widget .resource-monitor-percentage-cmp .percentage-cmp-hbar-background .percentage-cmp-hbar-fill {
  858. width: 70px;
  859. height: 8px;
  860. background-color: #057FEB;
  861. -moz-transition-property: width;
  862. -o-transition-property: width;
  863. -webkit-transition-property: width;
  864. transition-property: width;
  865. -moz-transition-timing-function: ease-in;
  866. -o-transition-timing-function: ease-in;
  867. -webkit-transition-timing-function: ease-in;
  868. transition-timing-function: ease-in;
  869. -moz-transition-duration: 0.5s;
  870. -o-transition-duration: 0.5s;
  871. -webkit-transition-duration: 0.5s;
  872. transition-duration: 0.5s;
  873. }
  874. .resource-monitor-widget .resource-monitor-percentage-cmp .percentage-cmp-value {
  875. float: left;
  876. width: 34px;
  877. padding-left: 6px;
  878. line-height: 24px;
  879. font-size: 12px;
  880. }
  881. .resource-monitor-widget .resource-monitor-widget-subcmp-text,
  882. .resource-monitor-widget .resource-monitor-percentage-cmp,
  883. .resource-monitor-widget .resource-Monitor-networkio-cmp,
  884. .resource-monitor-widget .resource-Monitor-networkio-cmp .interface-selection-button.syno-ux-button .x-btn-arrow .x-btn-text {
  885. font-size: 13px;
  886. color: #414b55;
  887. line-height: 24px;
  888. }
  889. .resource-monitor-widget .resource-Monitor-networkio-cmp {
  890. float: left;
  891. height: 24px;
  892. }
  893. .resource-monitor-widget .resource-Monitor-networkio-cmp .networkio-cmp-icon.out {
  894. background-position: 0 0px;
  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. .resource-monitor-widget .resource-Monitor-networkio-cmp .networkio-cmp-label.out {
  907. color: #057FEB;
  908. }
  909. .resource-monitor-widget .resource-Monitor-networkio-cmp .networkio-cmp-label {
  910. float: left;
  911. color: #09B3B3;
  912. height: 24px !important;
  913. line-height: 24px;
  914. padding: 0px 8px 0px 0px;
  915. font-size: 12px;
  916. }
  917. .resource-monitor-widget .resource-Monitor-networkio-cmp .networkio-cmp-icon.in {
  918. margin-left: 0px;
  919. background-position: 0 -16px;
  920. }
  921. .resource-monitor-widget .resource-Monitor-networkio-cmp .networkio-cmp-icon {
  922. background-image: url("../../../../public/image/index/upDown.png");
  923. background-repeat: no-repeat;
  924. background-position: center;
  925. width: 16px;
  926. height: 16px;
  927. padding: 0px;
  928. margin: 4px 0px 4px 6px;
  929. float: left;
  930. }
  931. .x-btn.interface-selection-button.x-btn-noicon {
  932. border: 0px;
  933. background-color: transparent;
  934. background-image: none;
  935. }
  936. .resource-monitor-widget .resource-Monitor-networkio-cmp .interface-selection-button.syno-ux-button .x-btn-arrow .x-btn-text {
  937. height: 24px;
  938. line-height: 24px;
  939. padding-left: 0px;
  940. font-size: 12px;
  941. max-width: 80px;
  942. white-space: nowrap;
  943. overflow: hidden;
  944. text-overflow: ellipsis;
  945. }
  946. .resource-Monitor-widget-base {
  947. width: 296px;
  948. }
  949. .resource-monitor-widget .resource-Monitor-widget-panel .echarts-wrapper {
  950. height: 92px;
  951. width: 296px;
  952. }
  953. /* 备份 */
  954. .syno-sds-backupapp-scedule-title,
  955. .syno-backup-task-main-page .syno-backup-task-status-panel .x-panel-body .task-status-text,
  956. .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,
  957. .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,
  958. .syno-backup-task-main-page .syno-backup-task-subpanel .x-panel-header .x-panel-header-text,
  959. .syno-backup-new-feature-panel .syno-backup-new-feature-panel-title,
  960. .syno-backup-new-feature-panel .syno-backup-learn-more-text,
  961. .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,
  962. .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,
  963. .syno-backup-restore-progress-window .syno-ux-fieldset .x-fieldset-header .x-fieldset-header-text,
  964. .syno-backup-client-common-customized-retention-setting-window .syno-backup-customized-retention-description,
  965. .syno-backup-client-common-filter-setting-window-body .syno-backup-client-common-filter-setting-panel .syno-backup-filter-setting-mask-text,
  966. .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,
  967. .syno-backup-client-common-statistic-window .syno-backup-statistic-panel .syno-backup-statistic-line-chart .empty-page-position .empty-page-parent .empty-page-text,
  968. .syno-backup-client-common-statistic-window .syno-backup-statistic-panel .syno-backup-statistic-line-chart .data-node-tooltip .title,
  969. .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,
  970. .syno-backup-client-common-source-info-panel .syno-backup-source-info-title,
  971. .syno-backup-client-common-source-usage-info .legend .legend-w .name,
  972. .syno-backup-client-explore .syno-sds-backup-filebrowser-treepanel .root_node a span,
  973. .syno-backup-client-explore .syno-sds-backup-filebrowser-treepanel .x-tree-node .root_node a span,
  974. .syno-backup-client-explore .syno-sds-backup-pathbar .x-btn-over .syno-sds-backup-pathbutton-text,
  975. .syno-backup-client-explore .syno-backup-timeline-wrapper .syno-backup-timeline-scroller ul .month-label,
  976. .syno-backup-client-explore .syno-backup-timeline-wrapper .syno-backup-timeline-scroller li.version-select .version-box .version-count,
  977. .syno-backup-client-explore .syno-backup-timeline-wrapper .syno-backup-timeline-scroller li.version-select .version-box .version-time,
  978. .syno-backup-client-explore .syno-backup-timeline-version-tag .syno-backup-timeline-version-tag-bubble span,
  979. .syno-backup-client-timeline-version-menu .syno-backup-timeline-version-ct .version-menu-header,
  980. .syno-backup-client-timeline-version-menu .syno-backup-timeline-version-ct table td.version-selected,
  981. .syno-sds-backup-client-jobtray.syno-sds-backup-jobtray-panel .jobtray-grid-panel .x-panel-header .x-panel-header-text {
  982. font-weight: 700;
  983. }
  984. .sds-widget-gridpanel .x-grid3 {
  985. background-color: transparent;
  986. }
  987. .sds-widget-gridpanel .arrow-scroller {
  988. position: absolute;
  989. top: 0px;
  990. right: 0px;
  991. width: 24px;
  992. bottom: 0px;
  993. margin: 2px;
  994. margin-right: 1px;
  995. }
  996. .sds-widget-gridpanel .arrow-scroller .up {
  997. height: 50%;
  998. cursor: pointer;
  999. }
  1000. .sds-widget-gridpanel .arrow-scroller .up .arrow-up,
  1001. .sds-widget-gridpanel .arrow-scroller .down .arrow-down {
  1002. width: 24px;
  1003. height: 24px;
  1004. background-repeat: no-repeat;
  1005. background-image: url(../../../../public/image/index/arrowhead.png);
  1006. background-size: 48px 72px;
  1007. }
  1008. .sds-widget-gridpanel .arrow-scroller .up .arrow-up:hover,
  1009. .sds-widget-gridpanel .arrow-scroller .down .arrow-down:hover {
  1010. background-position: 0px -24px;
  1011. }
  1012. .sds-widget-gridpanel .arrow-scroller .up .arrow-up:active,
  1013. .sds-widget-gridpanel .arrow-scroller .down .arrow-down:active {
  1014. background-position: 0px -48px;
  1015. }
  1016. .sds-widget-gridpanel .arrow-scroller .up.arrow-disabled {
  1017. cursor: default;
  1018. }
  1019. .sds-widget-gridpanel .arrow-scroller .up .arrow-up {
  1020. background-position: -24px 0px;
  1021. }
  1022. .sds-widget-gridpanel .arrow-scroller .up .arrow-up {
  1023. position: absolute;
  1024. top: 0px;
  1025. }
  1026. .sds-widget-gridpanel .arrow-scroller .up.arrow-disabled .arrow-up {
  1027. background-position: -24px 0px !important;
  1028. opacity: 0.4;
  1029. }
  1030. .sds-widget-gridpanel .arrow-scroller .down .arrow-down {
  1031. background-position: 0px 0px;
  1032. }
  1033. .syno-sds-backupapp-widget-panel .x-grid3-row {
  1034. margin-bottom: 2px;
  1035. }
  1036. .sds-widget-gridpanel .arrow-scroller .down .arrow-down {
  1037. position: absolute;
  1038. bottom: 0px;
  1039. }
  1040. .sds-widget-gridpanel .arrow-scroller .down.arrow-disabled .arrow-down {
  1041. background-position: 0px 0px !important;
  1042. opacity: 0.4;
  1043. }
  1044. .sds-widget-gridpanel .x-grid3-row {
  1045. -webkit-text-size-adjust: none;
  1046. font-size: 12px;
  1047. border-width: 0;
  1048. background-color: transparent;
  1049. }
  1050. .sds-widget-gridpanel .x-grid3-row .x-grid3-td-bkpstatus .x-grid3-cell-inner {
  1051. height: 64px;
  1052. padding: 8px 0 8px 0;
  1053. }
  1054. .sds-widget-gridpanel .x-grid3-row .x-grid3-cell-inner {
  1055. line-height: 28px;
  1056. }
  1057. .syno-sds-backupapp-scedule-icon.no-result {
  1058. background-position: 0px -48px;
  1059. }
  1060. .syno-sds-backupapp-scedule-enable div {
  1061. text-overflow: ellipsis;
  1062. overflow: hidden;
  1063. }
  1064. .syno-sds-backupapp-scedule-icon {
  1065. background-image: url("../../../../public/image/index/wdgt_icn_scheduled_status.png");
  1066. width: 24px;
  1067. height: 24px;
  1068. float: left;
  1069. margin-right: 6px;
  1070. }
  1071. .syno-sds-backupapp-scedule-icon.schedule-inactive {
  1072. background-position: 0px -144px;
  1073. }
  1074. .syno-sds-backupapp-scedule-enable div {
  1075. text-overflow: ellipsis;
  1076. overflow: hidden;
  1077. }
  1078. .syno-sds-backupapp-scedule-title {
  1079. width: 134px;
  1080. float: left;
  1081. }
  1082. .syno-sds-backupapp-scedule-time {
  1083. width: 114px;
  1084. float: right;
  1085. text-align: right;
  1086. }
  1087. .syno-sds-backupapp-scedule-enable div {
  1088. text-overflow: ellipsis;
  1089. overflow: hidden;
  1090. }
  1091. /* 最新日志 */
  1092. .sds-widget-gridpanel .x-grid3-row {
  1093. -webkit-text-size-adjust: none;
  1094. font-size: 12px;
  1095. border-width: 0;
  1096. background-color: transparent;
  1097. }
  1098. .sds-widget-gridpanel .x-grid3-cell-inner {
  1099. text-overflow: ellipsis;
  1100. }
  1101. .sds-widget-gridpanel .x-grid3-row .x-grid3-cell-inner {
  1102. height: 28px;
  1103. padding: 0px;
  1104. line-height: 28px;
  1105. }
  1106. .sds-sysinfo-widget-icon,
  1107. .syno-sysinfo-file-change-log,
  1108. .sds-recentlog-loglevel,
  1109. .syno-crrentconn-icon {
  1110. background-image: url('../../../../public/image/index/minIcon.png');
  1111. background-position: 0 0;
  1112. background-repeat: no-repeat;
  1113. width: 24px;
  1114. height: 24px;
  1115. margin: 2px 6px 2px 7px;
  1116. float: left;
  1117. }
  1118. .log-info {
  1119. color: #414b55;
  1120. }
  1121. .sds-recentlog-loglevel.log-info {
  1122. background-position: 0 -24px;
  1123. }
  1124. /* 计划的任务 */
  1125. .syno-taskscheduler-enable-taskicon,
  1126. .syno-taskscheduler-disable-taskicon {
  1127. background-image: url("../../../../public/image/index/wdgt_icn_items.png");
  1128. width: 24px;
  1129. height: 24px;
  1130. margin: 2px 6px 2px 7px;
  1131. float: left;
  1132. background-position: 0 -144px;
  1133. }
  1134. /* 已连接用户 */
  1135. .syno-crrentconn-split {
  1136. background-image: url('../../../../public/image/index/minIcon.png');
  1137. background-position: 0 -372px;
  1138. width: 2px;
  1139. height: 28px;
  1140. float: left;
  1141. }
  1142. .syno-sysinfo-disconn-button ,.syno-sysinfo-conn-button {
  1143. background-image: url('../../../../public/image/index/minIcon.png') !important;
  1144. background-position: -2px -372px;
  1145. width: 24px;
  1146. height: 24px;
  1147. cursor: pointer;
  1148. margin: 2px 8px 2px 8px;
  1149. }
  1150. .syno-sysinfo-conn-button {
  1151. background-position: 34px -372px;
  1152. }
  1153. .syno-sysinfo-disconn-button:hover{
  1154. background-position: -2px -396px;
  1155. }
  1156. .syno-sysinfo-disconn-button:active{
  1157. background-position: -2px -420px;
  1158. }
  1159. .syno-sysinfo-conn-button:hover{
  1160. background-position: 34px -396px;
  1161. }
  1162. .syno-sysinfo-conn-button:active{
  1163. background-position: 34px -420px;
  1164. }
  1165. /* 存储 */
  1166. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .x-grid3-cell-inner {
  1167. height: 82px !important;
  1168. }
  1169. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box {
  1170. margin: 0 8px 0px 10px;
  1171. padding-top: 8px;
  1172. padding-bottom: 8px;
  1173. height: 64px;
  1174. }
  1175. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .icon-block {
  1176. position: relative;
  1177. display: inline-block;
  1178. width: 40px;
  1179. height: 64px;
  1180. margin-right: 18px;
  1181. }
  1182. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .icon-block .icon-volume-img {
  1183. position: absolute;
  1184. width: 40px;
  1185. height: 40px;
  1186. top: 9px;
  1187. background-image: url("../../../../public/image/index/wdgt_icn_volume.png");
  1188. }
  1189. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .icon-block .icon-volume-status {
  1190. position: absolute;
  1191. width: 24px;
  1192. height: 24px;
  1193. top: 31px;
  1194. left: 22px;
  1195. background-image: url('../../../../public/image/index/minIcon.png');
  1196. background-position: -26px -372px;
  1197. }
  1198. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block {
  1199. display: inline-block;
  1200. font-size: 12px;
  1201. vertical-align: top;
  1202. position: relative;
  1203. width: 200px;
  1204. }
  1205. .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 {
  1206. font-weight: 700;
  1207. }
  1208. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block .volume-name-status {
  1209. line-height: 24px;
  1210. color: #414b55;
  1211. }
  1212. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block .usage-bar-container {
  1213. position: relative;
  1214. height: 20px;
  1215. }
  1216. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block .usage-bar-container .usage-bar-bg {
  1217. position: absolute;
  1218. top: 6px;
  1219. width: 200px;
  1220. height: 8px;
  1221. background-color: rgba(34, 38, 54, 0.1);
  1222. border-radius: 4px;
  1223. overflow: hidden;
  1224. }
  1225. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block .usage-bar-container .usage-bar-fill {
  1226. height: 8px;
  1227. background-color: #057FEB;
  1228. }
  1229. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block .usage-text {
  1230. line-height: 20px;
  1231. color: #414b55;
  1232. }
  1233. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block .usage-text .usage-used-text {
  1234. color: #057FEB;
  1235. }
  1236. .sds-widget-gridpanel.sys-storage-grid .x-grid3-row .syno-sysinfo-storage-usage-volume-box .data-block .usage-ratio-text {
  1237. position: absolute;
  1238. right: 0;
  1239. bottom: 0;
  1240. line-height: 20px;
  1241. color: #414b55;
  1242. }
  1243. /* 空固定窗 */
  1244. .v-widget-list .v-widget-list-empty{
  1245. margin: auto;
  1246. }
  1247. .v-widget-list .v-widget-list-empty .v-widget-list-empty-img {
  1248. margin: auto;
  1249. height: 120px;
  1250. width: 120px;
  1251. background-image: url(../../../image/index/fixWindowEmpty.png);
  1252. background-size: 120px 120px;
  1253. }
  1254. .v-widget-list .v-widget-list-empty .v-widget-list-empty-content {
  1255. margin-top: 10px;
  1256. color: #96a0aa;
  1257. line-height: 24px;
  1258. }
  1259. /* 侧边滑动栏 */
  1260. .v-widget-window .v-ps .ps__rail-y {
  1261. opacity: 1;
  1262. }
  1263. .v-widget-window .v-ps .ps__rail-y .ps__thumb-y {
  1264. right: 2px;
  1265. background-color: rgba(255, 255, 255, 0.3);
  1266. }
  1267. .v-widget-window .v-ps {
  1268. padding-right: 0;
  1269. }
  1270. .v-ps .ps__rail-x:hover>.ps__thumb-x,
  1271. .v-ps .ps__rail-x:focus>.ps__thumb-x,
  1272. .v-ps .ps__rail-x.ps--clicking.ps__thumb-x {
  1273. background-color: rgba(255, 255, 255, 0.8)
  1274. }
  1275. .v-ps .ps__rail-y:hover>.ps__thumb-y,
  1276. .v-ps .ps__rail-y:focus>.ps__thumb-y,
  1277. .v-ps .ps__rail-y.ps--clicking.ps__thumb-y {
  1278. background-color: rgba(255, 255, 255, 0.8)
  1279. }
  1280. @media screen and (max-height: 456px){
  1281. #sds-desktop .v-widget-window .v-widget-items-wrapper{
  1282. height: calc(100vh - 42px) !important;
  1283. }
  1284. #sds-desktop .v-widget-window{
  1285. height: calc(100vh - 10px) !important;
  1286. }
  1287. #sds-desktop .v-widget-window .v-ps,
  1288. #sds-desktop .v-widget-window .ps__rail-y{
  1289. height: calc(100vh - 52px) !important;
  1290. min-height: 122px;
  1291. }
  1292. #sds-desktop .v-widget-window .ps__rail-y .ps__thumb-y{
  1293. height: calc((100vh - 52px) / 2);
  1294. min-height: 64px;
  1295. }
  1296. }
  1297. /* 套件中心弹出框 */
  1298. /* .tjDetail{
  1299. display: none;
  1300. } */
  1301. .sds-window-v5 .x-tool-help {
  1302. background-image: url("../../../image/index//wdheader_bt_help.png");
  1303. }
  1304. .sds-window-v5 .x-tool-restore {
  1305. background-image: url("../../../image/index/windowRestore.png");
  1306. }
  1307. .sds-window-v5.x-window .x-toolbar-cell .x-btn {
  1308. margin: 0px;
  1309. }
  1310. .synopkg-icon-btn .synopkg-btn-icon {
  1311. width: 24px !important;
  1312. height: 24px !important;
  1313. padding: 0 !important;
  1314. margin: 2px 3px !important;
  1315. }
  1316. .synopkg-icon-btn {
  1317. height: 28px !important;
  1318. width: 30px !important;
  1319. background: rgba(198,212,224,0.4);
  1320. border-radius: 3px;
  1321. border: none;
  1322. }
  1323. .synopkg-toolbar .synopkg-toolbar-back-btn {
  1324. margin: 0 !important;
  1325. border-right: 1px solid rgba(198,212,224,0.9);
  1326. border-radius: 3px 0 0 3px;
  1327. }
  1328. .synopkg-toolbar .synopkg-toolbar-next-btn {
  1329. border-radius: 0 3px 3px 0;
  1330. }
  1331. .synopkg-toolbar .synopkg-toolbar-back-btn.x-item-disabled {
  1332. border-right: 1px solid rgba(198,212,224,0.5);
  1333. }
  1334. .sds-window-v5 .x-tool-minimize {
  1335. background-image: url("../../../image/index/wdheader_bt_minimize.png");
  1336. }
  1337. .synopkg-toolbar .synopkg-toolbar-back-btn .synopkg-toolbar-back-icon {
  1338. background-image: url('../../../image/index/sprite-s19f0e38f3d.png');
  1339. background-position: 0 -248px;
  1340. }
  1341. .synopkg-toolbar .synopkg-toolbar-next-btn .synopkg-toolbar-next-icon {
  1342. background-image: url('../../../image/index/sprite-s19f0e38f3d.png');
  1343. background-position: 0 -296px;
  1344. }
  1345. .synopkg-toolbar .synopkg-toolbar-refresh-icon {
  1346. background-image: url('../../../image/index/sprite-s19f0e38f3d.png');
  1347. background-position: 10px 0;
  1348. }
  1349. .synopkg-toolbar .syno-ux-textfilter {
  1350. width: 100%;
  1351. }
  1352. /* 选择固定窗口的子窗口 */
  1353. .v-menu .v-menu-item-select-selected .v-icon {
  1354. background-image: url(../../../image/index/select.png);
  1355. }
  1356. /* App展示界面 */
  1357. .syno-sds-appview.syno-sds-appview-animate {
  1358. opacity: 1;
  1359. transform: scale(1);
  1360. }
  1361. .syno-sds-appview {
  1362. outline: none;
  1363. position: absolute;
  1364. background-color: rgba(0,0,0,0.7);
  1365. transition: opacity 0.15s ease-in;
  1366. transition: transform 0.2s ease-in;
  1367. opacity: .4;
  1368. transform: scale(1.05);
  1369. display: flex;
  1370. flex-direction: column;
  1371. }
  1372. .syno-sds-appview-container {
  1373. width: 100%;
  1374. padding: 32px 0px 0px 0px;
  1375. }
  1376. .search-field {
  1377. position: relative;
  1378. margin: 0 auto;
  1379. background: #28323C;
  1380. border: 1px solid #58626C;
  1381. border-radius: 4px;
  1382. height: 34px;
  1383. vertical-align: middle;
  1384. }
  1385. .search-field .search-field-input {
  1386. width: 100%;
  1387. box-sizing: border-box;
  1388. height: 24px;
  1389. top: 4px;
  1390. padding: 1px 12px 1px 33px;
  1391. background-position: 5px 1px;
  1392. background-repeat: no-repeat;
  1393. background-image: url(../../../image/index/search.png);
  1394. background-size: 24px 72px;
  1395. background-color: transparent;
  1396. color: #E0EAF4;
  1397. border: none;
  1398. vertical-align: top;
  1399. }
  1400. .search-field:hover {
  1401. border: 1px solid #8A949E;
  1402. }
  1403. .search-field .search-field-clear-btn {
  1404. position: absolute;
  1405. width: 24px;
  1406. height: 24px;
  1407. top: 4px;
  1408. background-image: url(../../../image/index/inputClear.png);
  1409. background-size: 24px 24px;
  1410. background-position: 0px 0px;
  1411. background-repeat: no-repeat;
  1412. background-color: transparent;
  1413. right: 0px;
  1414. margin: 1px 3px;
  1415. border: none;
  1416. cursor: pointer;
  1417. opacity: 0.4;
  1418. }
  1419. .syno-sds-appview .sds-shortcut-wrapper {
  1420. position: absolute;
  1421. height: 100%;
  1422. width: 100%;
  1423. top: 68px;
  1424. }
  1425. .syno-sds-appview .sds-shortcut-wrapper .shortcut-zone {
  1426. height: 100%;
  1427. position: absolute;
  1428. }
  1429. ::-webkit-scrollbar {
  1430. width: 8px;
  1431. }
  1432. ::-webkit-scrollbar-thumb, ::-webkit-scrollbar-corner {
  1433. background-color: rgba(80,90,100,0.3);
  1434. }
  1435. ::-webkit-scrollbar-track {
  1436. -webkit-box-shadow: inset 0 0 6px transparent;
  1437. border-radius: 0px;
  1438. background-color: transparent;
  1439. margin-right: 2px;
  1440. }
  1441. .syno-sds-appview .sds-shortcut-wrapper .shortcut-zone.right-zone {
  1442. right: 0;
  1443. }
  1444. .syno-sds-appview .sds-app-panel {
  1445. display: flex;
  1446. padding: 48px 0 0 0;
  1447. height: 100%;
  1448. width: 100%;
  1449. box-sizing: border-box;
  1450. position: relative;
  1451. }
  1452. .syno-sds-appview .sds-app-panel .v-ps {
  1453. width: 100%;
  1454. padding-right: 0;
  1455. flex: 0 0 auto;
  1456. }
  1457. .syno-sds-appview .sds-app-panel .app-layout-wrapper {
  1458. margin: 0 auto;
  1459. max-width: 1376px;
  1460. min-width: 688px;
  1461. }
  1462. .syno-sds-appview .sds-app-panel .sds-desktop-layout {
  1463. position: relative;
  1464. }
  1465. .sds-desktop-layout {
  1466. width: 100%;
  1467. height: 100%;
  1468. position: relative;
  1469. }
  1470. .launch-icon.app-item-icon {
  1471. width: 156px;
  1472. height: 124px;
  1473. padding: 16px 8px 16px 8px;
  1474. flex: 0 0 auto;
  1475. cursor: pointer;
  1476. }
  1477. .launch-icon.app-item-icon .image {
  1478. width: 72px;
  1479. height: 72px;
  1480. background-size: 72px 72px;
  1481. margin: 0 auto;
  1482. }
  1483. .launch-icon .image {
  1484. width: 64px;
  1485. height: 64px;
  1486. background-size: 64px 64px;
  1487. position: relative;
  1488. background-position: center center;
  1489. background-repeat: no-repeat;
  1490. margin: 0 auto 4px auto;
  1491. }
  1492. .launch-icon .sds-application-notify-badge-num {
  1493. width: 14px;
  1494. height: 14px;
  1495. bottom: -1px;
  1496. right: -2px;
  1497. }
  1498. .launch-icon.app-item-icon {
  1499. width: 156px;
  1500. height: 124px;
  1501. padding: 16px 8px 16px 8px;
  1502. flex: 0 0 auto;
  1503. cursor: pointer;
  1504. }
  1505. .launch-icon.app-item-icon .text {
  1506. font-size: 12px;
  1507. line-height: 18px;
  1508. padding-top: 8px;
  1509. text-align: center;
  1510. text-shadow: 0 1px 3px rgba(0,0,0,0.75);
  1511. color: #fff;
  1512. }
  1513. .search-field.search-field-focused {
  1514. border: 1px solid #2396FA;
  1515. }
  1516. .syno-sds-appview .sds-app-panel .sds-desktop-no-result {
  1517. opacity: 0.6;
  1518. font-size: 20px;
  1519. color: #E0EAF4;
  1520. text-align: center;
  1521. line-height: 28px;
  1522. width: 100%;
  1523. height: 100%;
  1524. position: absolute;
  1525. display: flex;
  1526. align-items: center;
  1527. justify-content: center;
  1528. }
  1529. /* notifyTrayPanel */
  1530. .sds-tray-panel {
  1531. box-shadow: 0px 2px 6px rgba(0,0,0,0.5);
  1532. background-color: #fff;
  1533. border: 0px none;
  1534. border-radius: 3px;
  1535. padding: 8px 8px;
  1536. color: #414b55;
  1537. }
  1538. .sds-tray-panel .x-panel-header {
  1539. background: transparent;
  1540. border: 0;
  1541. border-bottom: solid 1px rgba(198,212,224,0.4);
  1542. text-align: center;
  1543. }
  1544. .sds-notify-tray-panel {
  1545. padding: 0;
  1546. color: #414b55;
  1547. width: 340px;
  1548. height: calc(100vh - 51px);
  1549. min-height: 164px;
  1550. }
  1551. .sds-notify-tray-panel .x-panel-header {
  1552. border: 0;
  1553. box-shadow: inset 0 -1px 0 0 rgba(198,212,224,0.7);
  1554. border-radius: 3px 3px 0 0;
  1555. text-align: center;
  1556. padding: 6px 0px 6px 0px;
  1557. background: none;
  1558. }
  1559. .sds-notify-tray-panel .item .title, .sds-notify-tray-panel .x-panel-header-text {
  1560. font-weight: 700;
  1561. }
  1562. .sds-notify-tray-panel .x-panel-header-text {
  1563. font-size: 12px;
  1564. color: #414b55;
  1565. line-height: 24px;
  1566. }
  1567. .sds-tray-panel .x-panel-header .x-panel-header-text, .sds-user-menu .sds-user-menu-username, .sds-tray-msg-window .x-plain-body {
  1568. color: #414b55;
  1569. }
  1570. .sds-tray-panel .x-panel-header .x-panel-header-text {
  1571. font-size: 12px;
  1572. line-height: 23px;
  1573. }
  1574. .sds-tray-panel .x-panel-header .x-panel-header-text, .sds-user-menu .sds-user-menu-username {
  1575. font-weight: 700;
  1576. }
  1577. .sds-notify-tray-panel .sds-notify-setting-btn {
  1578. position: absolute;
  1579. right: 10px;
  1580. width: 24px;
  1581. height: 24px;
  1582. background-image: url("../../../image/index/tbar_bt_setting.png");
  1583. cursor: pointer;
  1584. }
  1585. .sds-tray-panel .x-panel-body {
  1586. background-color: #fff;
  1587. border: none;
  1588. }
  1589. .sds-notify-tray-panel .x-panel-body {
  1590. border: none;
  1591. height: calc(100vh - 135px);
  1592. min-height: 164px;
  1593. }
  1594. .sds-notify-tray-panel .sds-notify-tray-panel-dataview-wrapper {
  1595. padding-top: 12px;
  1596. }
  1597. .sds-notify-tray-panel-dataview-wrapper {
  1598. padding: 0;
  1599. height: 100%;
  1600. }
  1601. .sds-notify-tray-panel .item {
  1602. margin: 0px 12px 8px 12px;
  1603. border-radius: 3px;
  1604. padding: 12px;
  1605. background-color: rgba(198,212,224,0.2);
  1606. }
  1607. .sds-notify-tray-panel .item.unread {
  1608. background-color: rgba(5,127,235,0.1);
  1609. }
  1610. .sds-notify-tray-panel .item.unread:hover {
  1611. background-color: rgba(5,127,235,0.15);
  1612. }
  1613. .sds-notify-tray-panel .item .title, .sds-notify-tray-panel .x-panel-header-text {
  1614. font-weight: 700;
  1615. }
  1616. .sds-notify-tray-panel .item .title {
  1617. position: relative;
  1618. box-sizing: border-box;
  1619. font-size: 13px;
  1620. background-repeat: no-repeat;
  1621. overflow: hidden;
  1622. text-overflow: ellipsis;
  1623. white-space: nowrap;
  1624. display: inline-block;
  1625. vertical-align: top;
  1626. width: 100%;
  1627. color: #057FEB;
  1628. }
  1629. .sds-notify-tray-panel .item .title .notification-level {
  1630. position: absolute;
  1631. top: 0;
  1632. left: 0;
  1633. width: 24px;
  1634. height: 24px;
  1635. background-image: url("../../../image/index/tbar_icn_status.png");
  1636. }
  1637. .sds-notify-tray-panel .item .title .notification-level.info {
  1638. background-position: 0 0;
  1639. }
  1640. .sds-notify-tray-panel .item .title .content {
  1641. cursor: pointer;
  1642. width: 228px;
  1643. height: 24px;
  1644. padding-left: 28px;
  1645. line-height: 24px;
  1646. display: inline-block;
  1647. vertical-align: top;
  1648. text-overflow: ellipsis;
  1649. white-space: nowrap;
  1650. overflow: hidden;
  1651. }
  1652. .sds-notify-tray-panel .item .title .content.cursor-no-pointer {
  1653. cursor: default;
  1654. }
  1655. .sds-notify-tray-panel .item .time {
  1656. font-size: 13px;
  1657. color: rgba(65,75,85,0.6);
  1658. padding-top: 4px;
  1659. height: 20px;
  1660. line-height: 20px;
  1661. }
  1662. .sds-notify-tray-panel .msg {
  1663. font-size: 13px;
  1664. line-height: 20px;
  1665. overflow: hidden;
  1666. text-align: left;
  1667. color: #414b55;
  1668. }
  1669. .sds-notify-tray-panel .msg .detail{
  1670. display: inline-block;
  1671. margin-right: 5px;
  1672. }
  1673. .sds-notify-tray-panel .msg a {
  1674. cursor: pointer;
  1675. }
  1676. .sds-notify-tray-panel .item .remain-items {
  1677. display: none;
  1678. }
  1679. .sds-notify-tray-panel .x-panel-bbar {
  1680. background-color: white;
  1681. border-top: solid rgba(198,212,224,0.5) 1px;
  1682. border-radius: 3px;
  1683. }
  1684. .sds-notify-tray-panel .x-toolbar {
  1685. background: none;
  1686. padding: 0px 6px 0px 6px;
  1687. border: none;
  1688. height: 48px;
  1689. }
  1690. .sds-notify-tray-panel .x-toolbar .x-toolbar-ct {
  1691. background-repeat: repeat-x;
  1692. background-color: #fff;
  1693. padding-top: 12px;
  1694. }
  1695. .sds-notify-tray-panel .x-toolbar .x-toolbar-left {
  1696. padding-left: 6px;
  1697. }
  1698. .sds-notify-tray-panel .x-toolbar .x-toolbar-cell .syno-ux-button {
  1699. border-radius: 100px;
  1700. }
  1701. .sds-notify-tray-panel .x-toolbar .x-toolbar-cell .syno-ux-button {
  1702. border-radius: 100px;
  1703. }
  1704. .sds-notify-tray-panel .x-toolbar .x-toolbar-cell .syno-ux-button.syno-ux-button-blue {
  1705. padding: 0 13px 0 13px;
  1706. min-width: 92px;
  1707. }
  1708. .sds-notify-tray-panel .sds-notify-panel-arrow {
  1709. position: absolute;
  1710. top: -17px;
  1711. left: 158px;
  1712. width: 24px;
  1713. height: 18px;
  1714. overflow: hidden;
  1715. }
  1716. .sds-notify-tray-panel .sds-notify-panel-arrow::after {
  1717. background: #fff;
  1718. background: #fff;
  1719. content: '';
  1720. position: absolute;
  1721. bottom: -3px;
  1722. left: 2px;
  1723. width: 14px;
  1724. height: 14px;
  1725. -moz-transform-origin: left bottom;
  1726. -ms-transform-origin: left bottom;
  1727. -webkit-transform-origin: left bottom;
  1728. transform-origin: left bottom;
  1729. -moz-transform: rotate(45deg);
  1730. -ms-transform: rotate(45deg);
  1731. -webkit-transform: rotate(45deg);
  1732. transform: rotate(45deg);
  1733. }
  1734. .sds-notify-tray-panel .sds-notify-empty-text {
  1735. color: rgba(65,75,85,0.6);
  1736. vertical-align: middle;
  1737. text-align: center;
  1738. }
  1739. /* userTrayPanel */
  1740. .taskbar-menu.user-menu.v-menu {
  1741. padding: 0 0 8px 0;
  1742. }
  1743. .taskbar-menu.v-menu {
  1744. padding: 0;
  1745. box-sizing: border-box;
  1746. box-shadow: 0 2px 6px rgba(0,0,0,0.5);
  1747. border-radius: 3px;
  1748. user-select: none;
  1749. border: none;
  1750. }
  1751. .taskbar-menu.v-menu::before {
  1752. background: #fff;
  1753. content: '';
  1754. position: absolute;
  1755. margin: 0 auto;
  1756. left: 0;
  1757. right: 0;
  1758. top: -4px;
  1759. width: 14px;
  1760. height: 14px;
  1761. transform: rotate(45deg);
  1762. }
  1763. .taskbar-menu.user-menu.v-menu .taskbar-title {
  1764. margin-bottom: 8px;
  1765. }
  1766. .taskbar-menu.v-menu .taskbar-title {
  1767. text-overflow: ellipsis;
  1768. white-space: nowrap;
  1769. overflow: hidden;
  1770. font-size: 12px;
  1771. color: #414B55;
  1772. text-align: center;
  1773. line-height: 24px;
  1774. padding: 6px 0 5px 0;
  1775. border-bottom: 1px solid rgba(198,212,224,0.7);
  1776. border-radius: 3px 3px 0 0;
  1777. }
  1778. .taskbar-menu.v-menu .taskbar-title {
  1779. font-weight: 700;
  1780. }
  1781. .taskbar-menu.user-menu.v-menu .v-menu-item {
  1782. display: flex;
  1783. align-items: center;
  1784. margin: 0px 8px;
  1785. padding: 0;
  1786. height: 32px;
  1787. border-radius: 4px;
  1788. }
  1789. .taskbar-menu.user-menu.v-menu .v-menu-item:hover {
  1790. background-color: rgba(198,212,224,0.4);
  1791. }
  1792. .taskbar-menu.user-menu.v-menu .v-menu-item .menu-icon.setting {
  1793. background-image: url(../../../image/index/userSetting.png);
  1794. background-size: 24px 24px;
  1795. }
  1796. .taskbar-menu.user-menu.v-menu .v-menu-item .menu-icon.reboot {
  1797. background-image: url(../../../image/index/userReboot.png);
  1798. background-size: 24px 24px;
  1799. }
  1800. .taskbar-menu.user-menu.v-menu .v-menu-item .menu-icon.poweroff {
  1801. background-image: url(../../../image/index/userPoweroff.png);
  1802. background-size: 24px 24px;
  1803. }
  1804. .taskbar-menu.user-menu.v-menu .v-menu-item .menu-icon.about {
  1805. background-image: url(../../../image/index/userAbout.png);
  1806. background-size: 24px 24px;
  1807. }
  1808. .taskbar-menu.user-menu.v-menu .v-menu-item .menu-icon.logout {
  1809. background-image: url(../../../image/index/userLogout.png);
  1810. background-size: 24px 24px;
  1811. }
  1812. .taskbar-menu.user-menu.v-menu .v-menu-item .menu-icon {
  1813. display: inline-block;
  1814. width: 24px;
  1815. height: 24px;
  1816. background-position: 0 0;
  1817. flex: 0 0 auto;
  1818. margin: 0 6px;
  1819. }
  1820. .taskbar-menu.user-menu.v-menu .v-menu-item-divider {
  1821. margin: 8px 0 8px 0;
  1822. }
  1823. /* notifyTrayPanelDetail */
  1824. .sds-notify-detail-dialog.v-window .v-window-header-wrapper .app-icon {
  1825. display: none;
  1826. }
  1827. .sds-notify-detail-dialog.v-window .v-window-header-wrapper .v-window-header-text {
  1828. padding-left: 0px;
  1829. }
  1830. .window-header-tool-wrapper .tool.close {
  1831. background-image: url(../../../image/index/windowClose.png);
  1832. }
  1833. .sds-notify-detail-dialog .detail-panel .detail-mail-content {
  1834. border: 0;
  1835. border-top: 1px dashed rgba(198,212,224,0.7);
  1836. width: 640px;
  1837. height: 150px;
  1838. padding-top: 16px;
  1839. }
  1840. /* notifySetting */
  1841. .syno-ux-gridpanel .x-grid3-hd.sort-desc .x-grid3-hd-inner .x-grid3-sort-icon, .syno-ux-editorgridpanel .x-grid3-hd.sort-desc .x-grid3-hd-inner .x-grid3-sort-icon, .syno-ux-gridpanel .x-grid3-hd.sort-asc .x-grid3-hd-inner .x-grid3-sort-icon, .syno-ux-editorgridpanel .x-grid3-hd.sort-asc .x-grid3-hd-inner .x-grid3-sort-icon {
  1842. background-image: url("../../../image/index/arrowTable.png");
  1843. }
  1844. .syno-ux-checkbox-icon, .syno-ux-radio-icon {
  1845. background-image: url("../../../image/index/checkbox.svg");
  1846. }
  1847. .syno-ux-grid-enable-column-unchecked{
  1848. background-image: url("../../../image/index/checkbox.svg");
  1849. }
  1850. ::-webkit-scrollbar-thumb, ::-webkit-scrollbar-corner {
  1851. background-color: rgba(80,90,100,0.3);
  1852. }
  1853. .syno-ux-grid-enable-column-checked {
  1854. background-image: url("../../../image/index/checkbox.svg");
  1855. }
  1856. .mcontentwrapper{
  1857. overflow: scroll !important;
  1858. }
  1859. .mcontentwrapper::-webkit-scrollbar {
  1860. display: none;
  1861. }
  1862. /* notifyShowAll */
  1863. .sds-notify-showall-dialog.v-window .v-window-header-wrapper .app-icon {
  1864. display: none;
  1865. }
  1866. .sds-notify-showall-dialog.v-window .v-window-header-wrapper .v-window-header-text {
  1867. padding-left: 0px;
  1868. }
  1869. .window-header-tool-wrapper .tool.maximize {
  1870. background-image: url(../../../image/index/windowMaximize.png);
  1871. }
  1872. .sds-notify-showall-dialog .show-all-panel .tbar-wrapper {
  1873. padding-bottom: 8px;
  1874. }
  1875. .v-panel .default-tbar .v-btn {
  1876. margin-right: 6px;
  1877. }
  1878. .sds-notify-showall-dialog .show-all-panel button.i-filter {
  1879. background-image: url(../../../image/index/sort.png);
  1880. background-size: 24px 24px;
  1881. background-position: 2px 2px;
  1882. order: 2;
  1883. margin-left: auto;
  1884. margin-right: 0;
  1885. }
  1886. .sds-notify-showall-dialog .show-all-panel button.i-filter .v-btn-dropdown-btn {
  1887. background-image: none;
  1888. }
  1889. .sds-notify-showall-dialog .show-all-panel .all-notification-table-wrapper {
  1890. display: flex;
  1891. flex-direction: column;
  1892. height: 100%;
  1893. }
  1894. .sds-notify-showall-dialog .show-all-panel .all-notification-table {
  1895. flex: 1 1 auto;
  1896. overflow: hidden;
  1897. }
  1898. .v-table th .v-table-column-sorter {
  1899. background-image: url(../../../image/index/arrowTable.png);
  1900. }
  1901. .v-table th.sorting .v-table-column-sorter {
  1902. display: inline-block;
  1903. }
  1904. .v-table th .v-table-column-sorter.up {
  1905. background-position: 0px -20px;
  1906. }
  1907. .v-table th .v-table-column-sorter.down {
  1908. background-position: 0px -20px;
  1909. }
  1910. .window-header-tool-wrapper .tool.restore {
  1911. background-image: url(../../../image/index/windowRestore.png);
  1912. }
  1913. .v-pagination .left-paging .v-pagination-first {
  1914. background-image: url(../../../image/index/notifyShowAllPagination.png);
  1915. }
  1916. .v-pagination .left-paging .v-pagination-prev {
  1917. background-image: url(../../../image/index/notifyShowAllPagination1.png);
  1918. }
  1919. .v-pagination .left-paging .v-pagination-next {
  1920. background-image: url(../../../image/index/notifyShowAllPagination1.png);
  1921. }
  1922. .v-pagination .left-paging .v-pagination-last {
  1923. background-image: url(../../../image/index/notifyShowAllPagination.png);
  1924. }
  1925. .v-pagination .v-pagination-right .v-pagination-refresh{
  1926. background-image: url(../../../image/index/reset.png);
  1927. }
  1928. /* userSetting */
  1929. .window-header-tool-wrapper .tool.help{
  1930. background-image: url(../../../image/index/wdheader_bt_help.png);
  1931. }
  1932. .window-header-tool-wrapper .tool.minimize{
  1933. background-image: url(../../../image/index/wdheader_bt_minimize.png);
  1934. }
  1935. /* userAbout */
  1936. .sds-user-about-window .v-trap-focus-body {
  1937. padding: 24px 30px 24px 30px;
  1938. box-sizing: border-box;
  1939. }
  1940. .sds-user-about-window .v-trap-focus-body .title {
  1941. line-height: 32px;
  1942. font-size: 22px;
  1943. }
  1944. .sds-user-about-window .v-trap-focus-body .version {
  1945. line-height: 20px;
  1946. font-size: 13px;
  1947. margin-top: 6px;
  1948. }
  1949. .sds-user-about-window .v-trap-focus-body .links-info {
  1950. margin-top: 88px;
  1951. }
  1952. .sds-user-about-window .v-trap-focus-body .links-info .link-block {
  1953. margin-bottom: 6px;
  1954. }
  1955. .sds-user-about-window .v-trap-focus-body .links-info .link {
  1956. line-height: 20px;
  1957. }
  1958. .sds-user-about-window .v-trap-focus-body .footer-info {
  1959. position: absolute;
  1960. width: 100%;
  1961. bottom: 24px;
  1962. left: 0;
  1963. display: flex;
  1964. flex-direction: row;
  1965. padding: 0 30px;
  1966. box-sizing: border-box;
  1967. }
  1968. .sds-user-about-window .v-trap-focus-body .footer-info .copyright {
  1969. color: rgba(65,75,85,0.6);
  1970. font-size: 12px;
  1971. display: inline-block;
  1972. vertical-align: top;
  1973. line-height: 20px;
  1974. padding: 2px 0;
  1975. flex: 1 1 auto;
  1976. }
  1977. .sds-user-about-window .v-trap-focus-body .footer-info .logo {
  1978. display: inline-block;
  1979. vertical-align: top;
  1980. width: 78px;
  1981. height: 24px;
  1982. flex: 0 0 auto;
  1983. background-image: url(../../../image/index/userAboutLogo.png);
  1984. background-size: 78px 24px;
  1985. }
  1986. .sds-user-about-window .window-header-tool-wrapper {
  1987. position: absolute;
  1988. top: 12px;
  1989. right: 12px;
  1990. margin-right: 0;
  1991. }
  1992. .window-header-tool-wrapper .tool.close {
  1993. background-image: url(../../../image/index/windowClose.png);
  1994. background-size: 24px 72px;
  1995. background-position: 0 0;
  1996. }
  1997. /* 遮罩层 */
  1998. .ext-el-mask-msg{
  1999. width: calc(100vw);
  2000. height: calc(100vh);
  2001. }
  2002. /* 消息弹出框 */
  2003. .sds-window-v5 .x-window-body {
  2004. padding: 24px 30px 0 30px;
  2005. }
  2006. /* 清除全部notify消息弹出框 */
  2007. .sds-window-v5.x-window-dlg.confirm-delete-icon:before {
  2008. content: '';
  2009. position: absolute;
  2010. top: -14px;
  2011. left: 30px;
  2012. width: 48px;
  2013. height: 48px;
  2014. border-radius: 24px;
  2015. background-color: #E64040;
  2016. background-image: url("../../../image/index/dialog_alarm.png");
  2017. box-shadow: 0 6px 12px 0 rgba(230,64,64,0.15);
  2018. z-index: 10;
  2019. background-position: 8px 8px;
  2020. background-repeat: no-repeat;
  2021. }
  2022. .v-btn-danger{
  2023. color:#fff;
  2024. background-color: #E64040;
  2025. border: 1px solid #E64040;
  2026. }
  2027. .sds-window-v5.confirm-delete-icon .x-window-body{
  2028. padding: 24px 30px 0px;
  2029. width: 420px;
  2030. height: auto;
  2031. }
  2032. .v-window.v-message-box-window .message-box .body-wrapper .dialog-icon-wrapper .dialog-icon.alarm {
  2033. width: 32px;
  2034. height: 32px;
  2035. background-image: url("../../../image/index/dialog_alarm.png");
  2036. background-size: 32px 32px;
  2037. }
  2038. .v-window .v-window-mask {
  2039. top: 0;
  2040. }
  2041. @keyframes notifyShowAllClearAllAnimate {
  2042. 0% {
  2043. box-shadow: 0 4px 16px 0 rgba(0,0,0,.6);
  2044. }
  2045. 25% {
  2046. box-shadow: none ;
  2047. }
  2048. 50% {
  2049. box-shadow: 0 4px 16px 0 rgba(0,0,0,.6);
  2050. }
  2051. 75% {
  2052. box-shadow: none ;
  2053. }
  2054. 100% {
  2055. box-shadow: 0 4px 16px 0 rgba(0,0,0,.6);
  2056. }
  2057. }
  2058. .notify-showall-window .v-message-box-window.no-shadow{
  2059. animation: notifyShowAllClearAllAnimate .35s linear;
  2060. }
  2061. /* .notify-showall-window .no-shadow{
  2062. box-shadow: none ;
  2063. } */
  2064. /* userAbout消息弹出框 */
  2065. .sds-user-about-mask {
  2066. background-color: #000000;
  2067. /* z-index: 90000 !important; */
  2068. opacity: 0.2;
  2069. }
  2070. /* 用户关机消息弹出框 */
  2071. .v-window-container-mask{
  2072. background-color: rgba(0, 0, 0, 0.5);
  2073. }
  2074. .x-clear {
  2075. clear: both;
  2076. font-size: 0;
  2077. height: 0;
  2078. line-height: 0;
  2079. overflow: hidden;
  2080. }