1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-14 14:21:23 +00:00
Files
seahub/frontend/src/css/file-history.css

108 lines
1.6 KiB
CSS
Raw Normal View History

2018-09-12 17:01:48 +08:00
.history-main {
background-color: #fafaf9;
border-radius: 10px;
}
.history, .markdown-viewer-render-content {
background-color: #fff;
2018-09-26 02:27:14 -07:00
word-break: break-word;
2018-09-12 17:01:48 +08:00
}
.history-heading {
font-size: 25px;
}
.panel-heading {
position: relative;
padding: .5rem 0rem;
width: 100%;
border-bottom: 1px solid #e8e8e8;
font-size: 1rem;
font-weight: normal;
line-height: 1.5;
height: 36px;
text-align: center;
}
.history .history-body {
flex: 1;
display: flex;
min-height: 0;
}
.history-list-container {
flex: 1;
flex-direction: column;
overflow: auto;
}
.history-list-container .history-list-item {
margin-top: 0.5rem;
padding: 0 0.8rem;
display: flex;
flex: 1;
}
.history-list-container .history-list-item:hover {
background-color: #eee;
}
.item-active {
color: #fff;
background-color: #feac74 !important;
}
.item-active i {
color: #fff;
}
.history-list-item .history-info {
flex: 1;
padding: 0 0.5rem;
}
.history-list-item .history-operation {
width: 1.5rem;
display: flex;
align-items: center;
justify-content: center;
}
.history-info .time {
color: #000;
}
.history-info .owner {
margin-top: 0.25rem;
color: #888;
display: flex;
align-items: center;
}
.owner .squire-icon {
width: 0.5rem;
height: 0.5rem;
background-color: #549b5a;
margin-right: 0.25rem;
}
.history-body .dropdown-menu {
min-width: 8rem;
}
.history-body .dropdown-menu a {
text-decoration: none;
color: #6e7687;
}
.history-viewer-contanier {
flex: 1;
overflow: auto;
}
.markdown-viewer-render-content {
margin: 20px 40px;
border: 1px solid #e6e6dd;
}