jellyfin-web/dashboard-ui/css/metadataeditor.css

396 lines
6.3 KiB
CSS
Raw Normal View History

2013-08-02 13:36:44 -07:00
.editPageContent {
padding: 0;
}
.editPageInnerContent {
padding: 0 15px 100px;
2013-08-02 13:36:44 -07:00
}
.editPageName {
margin: .5em 0 0;
}
.editPageSidebar {
display: none;
}
2014-02-21 11:48:15 -07:00
.libraryTree {
margin-left: .25em;
}
.offlineEditorNode {
color: #cc3333;
}
.editorNode img {
height: 18px;
margin: 0 .35em;
vertical-align: middle;
position: relative;
top: -2px;
}
.availableImagesList {
overflow-y: auto;
width: 300px;
height: 400px;
text-align: center;
}
.remoteImageContainer {
display: inline-block;
2013-12-24 11:37:29 -07:00
margin: 8px;
vertical-align: top;
}
.remoteImageDetails {
background: #eee;
padding: 3px 5px;
}
.remoteImage {
background-position: center bottom;
background-repeat: no-repeat;
background-size: contain;
display: block;
2014-03-02 08:42:21 -07:00
/* For the box shadow so that the bottom border isnt underneath the text */
z-index: 100000;
position: relative;
}
.remotePosterImage {
width: 150px;
height: 225px;
}
.remoteBackdropImage {
width: 272px;
height: 153px;
}
.remoteBannerImage {
width: 272px;
height: 50px;
}
.remoteDiscImage {
width: 180px;
height: 180px;
}
2013-12-28 09:58:13 -07:00
.editorfieldDescription {
color: #ccc;
}
2013-11-28 11:27:29 -07:00
/* Fixes button running outside of list */
.btnRemoveFromEditorList .ui-btn-inner {
padding-right: 0!important;
}
2014-03-01 15:34:27 -07:00
.searchImage {
background-position: center bottom;
background-repeat: no-repeat;
background-size: contain;
display: block;
}
.searchBackdropImageContainer {
width: 160px;
}
.searchDiscImageContainer {
width: 150px;
}
.searchPosterImageContainer {
width: 140px;
}
.searchBackdropImageContainer .searchImage {
height: 90px;
}
.searchDiscImageContainer .searchImage {
height: 150px;
}
.searchPosterImageContainer .searchImage {
height: 210px;
}
.searchImageContainer .remoteImageDetails {
overflow-x: hidden;
text-overflow: ellipsis;
}
@media all and (min-width: 500px) {
.availableImagesList {
width: 400px;
}
}
2013-08-02 13:36:44 -07:00
@media all and (min-width: 600px) {
.availableImagesList {
width: 500px;
height: 450px;
}
.remoteBannerImage {
width: 450px;
height: 83px;
}
2013-08-02 13:36:44 -07:00
}
2014-03-02 13:44:48 -07:00
.libraryReportIndicator {
position: relative;
display: block;
text-align: center;
vertical-align: middle;
width: 24px;
height: 19px;
padding-top: 3px;
border-radius: 50%;
color: #fff;
background: rgb(204, 0, 0);
background: rgba(204, 0, 0, .8);
}
.libraryReportIndicator div:after {
background-color: transparent !important;
}
2014-03-03 21:53:48 -07:00
.clearLibraryReportIndicator {
background-color: transparent !important;
}
2013-11-27 12:04:19 -07:00
.editorTile {
display: inline-block;
margin: 5px;
padding: 8px;
border: 1px solid #444;
2014-03-15 13:08:06 -07:00
background-image: -webkit-gradient(linear,left top,left bottom,from(#333),to(#2d2d2d));
background-image: -webkit-linear-gradient(#333,#2d2d2d);
background-image: -moz-linear-gradient(#333,#2d2d2d);
background-image: -ms-linear-gradient(#333,#2d2d2d);
background-image: -o-linear-gradient(#333,#2d2d2d);
background-image: linear-gradient(#333,#2d2d2d);
2013-11-27 12:04:19 -07:00
}
.imageEditorTile {
width: 256px;
2013-11-27 12:04:19 -07:00
padding-bottom: 0;
}
.editorTile p {
margin: .5em 0;
}
2013-12-01 13:17:40 -07:00
.editorTile .ui-field-contain {
2013-11-28 11:27:29 -07:00
margin: 0 0 .5em;
}
2013-11-29 11:44:51 -07:00
.imageEditorCollapsible .ui-collapsible-content {
padding: 0 0 1em 0;
}
2014-03-02 08:42:21 -07:00
.remoteImage:hover, .searchImageContainer:hover {
-moz-box-shadow: 0 0 12px 7px #38c;
-webkit-box-shadow: 0 0 12px 7px #38c;
box-shadow: 0 0 12px 7px #38c;
}
.tblLibraryReport img {
2014-03-03 21:53:48 -07:00
height: 18px;
margin-right: 10px;
}
2014-03-01 15:34:27 -07:00
@media all and (min-width: 600px) {
.popupIdentify {
width: 400px;
}
}
@media all and (min-width: 700px) {
.availableImagesList {
width: 600px;
}
2014-03-01 15:34:27 -07:00
.popupIdentify {
width: 500px;
}
}
@media all and (min-width: 800px) {
.availableImagesList {
width: 700px;
}
2014-02-21 11:48:15 -07:00
.editPageSidebar {
position: fixed;
2014-05-03 16:38:23 -07:00
top: 54px;
2014-02-21 11:48:15 -07:00
bottom: 0;
left: 0;
width: 30%;
overflow-y: scroll;
overflow-x: auto!important;
display: block;
border-right: 1px solid #555;
}
.editPageInnerContent {
float: right;
width: 67.5%;
}
2014-03-01 15:34:27 -07:00
.popupIdentify {
width: 600px;
}
}
@media all and (min-width: 900px) {
.availableImagesList {
width: 800px;
}
2014-03-01 15:34:27 -07:00
.popupIdentify {
width: 700px;
}
}
@media all and (min-width: 1000px) {
.availableImagesList {
width: 900px;
}
2014-03-01 15:34:27 -07:00
.popupIdentify {
width: 800px;
}
}
@media all and (min-width: 1100px) {
.availableImagesList {
width: 1000px;
}
2014-03-01 15:34:27 -07:00
.popupIdentify {
width: 900px;
}
}
@media all and (min-width: 1200px) {
.availableImagesList {
width: 1100px;
}
2014-03-01 15:34:27 -07:00
.popupIdentify {
width: 1000px;
}
}
@media all and (min-width: 1300px) {
.availableImagesList {
width: 1200px;
}
}
@media all and (min-width: 1400px) {
.availableImagesList {
width: 1300px;
}
}
@media all and (min-width: 1500px) {
.availableImagesList {
width: 1400px;
}
}
2013-12-01 13:17:40 -07:00
@media all and (min-width: 1800px) {
.editPageSidebar {
2014-02-21 11:48:15 -07:00
width: 25%;
2013-12-01 13:17:40 -07:00
}
.editPageInnerContent {
2014-02-21 11:48:15 -07:00
width: 72.5%;
2013-12-01 13:17:40 -07:00
}
}
.popupIdentify form, .identificationSearchResults {
2014-03-02 08:42:21 -07:00
overflow-y: auto;
}
.collectionItemSearchResults {
max-height: 65%;
overflow-y: auto;
}
2014-03-02 08:42:21 -07:00
@media all and (min-height: 500px) {
.popupIdentify form, .identificationSearchResults {
2014-03-02 08:42:21 -07:00
height: 350px;
}
}
@media all and (min-height: 600px) {
.popupIdentify form, .identificationSearchResults {
2014-03-02 08:42:21 -07:00
height: 450px;
}
.collectionItemSearchResults {
max-height: 70%;
}
2014-03-02 08:42:21 -07:00
}
@media all and (min-height: 700px) {
.popupIdentify form, .identificationSearchResults {
2014-03-02 08:42:21 -07:00
height: 550px;
}
.collectionItemSearchResults {
max-height: 75%;
}
2014-03-02 08:42:21 -07:00
}
@media all and (min-height: 800px) {
.availableImagesList {
height: 600px;
}
2014-03-02 08:42:21 -07:00
.popupIdentify form, .identificationSearchResults {
2014-03-02 08:42:21 -07:00
height: 600px;
}
.collectionItemSearchResults {
max-height: 80%;
}
}
@media all and (min-height: 900px) {
.availableImagesList {
height: 700px;
}
2014-03-02 08:42:21 -07:00
.popupIdentify form, .identificationSearchResults {
2014-03-02 08:42:21 -07:00
height: 700px;
}
}