dashboard.css 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785
  1. /* SPDX-License-Identfier: GPL-3.0-or-later */
  2. :root {
  3. --color-main: #35414A;
  4. --color-primary: #00ab44;
  5. --color-border: #93a3b0;
  6. }
  7. html,
  8. body {
  9. /*font-family: Calibri,"Segoe UI","Helvetica Neue",Helvetica,Arial,sans-serif;*/
  10. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  11. font-style: normal;
  12. font-variant: normal;
  13. }
  14. .morelink {
  15. color: var(--color-attention, #765d9c);
  16. text-decoration: none;
  17. }
  18. .morelink:hover {
  19. color: var(--color-attentionSecondary, #563d7c);
  20. text-decoration: none;
  21. }
  22. .morelink:focus {
  23. color: var(--color-attention, #765d9c);
  24. text-decoration: none;
  25. }
  26. .netdata-chart-alignment {
  27. /* 55 for legend-right */
  28. margin-left: 35px;
  29. }
  30. .netdata-chart-row {
  31. width: 100%;
  32. text-align: center;
  33. display: flex;
  34. display: -webkit-flex;
  35. display: -moz-flex;
  36. align-items: baseline;
  37. -moz-align-items: baseline;
  38. -webkit-align-items: baseline;
  39. justify-content: center;
  40. -webkit-justify-content: center;
  41. -moz-justify-content: center;
  42. padding-top: 10px;
  43. }
  44. .netdata-container {
  45. display: inline-block;
  46. overflow: hidden;
  47. transform: translate3d(0,0,0);
  48. /* required for child elements to have absolute position */
  49. position: relative;
  50. /* width and height is given per chart with data-width and data-height */
  51. }
  52. .netdata-container-gauge {
  53. display: inline-block;
  54. overflow: hidden;
  55. transform: translate3d(0,0,0);
  56. /* required for child elements to have absolute position */
  57. position: relative;
  58. /* width and height is given per chart with data-width and data-height */
  59. }
  60. .netdata-container-gauge:after {
  61. padding-top: 60%;
  62. display: block;
  63. content: '';
  64. }
  65. .netdata-container-easypiechart {
  66. display: inline-block;
  67. overflow: hidden;
  68. transform: translate3d(0,0,0);
  69. /* required for child elements to have absolute position */
  70. position: relative;
  71. /* width and height is given per chart with data-width and data-height */
  72. }
  73. .netdata-container-easypiechart:after {
  74. padding-top: 100%;
  75. display: block;
  76. content: '';
  77. }
  78. .netdata-aspect {
  79. position: relative;
  80. width: 100%;
  81. padding: 0px;
  82. margin: 0px;
  83. }
  84. .netdata-container-with-legend {
  85. display: inline-block;
  86. overflow: hidden;
  87. transform: translate3d(0,0,0);
  88. /* fix minimum scrollbar issue in firefox */
  89. min-height: 99px;
  90. /* required for child elements to have absolute position */
  91. position: relative;
  92. /* width and height is given per chart with data-width and data-height */
  93. }
  94. .netdata-container-with-legend.netdata-container-with-legend--bottom {
  95. display: flex;
  96. flex-direction: column;
  97. }
  98. .netdata-legend-resize-handler {
  99. display: block;
  100. position: absolute;
  101. bottom: 0px;
  102. right: 0px;
  103. height: 15px;
  104. width: 20px;
  105. background-color: var(--color-mainBackground, #fff);
  106. font-size: 15px;
  107. vertical-align: middle;
  108. line-height: 15px;
  109. cursor: ns-resize;
  110. color: var(--color-selected, #CDCDCD);
  111. text-align: center;
  112. overflow: hidden;
  113. padding: 0px;
  114. margin: 0px;
  115. }
  116. .netdata-legend-toolbox {
  117. display: block;
  118. position: absolute;
  119. bottom: 0px;
  120. right: 0px;
  121. height: 15px;
  122. width: 110px;
  123. font-size: 12px;
  124. vertical-align: middle;
  125. line-height: 15px;
  126. color: var(--color-placeholder, #DDDDDD);
  127. text-align: center;
  128. overflow: hidden;
  129. padding: 0px;
  130. margin: 0px;
  131. /* prevent text selection after double click */
  132. -webkit-user-select: none; /* webkit (safari, chrome) browsers */
  133. -moz-user-select: none; /* mozilla browsers */
  134. -khtml-user-select: none; /* webkit (konqueror) browsers */
  135. -ms-user-select: none; /* IE10+ */
  136. }
  137. .netdata-legend-toolbox-button {
  138. display: inline-block;
  139. position: relative;
  140. height: 15px;
  141. width: 18px;
  142. background-color: var(--color-mainBackground, #fff);
  143. font-size: 12px;
  144. vertical-align: middle;
  145. line-height: 15px;
  146. color: var(--color-selected, #CDCDCD);
  147. text-align: center;
  148. overflow: hidden;
  149. padding: 0px;
  150. margin: 0px;
  151. cursor: pointer;
  152. /* prevent text selection after double click */
  153. -webkit-user-select: none; /* webkit (safari, chrome) browsers */
  154. -moz-user-select: none; /* mozilla browsers */
  155. -khtml-user-select: none; /* webkit (konqueror) browsers */
  156. -ms-user-select: none; /* IE10+ */
  157. }
  158. .netdata-message {
  159. display: inline-block;
  160. position: absolute;
  161. top: 0;
  162. left: 0;
  163. right: 0;
  164. bottom: 0;
  165. text-align: left;
  166. vertical-align: top;
  167. font-weight: bold;
  168. font-size: x-small;
  169. overflow: hidden;
  170. background: inherit;
  171. z-index: 0;
  172. }
  173. .netdata-message.hidden {
  174. display: none;
  175. }
  176. .netdata-message.icon {
  177. color: var(--color-borderSecondary, #F8F8F8);
  178. text-align: center;
  179. vertical-align: middle;
  180. }
  181. .netdata-chart-legend {
  182. position: absolute; /* within .netdata-container */
  183. top: 26px;
  184. bottom: 18px;
  185. right: 0;
  186. overflow-x: hidden;
  187. overflow-y: auto;
  188. text-overflow: ellipsis;
  189. line-height: 14px;
  190. display: block;
  191. width: 140px; /* --legend-width */
  192. font-size: 10px;
  193. margin-top: 5px;
  194. text-align: left;
  195. /* width and height is calculated (depends on the appearance of the legend) */
  196. }
  197. .netdata-legend-title-date {
  198. font-size: 10px;
  199. font-weight: normal;
  200. margin-top: 0px;
  201. overflow: hidden;
  202. text-overflow: ellipsis;
  203. white-space: nowrap;
  204. }
  205. .netdata-legend-title-time {
  206. font-size: 11px;
  207. font-weight: bold;
  208. margin-top: 0px;
  209. overflow: hidden;
  210. text-overflow: ellipsis;
  211. white-space: nowrap;
  212. }
  213. .netdata-legend-title-units {
  214. position: absolute;
  215. right: 10px;
  216. float: right;
  217. font-size: 11px;
  218. vertical-align: top;
  219. font-weight: normal;
  220. margin-top: 0px;
  221. overflow: hidden;
  222. text-overflow: ellipsis;
  223. white-space: nowrap;
  224. }
  225. .netdata-legend-series {
  226. position: absolute;
  227. width: 140px; /* legend-width */
  228. height: calc(100% - 50px);
  229. overflow: hidden;
  230. text-overflow: ellipsis;
  231. line-height: 14.5px; /* line spacing at the legend */
  232. display: block;
  233. font-size: 10px;
  234. margin-top: 0px;
  235. }
  236. .netdata-legend-name-table-line {
  237. display: inline-block;
  238. width: 13px;
  239. height: 4px;
  240. border-width: 0px;
  241. border-bottom-width: 2px;
  242. border-bottom-style: solid;
  243. border-bottom-color: white;
  244. }
  245. .netdata-legend-name-table-area {
  246. display: inline-block;
  247. width: 13px;
  248. height: 5px;
  249. border-width: 1px;
  250. border-top-width: 1px;
  251. border-top-style: solid;
  252. border-top-color: inherit;
  253. }
  254. .netdata-legend-name-table-stacked {
  255. display: inline-block;
  256. width: 13px;
  257. height: 5px;
  258. border-width: 1px;
  259. border-top-width: 1px;
  260. border-top-style: solid;
  261. border-top-color: inherit;
  262. }
  263. .netdata-legend-name-tr {
  264. }
  265. .netdata-legend-name-td {
  266. }
  267. .netdata-legend-name {
  268. text-align: left;
  269. font-size: 11px; /* legend: dimension name size */
  270. font-weight: bold;
  271. vertical-align: bottom;
  272. margin-top: 0px;
  273. z-index: 9;
  274. padding: 0px;
  275. width: 80px !important;
  276. max-width: 80px !important;
  277. text-overflow: ellipsis;
  278. overflow: hidden;
  279. white-space: nowrap;
  280. display: inline-block;
  281. cursor: pointer;
  282. -webkit-print-color-adjust: exact;
  283. }
  284. .netdata-legend-value {
  285. /*margin-left: 14px;*/
  286. position: absolute;
  287. right: 10px;
  288. float: right;
  289. text-align: right;
  290. font-size: 11px; /* legend: dimension value size */
  291. font-weight: bold;
  292. vertical-align: bottom;
  293. background-color: var(--color-mainBackground, #fff);
  294. margin-top: 0px;
  295. z-index: 10;
  296. padding: 0px;
  297. padding-left: 15px;
  298. cursor: pointer;
  299. /* -webkit-font-smoothing: none; */
  300. }
  301. .netdata-legend-value, .netdata-legend-name {
  302. /* prevent highlight when shift-clicking */
  303. -webkit-user-select: none;
  304. -ms-user-select: none;
  305. -moz-user-select: none;
  306. user-select: none;
  307. }
  308. /* eslint recommends adding tabIndex for a11y, but the outline is showing on click */
  309. .netdata-legend-name:focus, .netdata-legend-value:focus {
  310. outline: none;
  311. }
  312. .netdata-legend-name.not-selected {
  313. font-weight: normal;
  314. opacity: 0.3;
  315. }
  316. .netdata-chart {
  317. position: absolute; /* within .netdata-container */
  318. top: 0; /* within .netdata-container */
  319. left: 0; /* within .netdata-container */
  320. display: inline-block;
  321. overflow: hidden;
  322. width: 100%;
  323. height: 100%;
  324. z-index: 5;
  325. /* width and height is calculated (depends on the appearance of the legend) */
  326. }
  327. .netdata-chart-with-legend-right {
  328. position: absolute; /* within .netdata-container */
  329. top: 0; /* within .netdata-container */
  330. left: 0; /* within .netdata-container */
  331. display: block;
  332. overflow: hidden;
  333. margin-right: 140px; /* --legend-width */
  334. width: calc(100% - 140px); /* --legend-width */
  335. height: 100%;
  336. z-index: 5;
  337. flex-grow: 1;
  338. /* width and height is calculated (depends on the appearance of the legend) */
  339. }
  340. .netdata-chart-with-legend-bottom {
  341. display: block;
  342. overflow: hidden;
  343. flex-grow: 1;
  344. }
  345. .netdata-peity-chart {
  346. }
  347. .netdata-sparkline-chart {
  348. }
  349. .netdata-dygraph-chart {
  350. }
  351. .netdata-morris-chart {
  352. }
  353. .netdata-google-chart {
  354. }
  355. .dygraph-ylabel {
  356. }
  357. .dygraph-axis-label-x {
  358. overflow-x: hidden;
  359. }
  360. .dygraph-label-rotate-left {
  361. text-align: center;
  362. /* See http://caniuse.com/#feat=transforms2d */
  363. transform: rotate(90deg);
  364. -webkit-transform: rotate(90deg);
  365. -moz-transform: rotate(90deg);
  366. -o-transform: rotate(90deg);
  367. -ms-transform: rotate(90deg);
  368. }
  369. /* For y2-axis label */
  370. .dygraph-label-rotate-right {
  371. text-align: center;
  372. /* See http://caniuse.com/#feat=transforms2d */
  373. transform: rotate(-90deg);
  374. -webkit-transform: rotate(-90deg);
  375. -moz-transform: rotate(-90deg);
  376. -o-transform: rotate(-90deg);
  377. -ms-transform: rotate(-90deg);
  378. }
  379. .dygraph-title {
  380. /* 56 for legend-right */
  381. text-indent: 36px;
  382. text-align: left;
  383. position: absolute;
  384. left: 0px;
  385. top: 4px;
  386. font-size: 11px;
  387. font-weight: bold;
  388. text-overflow: ellipsis;
  389. overflow: hidden;
  390. white-space: nowrap;
  391. }
  392. /* fix for sparkline tooltip under bootstrap */
  393. .jqstooltip {
  394. width: auto !important;
  395. height: auto !important;
  396. }
  397. .easyPieChart {
  398. position: relative;
  399. text-align: center;
  400. }
  401. .easyPieChart canvas {
  402. position: absolute;
  403. top: 0;
  404. left: 0;
  405. }
  406. .easyPieChartLabel {
  407. display: inline-block;
  408. position: absolute;
  409. float: left;
  410. left: 0;
  411. width: 100%;
  412. text-align: center;
  413. color: var(--color-main);
  414. font-weight: normal;
  415. text-shadow: var(--color-elementBackground, #BBB) 0px 0px 1px;
  416. /* -webkit-font-smoothing: none; */
  417. }
  418. .easyPieChartTitle {
  419. display: inline-block;
  420. position: absolute;
  421. float: left;
  422. left: 0;
  423. width: 64%;
  424. margin-left: 18% !important;
  425. text-align: center;
  426. color: var(--color-border, #999999);
  427. font-weight: bold;
  428. }
  429. .easyPieChartUnits {
  430. display: inline-block;
  431. position: absolute;
  432. float: left;
  433. left: 0;
  434. width: 60%;
  435. margin-left: 20% !important;
  436. text-align: center;
  437. color: var(--color-border, #999999);
  438. font-weight: normal;
  439. }
  440. .gaugeChart {
  441. position: relative;
  442. text-align: center;
  443. }
  444. .gaugeChart canvas {
  445. position: absolute;
  446. top: 0;
  447. left: 0;
  448. bottom: 0;
  449. right: 0;
  450. z-index: 0;
  451. }
  452. .gaugeChartLabel {
  453. display: inline-block;
  454. position: absolute;
  455. float: left;
  456. left: 0;
  457. width: 100%;
  458. text-align: center;
  459. color: var(--color-main);
  460. font-weight: bold;
  461. z-index: 1;
  462. text-shadow: var(--color-elementBackground, #777) 0px 0px 1px;
  463. /* text-shadow: #CCC 1px 1px 0px, #CCC -1px -1px 0px, #CCC 1px -1px 0px, #CCC -1px 1px 0px; */
  464. /* -webkit-text-stroke: 1px #777; */
  465. /* -webkit-font-smoothing: none; */
  466. }
  467. .gaugeChartTitle {
  468. display: inline-block;
  469. position: absolute;
  470. float: left;
  471. left: 0;
  472. width: 100%;
  473. text-align: center;
  474. color: var(--color-border, #999999);
  475. font-weight: bold;
  476. }
  477. .gaugeChartUnits {
  478. display: inline-block;
  479. position: absolute;
  480. float: left;
  481. left: 0;
  482. bottom: 0;
  483. width: 100%;
  484. text-align: left;
  485. margin-left: 5%;
  486. color: var(--color-border, #999999);
  487. font-weight: normal;
  488. }
  489. .gaugeChartMin {
  490. display: inline-block;
  491. position: absolute;
  492. float: left;
  493. left: 0;
  494. bottom: 8%;
  495. width: 92%;
  496. margin-left: 8%;
  497. text-align: left;
  498. color: var(--color-main);
  499. font-weight: normal;
  500. }
  501. .gaugeChartMax {
  502. display: inline-block;
  503. position: absolute;
  504. float: left;
  505. left: 0;
  506. bottom: 8%;
  507. width: 95%;
  508. margin-right: 5%;
  509. text-align: right;
  510. color: var(--color-main);
  511. font-weight: normal;
  512. }
  513. .popover-title {
  514. font-weight: bold;
  515. font-size: 12px;
  516. }
  517. .popover-content {
  518. font-size: 11px;
  519. }
  520. /* ----------------------------------------------------------------------------
  521. perfect-scrollbar settings
  522. */
  523. .ps-container {
  524. -ms-touch-action: auto;
  525. touch-action: auto;
  526. overflow: hidden !important;
  527. -ms-overflow-style: none;
  528. }
  529. @supports (-ms-overflow-style: none) {
  530. .ps-container {
  531. overflow: auto !important;
  532. }
  533. }
  534. @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  535. .ps-container {
  536. overflow: auto !important;
  537. }
  538. }
  539. .ps-container.ps-active-x > .ps-scrollbar-x-rail,
  540. .ps-container.ps-active-y > .ps-scrollbar-y-rail {
  541. display: block;
  542. background-color: transparent;
  543. }
  544. .ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
  545. background-color: transparent; /* background color when dragged away */
  546. opacity: 0.9;
  547. }
  548. .ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  549. background-color: #aaa; /* scrollbar color when dragged away */
  550. height: 5px;
  551. }
  552. .ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
  553. background-color: transparent; /* background color when dragged away */
  554. opacity: 0.9;
  555. }
  556. .ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  557. background-color: #aaa; /* scrollbar color when dragged away */
  558. width: 5px;
  559. }
  560. .ps-container > .ps-scrollbar-x-rail {
  561. display: none;
  562. position: absolute;
  563. /* please don't change 'position' */
  564. opacity: 0.2; /* the opacity when not on hover of the content */
  565. -webkit-transition: background-color .2s linear, opacity .2s linear;
  566. -o-transition: background-color .2s linear, opacity .2s linear;
  567. -moz-transition: background-color .2s linear, opacity .2s linear;
  568. transition: background-color .2s linear, opacity .2s linear;
  569. bottom: 0px;
  570. /* there must be 'bottom' for ps-scrollbar-x-rail */
  571. height: 15px;
  572. }
  573. .ps-container > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  574. position: absolute;
  575. /* please don't change 'position' */
  576. background-color: var(--color-elementBackground, #666); /* #aaa; the color on content hover */
  577. -webkit-border-radius: 6px;
  578. -moz-border-radius: 6px;
  579. border-radius: 6px;
  580. -webkit-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;
  581. transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;
  582. -o-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
  583. -moz-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;
  584. transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
  585. transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -webkit-border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;
  586. bottom: 2px;
  587. /* there must be 'bottom' for ps-scrollbar-x */
  588. height: 5px; /* the width of the scrollbar */
  589. }
  590. .ps-container > .ps-scrollbar-x-rail:hover > .ps-scrollbar-x, .ps-container > .ps-scrollbar-x-rail:active > .ps-scrollbar-x {
  591. height: 4px;
  592. }
  593. .ps-container > .ps-scrollbar-y-rail {
  594. display: none;
  595. position: absolute;
  596. /* please don't change 'position' */
  597. opacity: 0.2; /* the opacity when not on hover of the content */
  598. -webkit-transition: background-color .2s linear, opacity .2s linear;
  599. -o-transition: background-color .2s linear, opacity .2s linear;
  600. -moz-transition: background-color .2s linear, opacity .2s linear;
  601. transition: background-color .2s linear, opacity .2s linear;
  602. right: 0;
  603. /* there must be 'right' for ps-scrollbar-y-rail */
  604. width: 15px;
  605. }
  606. .ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  607. position: absolute;
  608. /* please don't change 'position' */
  609. background-color: var(--color-elementBackground, #666); /* #aaa; the color on content hover */
  610. -webkit-border-radius: 6px;
  611. -moz-border-radius: 6px;
  612. border-radius: 6px;
  613. -webkit-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;
  614. transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, -webkit-border-radius .2s ease-in-out;
  615. -o-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
  616. -moz-transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;
  617. transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out;
  618. transition: background-color .2s linear, height .2s linear, width .2s ease-in-out, border-radius .2s ease-in-out, -webkit-border-radius .2s ease-in-out, -moz-border-radius .2s ease-in-out;
  619. right: 2px;
  620. /* there must be 'right' for ps-scrollbar-y */
  621. width: 5px; /* the width of the scrollbar */
  622. }
  623. .ps-container > .ps-scrollbar-y-rail:hover > .ps-scrollbar-y, .ps-container > .ps-scrollbar-y-rail:active > .ps-scrollbar-y {
  624. width: 5px;
  625. }
  626. .ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail {
  627. background-color: transparent; /* background color when dragged */
  628. opacity: 0.9;
  629. }
  630. .ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  631. background-color: #bbb; /* scrollbar color when dragged */
  632. height: 5px;
  633. }
  634. .ps-container:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
  635. background-color: transparent; /* background color when dragged */
  636. opacity: 0.9;
  637. }
  638. .ps-container:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  639. background-color: #bbb; /* scrollbar color when dragged */
  640. width: 5px;
  641. }
  642. .ps-container:hover > .ps-scrollbar-x-rail,
  643. .ps-container:hover > .ps-scrollbar-y-rail {
  644. opacity: 0.6;
  645. }
  646. .ps-container:hover > .ps-scrollbar-x-rail:hover {
  647. background-color: transparent; /* the background color on hover of the scrollbar */
  648. opacity: 0.9;
  649. }
  650. .ps-container:hover > .ps-scrollbar-x-rail:hover > .ps-scrollbar-x {
  651. background-color: #999; /* scrollbar color on hover */
  652. }
  653. .ps-container:hover > .ps-scrollbar-y-rail:hover {
  654. background-color: transparent; /* the background color on hover of the scrollbar */
  655. opacity: 0.9;
  656. }
  657. .ps-container:hover > .ps-scrollbar-y-rail:hover > .ps-scrollbar-y {
  658. background-color: #999; /* scrollbar color on hover */
  659. }
  660. .dygraph__history-tip {
  661. position: absolute;
  662. transform: translateY(-50%);
  663. display: none; /* overridden in js */
  664. margin-right: 25px;
  665. direction: rtl;
  666. overflow: hidden;
  667. pointer-events: none;
  668. }
  669. .dygraph__history-tip-content {
  670. display: inline-block;
  671. white-space: nowrap;
  672. direction: ltr;
  673. pointer-events: auto;
  674. }