You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
344 B
22 lines
344 B
/** |
|
* @file |
|
* Image upload widget. |
|
*/ |
|
|
|
.image-preview { |
|
float: left; /* LTR */ |
|
padding: 0 10px 10px 0; /* LTR */ |
|
} |
|
[dir="rtl"] .image-preview { |
|
float: right; |
|
padding: 0 0 10px 10px; |
|
} |
|
.image-widget-data { |
|
float: left; /* LTR */ |
|
} |
|
[dir="rtl"] .image-widget-data { |
|
float: right; |
|
} |
|
.image-widget-data .text-field { |
|
width: auto; |
|
}
|
|
|