diff --git a/src/Umbraco.Web.UI.Client/src/less/forms.less b/src/Umbraco.Web.UI.Client/src/less/forms.less index 9fa781c401..e7ae20e154 100644 --- a/src/Umbraco.Web.UI.Client/src/less/forms.less +++ b/src/Umbraco.Web.UI.Client/src/less/forms.less @@ -337,6 +337,9 @@ textarea[class*="span"], display: inline-block; } +.bigInput, .input-large-type{ + font-size: 20px !important; +} // GRID SIZING FOR INPUTS diff --git a/src/Umbraco.Web.UI.Client/src/less/hacks.less b/src/Umbraco.Web.UI.Client/src/less/hacks.less index 1e214dc5d4..b8fe9c7270 100644 --- a/src/Umbraco.Web.UI.Client/src/less/hacks.less +++ b/src/Umbraco.Web.UI.Client/src/less/hacks.less @@ -1,17 +1,18 @@ // Hacks // ------------------------- -/* CONTAINS ALL HACKS AND OTHER QUICK-FIXES THAT WE MUST HANDLE BEFORE A RELEASE */ +/* CONTAINS ALL HACKS AND OTHER QUICK-FIXES */ /*wft ms?*/ *{ -ms-touch-action: none;} +/*we will always make sure to wrap iframe dialogs in proper padding*/ .umbracoDialog{ width: auto !Important; height: auto !Important; - margin: 20px } + /*ensures dialogs doesnt have side-by-side labels */ .umbracoDialog .controls-row{margin-left: 0px !important;} @@ -38,7 +39,6 @@ iframe, .content-column-body { } /* JQUERY FILEUPLOAD TEMP STYLES */ - .fileinput-button { position: relative; overflow: hidden; @@ -76,12 +76,14 @@ iframe, .content-column-body { display: block; } - +/*tree legacy icon*/ +.legacy-custom-file{ + width: 16px; height: 16px; margin-right: 11px; display: inline-block; + background-position: center center; +} /* TINYMCE OVERRIDES */ - .mce-tinymce{border: 1px solid @grayLight !important; } .mce-panel{background: @grayLighter !important; border-color: @grayLight !important;} - .mce-btn-group, .mce-btn{border: none !important; background: none !important;} .mce-ico{font-size: 12px !important; color: @blackLight !important;} \ No newline at end of file diff --git a/src/Umbraco.Web.UI.Client/src/less/main.less b/src/Umbraco.Web.UI.Client/src/less/main.less index ba13435287..e98cb87d59 100644 --- a/src/Umbraco.Web.UI.Client/src/less/main.less +++ b/src/Umbraco.Web.UI.Client/src/less/main.less @@ -161,7 +161,7 @@ label { /* FORM GRID */ .umb-pane { - padding: 30px 20px; + margin: 30px 20px; } .umb-control-group .umb-el-wrap { diff --git a/src/Umbraco.Web.UI.Client/src/less/modals.less b/src/Umbraco.Web.UI.Client/src/less/modals.less index 8786f4f6e7..a6ada828a3 100644 --- a/src/Umbraco.Web.UI.Client/src/less/modals.less +++ b/src/Umbraco.Web.UI.Client/src/less/modals.less @@ -45,16 +45,17 @@ /* umb.dialog is used for the dialogs on the conent tree*/ .umb-dialog { - padding: 20px 20px 0px 20px; outline: none; } + .umb-dialog .umb-btn-toolbar { text-align: right; - padding-top: 15px; + padding: 15px 20px 10px 20px; margin-top: 30px; clear: both; border-top: #efefef 1px solid } + .umb-dialog-body{ overflow:auto; }