﻿/* Fixes floating "full screen" toolbar button on HTML field editor */
.sfPageEditor .sf-backend-wrp .modal-body .k-editor-widget .k-editor-toolbar > li:nth-last-child(2) {
    position: static;
}

/* Fixes Cancel link sinking below the Submit button */
.sfPageEditor .modal-dialog .btn {
    margin-top: 0;
}

/* Cosmetic changes */
.sfPageEditor .modal-dialog .row {
    margin-top: 20px;
}

/* Hide Hour / Minute selector from sf-date-time-picker */
.sfPageEditor .modal-dialog .datePicker .col-xs-3 {
    display: none;
}

/* Lengthen DatePicker textbox so full date is visible at all times in sf-date-time-picker */
.sfPageEditor .modal-dialog .datePicker #fromInput {
    width: 200px;
}

/* Hide pointless week count in sf-date-time-picker */
.sfPageEditor .modal-dialog .datePicker .uib-weeks em {
    display: none;
}

/* Make textboxes a uniform size within designers. */
.sfPageEditor .modal-dialog label input[type=text] {
    display: block;
    width: 500px;
}

/* General textarea size */
.sfPageEditor .modal-dialog textarea {
    height: 150px;
    width: 500px;
}

/* For instructional text */
.sfPageEditor .modal-dialog .instruction {
    display: block;
    font-size: smaller;
}