mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-06-01 06:52:58 +00:00
45 lines
765 B
SCSS
45 lines
765 B
SCSS
.browse a {
|
|
color : inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.browse table {
|
|
width: 100%;
|
|
}
|
|
|
|
.browse .actions {
|
|
background-color: #455a64;
|
|
color : #fff;
|
|
padding : 1.5em 0;
|
|
}
|
|
|
|
.browse .actions .container {
|
|
margin : 0 auto;
|
|
display: flex;
|
|
}
|
|
|
|
.browse .actions .fa {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.browse .actions .go-right {
|
|
margin-left: auto;
|
|
position : relative;
|
|
}
|
|
|
|
.browse tr {
|
|
line-height : 2em;
|
|
border-bottom: 1px solid rgba(0,0,0,0.03);
|
|
}
|
|
|
|
.browse #new-file {
|
|
display : none;
|
|
position : absolute;
|
|
right : 0;
|
|
top : 2.5em;
|
|
background-color: #263238;
|
|
color : rgba(255,255,255,.5);
|
|
border-radius : .5em;
|
|
padding : 1em;
|
|
width : 182%;
|
|
} |