| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- .ag-chart {
- position: relative;
- display: flex;
- overflow: hidden;
- width: 100%;
- height: 100%;
- }
- .ag-chart-components-wrapper {
- position: relative;
- display: flex;
- flex: 1 1 auto;
- overflow: hidden;
- }
- .ag-chart-title-edit {
- position: absolute;
- display: none;
- top: 0;
- left: 0;
- text-align: center;
- }
- .ag-chart-title-edit.currently-editing {
- display: inline-block;
- }
- .ag-chart-canvas-wrapper {
- position: relative;
- flex: 1 1 auto;
- overflow: hidden;
- }
- .ag-charts-canvas {
- display: block;
- }
- .ag-chart-menu {
- position: absolute;
- top: 10px;
- width: 24px;
- overflow: hidden;
- display: flex;
- flex-direction: column;
- @include ag-unthemed-rtl((right: 20px));
- }
- .ag-chart-docked-container {
- position: relative;
- width: 0;
- min-width: 0;
- transition: min-width 0.4s;
- }
- .ag-chart-menu-hidden ~ .ag-chart-docked-container {
- max-width: 0;
- overflow: hidden;
- }
- .ag-chart-tabbed-menu {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- }
- .ag-chart-tabbed-menu-header {
- flex: none;
- user-select: none;
- cursor: default;
- }
- .ag-chart-tabbed-menu-body {
- display: flex;
- flex: 1 1 auto;
- align-items: stretch;
- overflow: hidden;
- }
- .ag-chart-tab {
- width: 100%;
- overflow: hidden;
- overflow-y: auto;
- }
- .ag-chart-settings {
- overflow-x: hidden;
- }
- .ag-chart-settings-wrapper {
- position: relative;
- flex-direction: column;
- width: 100%;
- height: 100%;
- display: flex;
- overflow: hidden;
- }
- .ag-chart-settings-nav-bar {
- width: 100%;
- display: flex;
- height: 30px;
- align-items: center;
- }
- .ag-chart-settings-card-selector {
- display: flex;
- align-items: center;
- justify-content: space-around;
- flex: 1 1 auto;
- height: 100%;
- padding: 0 10px; // increase size of click area for better UX
- }
- .ag-chart-settings-card-item {
- cursor: pointer;
- width: 10px;
- height: 10px;
- background-color: #000; // exception to the rule of no visual styles in functional stylesheet - without a background this element would be invisible
- position: relative;
- &.ag-not-selected {
- opacity: 0.2;
- }
- &:before {
- // make expanded click area
- content: " ";
- display: block;
- position: absolute;
- background-color: transparent;
- left: 50%;
- top: 50%;
- margin-left: -10px;
- margin-top: -10px;
- width: 20px;
- height: 20px;
- }
- }
- .ag-chart-settings-prev,
- .ag-chart-settings-next {
- position: relative;
- flex: none;
- }
- .ag-chart-settings-prev-button,
- .ag-chart-settings-next-button {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- cursor: pointer;
- opacity: 0;
- }
- .ag-chart-settings-mini-charts-container {
- position: relative;
- flex: 1 1 auto;
- overflow-x: hidden;
- overflow-y: auto;
- }
- .ag-chart-settings-mini-wrapper {
- position: absolute;
- top: 0;
- left: 0;
- display: flex;
- flex-direction: column;
- width: 100%;
- min-height: 100%;
- overflow: hidden;
- &.ag-animating {
- transition: left 0.3s;
- transition-timing-function: ease-in-out;
- }
- }
- .ag-chart-mini-thumbnail {
- cursor: pointer;
- }
- .ag-chart-mini-thumbnail-canvas {
- display: block;
- }
- .ag-chart-data-wrapper,
- .ag-chart-format-wrapper {
- display: flex;
- flex-direction: column;
- position: relative;
- user-select: none;
- }
- .ag-chart-data-section,
- .ag-chart-format-section {
- display: flex;
- margin: 0;
- }
- .ag-charts-font-panel-controls {
- justify-content: space-between;
- }
- .ag-chart-empty-text {
- display: flex;
- top: 0;
- width: 100%;
- height: 100%;
- align-items: center;
- justify-content: center;
- }
- .ag-chart .ag-chart-menu {
- opacity: 0;
- pointer-events: none;
- }
- .ag-chart-menu-hidden:hover .ag-chart-menu {
- opacity: 1;
- pointer-events: all;
- }
- .ag-chart-settings-nav-bar {
- padding: 0 10px;
- user-select: none;
- }
|