@sunggang/ui-lib 0.1.70 → 0.1.72

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.esm.css CHANGED
@@ -3221,4 +3221,70 @@ button.rbc-input::-moz-focus-inner {
3221
3221
  height: 1px;
3222
3222
  background-color: #74ad31;
3223
3223
  pointer-events: none;
3224
- }
3224
+ }
3225
+ .rbc-addons-dnd .rbc-addons-dnd-row-body {
3226
+ position: relative;
3227
+ }
3228
+ .rbc-addons-dnd .rbc-addons-dnd-drag-row {
3229
+ position: absolute;
3230
+ top: 0;
3231
+ left: 0;
3232
+ right: 0;
3233
+ }
3234
+ .rbc-addons-dnd .rbc-addons-dnd-over {
3235
+ background-color: rgba(0, 0, 0, 0.3);
3236
+ }
3237
+ .rbc-addons-dnd .rbc-event {
3238
+ transition: opacity 150ms;
3239
+ }
3240
+ .rbc-addons-dnd .rbc-event:hover .rbc-addons-dnd-resize-ns-icon, .rbc-addons-dnd .rbc-event:hover .rbc-addons-dnd-resize-ew-icon {
3241
+ display: block;
3242
+ }
3243
+ .rbc-addons-dnd .rbc-addons-dnd-dragged-event {
3244
+ opacity: 0;
3245
+ }
3246
+ .rbc-addons-dnd.rbc-addons-dnd-is-dragging .rbc-event:not(.rbc-addons-dnd-dragged-event):not(.rbc-addons-dnd-drag-preview) {
3247
+ opacity: 0.5;
3248
+ }
3249
+ .rbc-addons-dnd .rbc-addons-dnd-resizable {
3250
+ position: relative;
3251
+ width: 100%;
3252
+ height: 100%;
3253
+ }
3254
+ .rbc-addons-dnd .rbc-addons-dnd-resize-ns-anchor {
3255
+ width: 100%;
3256
+ text-align: center;
3257
+ position: absolute;
3258
+ }
3259
+ .rbc-addons-dnd .rbc-addons-dnd-resize-ns-anchor:first-child {
3260
+ top: 0;
3261
+ }
3262
+ .rbc-addons-dnd .rbc-addons-dnd-resize-ns-anchor:last-child {
3263
+ bottom: 0;
3264
+ }
3265
+ .rbc-addons-dnd .rbc-addons-dnd-resize-ns-anchor .rbc-addons-dnd-resize-ns-icon {
3266
+ display: none;
3267
+ border-top: 3px double;
3268
+ margin: 0 auto;
3269
+ width: 10px;
3270
+ cursor: ns-resize;
3271
+ }
3272
+ .rbc-addons-dnd .rbc-addons-dnd-resize-ew-anchor {
3273
+ position: absolute;
3274
+ top: 4px;
3275
+ bottom: 0;
3276
+ }
3277
+ .rbc-addons-dnd .rbc-addons-dnd-resize-ew-anchor:first-child {
3278
+ left: 0;
3279
+ }
3280
+ .rbc-addons-dnd .rbc-addons-dnd-resize-ew-anchor:last-child {
3281
+ right: 0;
3282
+ }
3283
+ .rbc-addons-dnd .rbc-addons-dnd-resize-ew-anchor .rbc-addons-dnd-resize-ew-icon {
3284
+ display: none;
3285
+ border-left: 3px double;
3286
+ margin-top: auto;
3287
+ margin-bottom: auto;
3288
+ height: 10px;
3289
+ cursor: ew-resize;
3290
+ }