| 1 |
.tableberg-edit-toolbar { |
| 2 |
position: fixed; |
| 3 |
z-index: 100000; |
| 4 |
display: flex; |
| 5 |
flex-direction: row; |
| 6 |
align-items: flex-start; |
| 7 |
gap: 8px; |
| 8 |
transform: translateX(-100%); |
| 9 |
pointer-events: none; |
| 10 |
} |
| 11 |
|
| 12 |
.tableberg-edit-toolbar-column { |
| 13 |
display: flex; |
| 14 |
flex-direction: column; |
| 15 |
gap: 8px; |
| 16 |
} |
| 17 |
|
| 18 |
.tableberg-edit-toolbar-group { |
| 19 |
position: relative; |
| 20 |
display: flex; |
| 21 |
flex-direction: column; |
| 22 |
pointer-events: auto; |
| 23 |
background: #fff; |
| 24 |
border: 1px solid #ddd; |
| 25 |
border-radius: 4px; |
| 26 |
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08); |
| 27 |
overflow: hidden; |
| 28 |
|
| 29 |
.components-toolbar-button { |
| 30 |
justify-content: center; |
| 31 |
width: 40px; |
| 32 |
min-width: 40px; |
| 33 |
height: 34px; |
| 34 |
border-radius: 0; |
| 35 |
|
| 36 |
&:not(:last-child) { |
| 37 |
border-bottom: 1px solid #f0f0f0; |
| 38 |
} |
| 39 |
} |
| 40 |
} |
| 41 |
|
| 42 |
.tableberg-edit-toolbar-button-anchor { |
| 43 |
display: flex; |
| 44 |
} |
| 45 |
|
| 46 |
.tableberg-edit-toolbar-tooltip { |
| 47 |
position: absolute; |
| 48 |
z-index: 12; |
| 49 |
padding: 4px 8px; |
| 50 |
border-radius: 2px; |
| 51 |
background: #1e1e1e; |
| 52 |
color: #f0f0f0; |
| 53 |
font-family: |
| 54 |
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, |
| 55 |
Ubuntu, Cantarell, "Helvetica Neue", sans-serif; |
| 56 |
font-size: 12px; |
| 57 |
font-weight: 400; |
| 58 |
line-height: 1.4; |
| 59 |
text-align: center; |
| 60 |
white-space: nowrap; |
| 61 |
transform: translateY(-50%); |
| 62 |
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28); |
| 63 |
pointer-events: none; |
| 64 |
} |
| 65 |
|
| 66 |
.tableberg-edit-toolbar-group-advanced { |
| 67 |
.components-toolbar-button { |
| 68 |
color: #555; |
| 69 |
} |
| 70 |
} |
| 71 |
|
| 72 |
@media (max-width: 1024px) { |
| 73 |
.tableberg-edit-toolbar-group .components-toolbar-button { |
| 74 |
width: 36px; |
| 75 |
min-width: 36px; |
| 76 |
} |
| 77 |
} |
| 78 |
|