1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/src/styles/metadataeditor.scss

97 lines
1.5 KiB
SCSS
Raw Normal View History

2018-10-23 01:13:23 +03:00
.editPageSidebar {
display: block;
2018-10-23 01:13:23 +03:00
}
.editPageSidebar-withcontent {
display: none;
2018-10-23 01:13:23 +03:00
}
.libraryTree {
[dir="ltr"] & {
margin-left: 0.25em;
}
[dir="rtl"] & {
margin-right: 0.25em;
}
2018-10-23 01:13:23 +03:00
}
.offlineEditorNode {
color: #c33;
2018-10-23 01:13:23 +03:00
}
.editorNode img {
height: 18px;
2020-01-19 15:00:37 +01:00
margin: 0 0.35em;
2018-10-23 01:13:23 +03:00
vertical-align: middle;
position: relative;
top: -2px;
2018-10-23 01:13:23 +03:00
}
.jstree-anchor {
font-weight: 400 !important;
2018-10-23 01:13:23 +03:00
}
.jstree-wholerow-hovered {
background: #38c !important;
border-radius: 0 !important;
box-shadow: none !important;
2018-10-23 01:13:23 +03:00
}
.jstree-default .jstree-hovered {
background: 0 0 !important;
border-radius: 0 !important;
box-shadow: none !important;
color: #fff !important;
2018-10-23 01:13:23 +03:00
}
.jstree-default .jstree-wholerow-clicked {
background: #00a4dc !important;
2018-10-23 01:13:23 +03:00
}
2019-08-31 17:41:56 +03:00
.metadataSidebarIcon {
2020-01-19 15:00:37 +01:00
margin-right: 0.4em;
2019-08-31 17:41:56 +03:00
}
@media all and (min-width: 50em) {
2018-10-23 01:13:23 +03:00
.editPageSidebar {
position: fixed;
top: 5.2em;
bottom: 0;
2018-10-23 01:13:23 +03:00
width: 30%;
display: block;
[dir="ltr"] & {
left: 0;
border-right: 1px solid #555;
}
[dir="rtl"] & {
right: 0;
border-left: 1px solid #555;
}
2018-10-23 01:13:23 +03:00
}
.editPageInnerContent {
width: 68.5%;
2018-10-23 01:13:23 +03:00
[dir="ltr"] & {
float: right;
}
[dir="rtl"] & {
2022-07-05 19:41:56 -04:00
float: left;
}
}
}
@media all and (min-width: 112.5em) {
2018-10-23 01:13:23 +03:00
.editPageSidebar {
width: 25%;
2018-10-23 01:13:23 +03:00
}
.editPageInnerContent {
width: 73.5%;
2018-10-23 01:13:23 +03:00
}
2019-08-31 17:41:56 +03:00
}