mirror of
https://github.com/silverstripe/silverstripe-dms
synced 2024-10-22 14:05:56 +02:00
MINOR: Fix styling to error message when replacing with a non supported document extension
This commit is contained in:
parent
5ba3fc1332
commit
b4d00d40eb
@ -28,7 +28,13 @@ form.small .field input.text, form.small .field textarea, form.small .field sele
|
|||||||
#ActionsPanel .fieldgroup-field { float: none; width: auto; }
|
#ActionsPanel .fieldgroup-field { float: none; width: auto; }
|
||||||
#ActionsPanel .fieldgroup-field .fieldholder-small label { float: none; width: auto; margin: 0; padding: 0; }
|
#ActionsPanel .fieldgroup-field .fieldholder-small label { float: none; width: auto; margin: 0; padding: 0; }
|
||||||
#ActionsPanel .fieldgroup-field .fieldholder-small label.ss-ui-button { float: left; margin: 0 10px 0 0; }
|
#ActionsPanel .fieldgroup-field .fieldholder-small label.ss-ui-button { float: left; margin: 0 10px 0 0; }
|
||||||
|
#ActionsPanel .ss-uploadfield-files .ss-uploadfield-item-preview { background: url("../images/app_icons/generic_32.png") -10px -6px no-repeat; }
|
||||||
|
#ActionsPanel .ss-uploadfield-files .ss-uploadfield-item-name span.name { width: 260px; }
|
||||||
|
#ActionsPanel .ss-uploadfield-files .ss-uploadfield-item-actions .ss-uploadfield-item-cancel { width: auto; text-indent: 0; }
|
||||||
|
#ActionsPanel .ss-uploadfield-files .ss-uploadfield-item-actions .ss-uploadfield-item-cancel .btn-icon-deleteLight { background-position: 0 -128px; display: inline-block; }
|
||||||
|
#ActionsPanel .ss-uploadfield-files .ss-uploadfield-item-actions .ss-uploadfield-item-cancel .ui-button-text { display: block; position: relative; float: right; color: #555; padding: 0; padding-left: 2em; }
|
||||||
|
|
||||||
#Form_ItemEditForm fieldset table.ss-gridfield-table { width: auto; max-width: 508px; }
|
#Form_ItemEditForm fieldset table.ss-gridfield-table { width: 508px; }
|
||||||
#Form_ItemEditForm fieldset table.ss-gridfield-table tr th.main { min-width: 175px; }
|
#Form_ItemEditForm fieldset table.ss-gridfield-table tr th.main { min-width: 175px; }
|
||||||
#Form_ItemEditForm fieldset table.ss-gridfield-table tr th.main.col-action_SetOrderID { width: 60px; min-width: 60px; }
|
#Form_ItemEditForm fieldset table.ss-gridfield-table tr th.main.col-action_SetOrderID { width: 60px; min-width: 60px; }
|
||||||
|
#Form_ItemEditForm fieldset table.ss-gridfield-table tr td { white-space: normal; }
|
||||||
|
@ -123,13 +123,41 @@ form.small .field .TreeDropdownField,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.ss-uploadfield-files{
|
||||||
|
.ss-uploadfield-item-preview{
|
||||||
|
background: url('../images/app_icons/generic_32.png') -10px -6px no-repeat;
|
||||||
|
}
|
||||||
|
.ss-uploadfield-item-name{
|
||||||
|
span.name{
|
||||||
|
width: 260px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.ss-uploadfield-item-actions{
|
||||||
|
.ss-uploadfield-item-cancel{
|
||||||
|
width: auto;
|
||||||
|
text-indent:0;
|
||||||
|
.btn-icon-deleteLight{
|
||||||
|
background-position: 0 -128px;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
.ui-button-text{
|
||||||
|
display: block;
|
||||||
|
position: relative;
|
||||||
|
float: right;
|
||||||
|
color: #555;
|
||||||
|
padding:0;
|
||||||
|
padding-left: 2em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#Form_ItemEditForm{
|
#Form_ItemEditForm{
|
||||||
fieldset{
|
fieldset{
|
||||||
table.ss-gridfield-table{
|
table.ss-gridfield-table{
|
||||||
width: auto;
|
width: 508px;
|
||||||
max-width:508px;
|
//max-width:508px;
|
||||||
tr{
|
tr{
|
||||||
th.main{
|
th.main{
|
||||||
min-width:175px;
|
min-width:175px;
|
||||||
@ -138,6 +166,9 @@ form.small .field .TreeDropdownField,
|
|||||||
min-width:60px;
|
min-width:60px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
td{
|
||||||
|
white-space:normal;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user