Sha256: 3700d12823a1e13c1340805475506b6510c10293594b75c470f7acdb1d792a51

Contents?: true

Size: 1.84 KB

Versions: 8

Compression:

Stored size: 1.84 KB

Contents

// The row editor
.editor.row {
    position: absolute;
    width: 100%;
    right: 25px;
    left: 5px;
    z-index:11;
    min-height: 10px;

    pointer-events: none;
    .editing-body { pointer-events: none; }
    .fields   { pointer-events: all;  }
    .controls { pointer-events: none; }
    .buttons  { pointer-events: all;  }

    label { display: none; }

    .fields {
        flex-direction: row;
        background: $editor-background;
        .value {
            width: 100%;
            height: 35px;
            border-radius: 5px;
            flex: 1;
            .rw-input { height: 35px; }
        }
        .field {
            &.center input { text-align: center; }
            &.right  input { text-align: right;  }
        }
        .hippo-field, .form-group {
            flex: 1;
            display: flex;
            align-items: center;
            margin: 0;
        }
    }
    .controls .buttons {
        background: $editor-background;
        padding: 2px 8px 8px 8px;
        position: relative;
        border-bottom-left-radius: 7px;
        border-bottom-right-radius: 7px;

        button {
            margin-left: 20px;
            &:first-child {
                margin-left: 0;
            }
        }
        // http://css-tricks.com/better-tabs-with-round-out-borders/
        &:before,
        &:after {
            position: absolute;
            top: -1px;
            width: 7px;
            height: 6px;
            content: " ";
        }
        &:before {
            left: -7px;
            border-top-right-radius: 6px;
            border-width: 1px 1px 0px 0px;
            box-shadow: 3px 0px 0px $editor-background;
        }
        &:after {
            right: -7px;
            border-top-left-radius: 6px;
            border-width: 1px 0px 0px 1px;
            box-shadow: -3px 0px 0px $editor-background;
        }
    }
}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
hippo-fw-0.9.8 client/hippo/components/grid/row-editor.scss
hippo-fw-0.9.7 client/hippo/components/grid/row-editor.scss
hippo-fw-0.9.6 client/hippo/components/grid/row-editor.scss
hippo-fw-0.9.5 client/hippo/components/grid/row-editor.scss
hippo-fw-0.9.4 client/hippo/components/grid/row-editor.scss
hippo-fw-0.9.3 client/hippo/components/grid/row-editor.scss
hippo-fw-0.9.2 client/hippo/components/grid/row-editor.scss
hippo-fw-0.9.1 client/hippo/components/grid/row-editor.scss