1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- .zoom-actions,
- .undo-redo-buttons {
- background-color: var(--island-bg-color);
- border-radius: var(--border-radius-lg);
- }
- .zoom-button,
- .undo-redo-buttons button {
- border: 1px solid var(--default-border-color) !important;
- border-radius: 0 !important;
- background-color: transparent !important;
- font-size: 0.875rem !important;
- width: var(--lg-button-size);
- height: var(--lg-button-size);
- svg {
- width: var(--lg-icon-size) !important;
- height: var(--lg-icon-size) !important;
- }
- .ToolIcon__icon {
- width: 100%;
- height: 100%;
- }
- }
- .reset-zoom-button {
- border-left: 0 !important;
- border-right: 0 !important;
- padding: 0 0.625rem !important;
- width: 3.75rem !important;
- justify-content: center;
- color: var(--text-primary-color);
- }
- .zoom-out-button {
- border-top-left-radius: var(--border-radius-lg) !important;
- border-bottom-left-radius: var(--border-radius-lg) !important;
- :root[dir="rtl"] & {
- transform: scaleX(-1);
- }
- .ToolIcon__icon {
- border-top-right-radius: 0 !important;
- border-bottom-right-radius: 0 !important;
- }
- }
- .zoom-in-button {
- border-top-right-radius: var(--border-radius-lg) !important;
- border-bottom-right-radius: var(--border-radius-lg) !important;
- :root[dir="rtl"] & {
- transform: scaleX(-1);
- }
- .ToolIcon__icon {
- border-top-left-radius: 0 !important;
- border-bottom-left-radius: 0 !important;
- }
- }
- .undo-redo-buttons {
- .undo-button-container button {
- border-top-left-radius: var(--border-radius-lg) !important;
- border-bottom-left-radius: var(--border-radius-lg) !important;
- border-right: 0 !important;
- :root[dir="rtl"] & {
- transform: scaleX(-1);
- }
- .ToolIcon__icon {
- border-top-right-radius: 0 !important;
- border-bottom-right-radius: 0 !important;
- }
- }
- .redo-button-container button {
- border-top-right-radius: var(--border-radius-lg) !important;
- border-bottom-right-radius: var(--border-radius-lg) !important;
- :root[dir="rtl"] & {
- transform: scaleX(-1);
- }
- .ToolIcon__icon {
- border-top-left-radius: 0 !important;
- border-bottom-left-radius: 0 !important;
- }
- }
- }
|