mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-09 20:30:43 +01:00
c419700f93
Prevents the overlay from blocking buttons inside the attachment preview, such as the remove button in the gallery editor. see #21390. git-svn-id: http://core.svn.wordpress.org/trunk@22343 1a063a9b-81f0-0310-95a4-ce76da25c4cd
647 lines
10 KiB
CSS
647 lines
10 KiB
CSS
/**
|
|
* Modal
|
|
*/
|
|
.media-modal {
|
|
position: fixed;
|
|
top: 80px;
|
|
left: 60px;
|
|
right: 60px;
|
|
bottom: 60px;
|
|
z-index: 125000;
|
|
}
|
|
|
|
.media-modal-backdrop {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: #000;
|
|
opacity: 0.8;
|
|
z-index: 120000;
|
|
}
|
|
|
|
.media-modal-title,
|
|
.media-modal-close {
|
|
position: absolute;
|
|
top: -40px;
|
|
height: 40px;
|
|
|
|
line-height: 40px;
|
|
color: #fff;
|
|
font-weight: 200;
|
|
text-shadow: 0 0 16px rgba( 0, 0, 0, 0.6 );
|
|
}
|
|
|
|
.media-modal-title {
|
|
left: 0;
|
|
float: left;
|
|
padding: 0;
|
|
margin: 0;
|
|
font-size: 1.4em;
|
|
}
|
|
|
|
.media-modal-close {
|
|
right: 0;
|
|
float: right;
|
|
text-decoration: none;
|
|
font-size: 1.8em;
|
|
}
|
|
|
|
.media-modal-close:hover,
|
|
.media-modal-close:focus {
|
|
color: #fff;
|
|
text-shadow: 0 0 16px rgba( 255, 255, 255, 0.8 );
|
|
}
|
|
|
|
.media-modal-close:active {
|
|
outline: 0;
|
|
}
|
|
|
|
.media-modal-content {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
overflow: auto;
|
|
background: #fff;
|
|
}
|
|
|
|
/**
|
|
* Toolbar
|
|
*/
|
|
.media-toolbar {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 220px;
|
|
right: 0;
|
|
z-index: 100;
|
|
height: 50px;
|
|
padding: 0 10px;
|
|
border-bottom: 1px solid #dfdfdf;
|
|
}
|
|
|
|
.media-toolbar-primary {
|
|
float: right;
|
|
}
|
|
|
|
.media-toolbar-secondary {
|
|
float: left;
|
|
}
|
|
|
|
.media-toolbar-primary > .media-button,
|
|
.media-toolbar-primary > .media-button-group {
|
|
margin-left: 10px;
|
|
float: left;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.media-toolbar-secondary > .media-button,
|
|
.media-toolbar-secondary > .media-button-group {
|
|
margin-right: 10px;
|
|
float: left;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
/**
|
|
* Sidebar
|
|
*/
|
|
.media-sidebar {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 219px;
|
|
z-index: 50;
|
|
background: #f5f5f5;
|
|
border-right: 1px solid #dfdfdf;
|
|
}
|
|
|
|
.hide-sidebar .media-sidebar {
|
|
display: none;
|
|
}
|
|
|
|
.media-sidebar .sidebar-title {
|
|
font-weight: 200;
|
|
font-size: 20px;
|
|
margin: 0;
|
|
padding: 12px 10px 10px;
|
|
line-height: 28px;
|
|
/*border-bottom: 1px solid #dfdfdf;*/
|
|
}
|
|
|
|
.media-sidebar .sidebar-content {
|
|
padding: 0 10px;
|
|
margin-bottom: 130px;
|
|
}
|
|
|
|
.media-sidebar .search {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.media-sidebar .selection-preview {
|
|
display: block;
|
|
padding-top: 5px;
|
|
}
|
|
|
|
/**
|
|
* Frame
|
|
*/
|
|
|
|
.media-frame .media-content,
|
|
.media-frame .media-toolbar,
|
|
.media-frame .media-sidebar {
|
|
-webkit-transition-property: left, right, top, bottom, margin;
|
|
-moz-transition-property: left, right, top, bottom, margin;
|
|
-ms-transition-property: left, right, top, bottom, margin;
|
|
-o-transition-property: left, right, top, bottom, margin;
|
|
transition-property: left, right, top, bottom, margin;
|
|
|
|
-webkit-transition-duration: 0.2s;
|
|
-moz-transition-duration: 0.2s;
|
|
-ms-transition-duration: 0.2s;
|
|
-o-transition-duration: 0.2s;
|
|
transition-duration: 0.2s;
|
|
}
|
|
|
|
.media-frame .media-content {
|
|
position: absolute;
|
|
top: 51px;
|
|
left: 220px;
|
|
right: 0;
|
|
bottom: 0;
|
|
height: auto;
|
|
width: auto;
|
|
margin: 0;
|
|
overflow: auto;
|
|
}
|
|
|
|
.media-frame.hide-sidebar .media-content {
|
|
left: 0;
|
|
}
|
|
|
|
.media-frame .media-toolbar .add-to-gallery {
|
|
display: none;
|
|
}
|
|
|
|
/**
|
|
* Search
|
|
*/
|
|
.media-frame .search {
|
|
margin-top: 11px;
|
|
padding: 4px;
|
|
line-height: 18px;
|
|
font-size: 13px;
|
|
color: #464646;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
/**
|
|
* Attachment
|
|
*/
|
|
.attachment {
|
|
position: relative;
|
|
float: left;
|
|
|
|
padding: 0;
|
|
margin: 0 10px 20px;
|
|
color: #464646;
|
|
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
-o-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
.selected.attachment {
|
|
box-shadow:
|
|
0 0 0 1px #fff,
|
|
0 0 0 4px #777;
|
|
}
|
|
|
|
.details.attachment {
|
|
box-shadow:
|
|
0 0 0 1px #fff,
|
|
0 0 0 4px #1e8cbe;
|
|
}
|
|
|
|
|
|
.attachment.library.selected:after {
|
|
content: '\2713';
|
|
display: block;
|
|
height: 24px;
|
|
width: 24px;
|
|
position: absolute;
|
|
top: -1px;
|
|
right: -1px;
|
|
line-height: 24px;
|
|
font-size: 18px;
|
|
text-align: center;
|
|
color: #fff;
|
|
text-shadow: 0 1px 0 rgba( 0, 0, 0, 0.5 );
|
|
background: #777;
|
|
border: 1px solid #fff;
|
|
border-width: 0 0 1px 1px;
|
|
box-shadow: -1px 1px 0 rgba( 0, 0, 0, 0.1 );
|
|
}
|
|
|
|
.attachment.library.details:after {
|
|
background: #1e8cbe;
|
|
}
|
|
|
|
.attachment-preview {
|
|
position: relative;
|
|
width: 199px;
|
|
height: 199px;
|
|
overflow: hidden;
|
|
box-shadow:
|
|
inset 0 0 15px rgba( 0, 0, 0, 0.1 ),
|
|
inset 0 0 0 1px rgba( 0, 0, 0, 0.05 );
|
|
background: #eee;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.attachment .icon,
|
|
.attachment .thumbnail {
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* Vertically center the icons. */
|
|
.attachment .icon {
|
|
top: 50%;
|
|
left: 50%;
|
|
}
|
|
|
|
.attachment-preview .thumbnail:after {
|
|
content: '';
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.1 );
|
|
overflow: hidden;
|
|
}
|
|
|
|
.attachment .thumbnail img {
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
|
|
.attachment .thumbnail .centered {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
-webkit-transform: translate( 50%, 50% );
|
|
-moz-transform: translate( 50%, 50% );
|
|
-ms-transform: translate( 50%, 50% );
|
|
-o-transform: translate( 50%, 50% );
|
|
transform: translate( 50%, 50% );
|
|
}
|
|
|
|
.attachment .icon,
|
|
.attachment .thumbnail .centered img {
|
|
-webkit-transform: translate( -50%, -50% );
|
|
-moz-transform: translate( -50%, -50% );
|
|
-ms-transform: translate( -50%, -50% );
|
|
-o-transform: translate( -50%, -50% );
|
|
transform: translate( -50%, -50% );
|
|
}
|
|
|
|
.attachment .filename {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
padding: 5px 10px;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
background: rgba( 255, 255, 255, 0.8 );
|
|
box-shadow: 0 0 2px rgba( 0, 0, 0, 0.2 );
|
|
}
|
|
|
|
.attachment-preview .thumbnail {
|
|
width: 199px;
|
|
height: 199px;
|
|
}
|
|
|
|
.attachment .thumbnail img {
|
|
position: absolute;
|
|
}
|
|
|
|
.attachment .insert {
|
|
display: none;
|
|
position: absolute;
|
|
left: 7px;
|
|
bottom: 7px;
|
|
}
|
|
|
|
.attachment:hover .insert {
|
|
display: block;
|
|
}
|
|
|
|
.attachment .close {
|
|
display: none;
|
|
position: absolute;
|
|
top: 5px;
|
|
right: 5px;
|
|
height: 22px;
|
|
width: 22px;
|
|
padding: 0;
|
|
font-size: 20px;
|
|
line-height: 20px;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
color: #464646;
|
|
background: #fff;
|
|
border-width: 0;
|
|
box-shadow: 0 0 0 1px rgba( 0, 0, 0, 0.3 );
|
|
}
|
|
|
|
.attachment .close:hover {
|
|
box-shadow: 0 0 0 1px rgba( 0, 0, 0, 0.6 );
|
|
}
|
|
|
|
.attachment:hover .close {
|
|
display: block;
|
|
}
|
|
|
|
.media-frame .describe {
|
|
position: relative;
|
|
display: block;
|
|
width: 100%;
|
|
height: 50px;
|
|
margin: -1px 0 0;
|
|
padding: 8px;
|
|
font-size: 12px;
|
|
resize: none;
|
|
border-radius: 0;
|
|
}
|
|
|
|
/**
|
|
* Progress Bar
|
|
*/
|
|
.media-progress-bar {
|
|
position: relative;
|
|
height: 8px;
|
|
width: 70%;
|
|
margin: 10px auto;
|
|
padding: 2px;
|
|
border: 2px solid #ccc;
|
|
border-radius: 8px;
|
|
background: #fff;
|
|
}
|
|
|
|
.media-progress-bar div {
|
|
height: 8px;
|
|
min-width: 8px;
|
|
width: 0;
|
|
background: #ccc;
|
|
border-radius: 10px;
|
|
-webkit-transition: width 300ms;
|
|
-moz-transition: width 300ms;
|
|
-ms-transition: width 300ms;
|
|
-o-transition: width 300ms;
|
|
transition: width 300ms;
|
|
}
|
|
|
|
.attachment-preview .media-progress-bar {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 15%;
|
|
width: 70%;
|
|
margin: -8px 0 0 -4px;
|
|
}
|
|
|
|
.uploader-window {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba( 0, 86, 132, 0.9 );
|
|
|
|
z-index: 250000;
|
|
display: none;
|
|
text-align: center;
|
|
opacity: 0;
|
|
|
|
-webkit-transition: opacity 250ms;
|
|
-moz-transition: opacity 250ms;
|
|
-ms-transition: opacity 250ms;
|
|
-o-transition: opacity 250ms;
|
|
transition: opacity 250ms;
|
|
}
|
|
|
|
.uploader-window-content {
|
|
position: absolute;
|
|
top: 30px;
|
|
left: 30px;
|
|
right: 30px;
|
|
bottom: 30px;
|
|
border: 1px dashed #fff;
|
|
}
|
|
|
|
.uploader-window h3 {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 0;
|
|
right: 0;
|
|
-webkit-transform: translateY( -50% );
|
|
-moz-transform: translateY( -50% );
|
|
-ms-transform: translateY( -50% );
|
|
-o-transform: translateY( -50% );
|
|
transform: translateY( -50% );
|
|
|
|
font-size: 18px;
|
|
font-weight: 200;
|
|
color: #fff;
|
|
padding: 0;
|
|
}
|
|
|
|
.uploader-window .media-progress-bar {
|
|
margin-top: 20px;
|
|
max-width: 300px;
|
|
background: transparent;
|
|
border-color: #fff;
|
|
display: none;
|
|
}
|
|
|
|
.uploader-window .media-progress-bar div {
|
|
background: #fff;
|
|
}
|
|
|
|
.uploading .uploader-window .media-progress-bar {
|
|
display: block;
|
|
}
|
|
|
|
.uploader-inline {
|
|
display: none;
|
|
}
|
|
|
|
.uploader-inline .media-progress-bar {
|
|
display: none;
|
|
}
|
|
|
|
.uploading.uploader-inline .media-progress-bar {
|
|
display: block;
|
|
}
|
|
|
|
.media-sidebar .uploader-inline {
|
|
display: block;
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
height: 100px;
|
|
margin: 10px;
|
|
padding-top: 10px;
|
|
text-align: center;
|
|
border: 1px dashed #aaa;
|
|
}
|
|
|
|
.media-sidebar .uploader-inline h3 {
|
|
font-weight: 200;
|
|
font-size: 16px;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
/**
|
|
* Selection Preview
|
|
*/
|
|
|
|
.selection-preview {
|
|
position: relative;
|
|
height: 60px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.selected-img {
|
|
float: left;
|
|
position: relative;
|
|
margin-right: 14px;
|
|
}
|
|
|
|
.selection-preview img {
|
|
max-width: 40px;
|
|
max-height: 40px;
|
|
float: left;
|
|
margin-top: 6px;
|
|
margin-left: 1px;
|
|
border: 2px solid white;
|
|
box-shadow:
|
|
0 0 0 1px #ccc,
|
|
3px 3px 0 0 #fff,
|
|
3px 3px 0 1px #ccc,
|
|
6px 6px 0 0 #fff,
|
|
6px 6px 0 1px #ccc;
|
|
}
|
|
|
|
.selection-preview .selected-count-1 img {
|
|
margin-top: 8px;
|
|
box-shadow: 0 0 0 1px #ccc;
|
|
}
|
|
|
|
.selection-preview .selected-count-2 img {
|
|
margin-top: 7px;
|
|
box-shadow:
|
|
0 0 0 1px #ccc,
|
|
3px 3px 0 0 #fff,
|
|
3px 3px 0 1px #ccc;
|
|
}
|
|
|
|
.selection-preview .count {
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 0;
|
|
height: 16px;
|
|
min-width: 8px;
|
|
padding: 0 4px;
|
|
font-size: 12px;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
color: #999;
|
|
background: #fff;
|
|
box-shadow: -1px -1px 2px -1px rgba( 0, 0, 0, 0.2 );
|
|
}
|
|
|
|
.selection-preview .clear-selection {
|
|
float: left;
|
|
line-height: 60px;
|
|
}
|
|
|
|
/**
|
|
* Attachment Details
|
|
*/
|
|
|
|
.attachment-details {
|
|
padding-top: 20px;
|
|
}
|
|
|
|
.attachment-details-preview {
|
|
cursor: default;
|
|
}
|
|
|
|
.attachment-details-preview {
|
|
width: auto;
|
|
height: auto;
|
|
position: relative;
|
|
}
|
|
|
|
.attachment-details-preview .thumbnail {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
.attachment-details-preview .thumbnail:after {
|
|
content: '';
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.1 );
|
|
overflow: hidden;
|
|
}
|
|
|
|
.attachment-details-preview .thumbnail img {
|
|
display: block;
|
|
max-width: 100%;
|
|
max-height: 132px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.attachment-details .describe {
|
|
float: left;
|
|
margin: 10px 0 0;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
/**
|
|
* Attachment Display Settings
|
|
*/
|
|
|
|
.attachment-display-settings,
|
|
.button div.attachment-display-settings {
|
|
padding: 0 1em 1em;
|
|
}
|
|
|
|
.attachment-display-settings h3 {
|
|
font-weight: 200;
|
|
margin: 1.4em 0 0.4em;
|
|
}
|
|
|
|
.attachment-display-settings h4 {
|
|
margin: 1.4em 0 0.4em;
|
|
} |