Playing with new UI for editing videos

Profile Picture
Profile Picture
- Published on Nov 15, 2019馃審 Public

We discussed some days ago about making it easier to edit video page by allowing people to click on the content to edit it.

I was playing with some style for it.

.commit-description-block-edit-mode {
    padding-bottom: 20px;
    margin-bottom: 20px;
    word-wrap: break-word;
    background-color: var(--secondary-bg-color);
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 15px;
    border: 1px dashed var(--dark);
}

.commit-description-block-edit-mode:hover {
    background-color: var(--third-bg-color);
}

h1.edit-mode {
    margin-bottom: 0;
    background-color: var(--secondary-bg-color);
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    border: 1px dashed var(--dark);
}

h1.edit-mode:hover {
    background-color: var(--third-bg-color);
}