Files
fnx_web/res/static/style/listview.css

90 lines
1.4 KiB
CSS
Raw Normal View History

2017-11-10 12:39:55 +01:00
/*
Created on : Jul 30, 2015, 12:46:39 PM
Author : Fornax
*/
.file-container{
position: absolute;
top: 100px;
left: 0px;
right: 0px;
bottom: 0px;
width: 100%;
overflow: hidden;
border: none;
}
.file-container-frame{
position: absolute;
width: 100%;
height: 100%;
border: none;
}
#listNavigator{
position: absolute;
left: 0;
right: 0;
top: -100px;
height: 98px;
background-color: #000;
2018-01-07 21:42:19 +01:00
box-shadow: 2px 2px 8px #000000;
border-bottom: 2px ridge var(--highlight_color);
2017-11-10 12:39:55 +01:00
text-align: center;
overflow-x: hidden;
overflow-y: hidden;
2018-01-07 21:42:19 +01:00
z-index: 50;
2017-11-10 12:39:55 +01:00
}
#listNavigatorItems{
position: absolute;
top: 0;
left: 0;
right: 0;
height: 100%;
white-space: nowrap;
overflow-x: scroll;
overflow-y: hidden;
border: none;
padding: 0 40px;
}
.listItem{
display: inline-block;
position: relative;
height: 95%;
width: 100px;
margin-right: 5px;
text-align: center;
border: #333 solid 2px;
font-size: 12px;
overflow: hidden;
cursor: pointer;
}
.listItemThumbnail{
position: relative;
max-width: 100%;
max-height: 84%;
margin: 0;
}
2018-01-07 21:42:19 +01:00
#arrow-left,
#arrow-right{
position: absolute;
display: block;
border-top: 30px solid transparent;
border-bottom: 30px solid transparent;
height: 0;
width: 0;
top: 20px;
cursor: pointer;
}
2017-11-10 12:39:55 +01:00
#arrow-left{
2018-01-07 21:42:19 +01:00
border-right: 40px solid var(--highlight_color);
left: 10px;
2017-11-10 12:39:55 +01:00
}
#arrow-right{
2018-01-07 21:42:19 +01:00
border-left: 40px solid var(--highlight_color);
right: 10px;
2017-11-10 12:39:55 +01:00
}