You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
1.5 KiB
CSS
88 lines
1.5 KiB
CSS
/* This file contains the CSS data for media file selector of TinyMCE */
|
|
|
|
#image-selector {
|
|
margin: 10px;
|
|
margin-bottom: 30px;
|
|
padding-bottom: 85px;
|
|
}
|
|
|
|
#image-selector.droptarget.hover,
|
|
#image-selector.droptarget.active {
|
|
border: 1px solid #019bc6;
|
|
box-shadow: 0 0 3px 2px rgba(71,135,177, 0.5);
|
|
}
|
|
|
|
#image-selector.droptarget.hover {
|
|
background-color: #d9ecf4;
|
|
box-shadow: 0 0 5px 2px rgba(71,135,177, 0.9);
|
|
}
|
|
|
|
#image-selector form {
|
|
position: absolute;
|
|
top: 0;
|
|
}
|
|
|
|
#image-selector .hint {
|
|
line-height: 25px;
|
|
color: #666;
|
|
font-size: 11px;
|
|
text-align: center;
|
|
}
|
|
|
|
#image-selector a.button {
|
|
color: #525252;
|
|
text-decoration: none;
|
|
font-size: 11px;
|
|
}
|
|
|
|
#image-selector .upload-form {
|
|
text-align: center;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
#image-selector .upload-form button {
|
|
padding: 4px 8px;
|
|
border: 1px solid #c0c0c0;
|
|
}
|
|
|
|
#image-selector-list {
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
margin-left: 0;
|
|
height: 250px;
|
|
}
|
|
|
|
#image-selector-list li {
|
|
line-height: 80px;
|
|
padding: 2px;
|
|
cursor: pointer;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
background: none;
|
|
}
|
|
|
|
#image-selector-list li:hover,
|
|
#image-selector-list li:focus {
|
|
background-color: #F0F0F0;
|
|
}
|
|
|
|
#image-selector-list li img {
|
|
vertical-align: middle;
|
|
max-height: 80px;
|
|
}
|
|
|
|
#image-selector-list li span.name {
|
|
vertical-align: middle;
|
|
font-weight: bold;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
#image-selector-list li span.img {
|
|
height: 80px;
|
|
width: 80px;
|
|
text-align: center;
|
|
display: inline-block;
|
|
overflow: hidden;
|
|
line-height: 80px;
|
|
}
|