1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-17 07:41:26 +00:00
Files
seahub/frontend/src/css/toolbar.css

129 lines
2.1 KiB
CSS
Raw Normal View History

2018-09-18 20:57:17 -05:00
/* begin toobar-container */
2018-09-18 20:57:17 -05:00
.cur-view-toolbar {
position: relative;
display: flex;
flex: 1;
align-items: center;
2020-06-24 18:35:38 +08:00
height: 32px;
2018-09-18 20:57:17 -05:00
}
.border-left-show:before {
2018-09-18 20:57:17 -05:00
position: absolute;
2019-02-20 11:54:25 +08:00
top: 10px;
left: -1px;
2019-02-20 11:54:25 +08:00
width: 1px;
height: 30px;
2018-09-18 20:57:17 -05:00
content: '';
2019-02-20 11:54:25 +08:00
background-color: #ddd;
2018-09-18 20:57:17 -05:00
}
/* end toolbar-container */
/* file-operation toolbar eg: edit, upload, new, share*/
.operation-item {
padding: 0 0.5rem;
2018-09-18 20:57:17 -05:00
margin-right: 0.25rem;
height: 30px;
min-width: 55px;
2018-09-19 11:23:17 +08:00
background-color: #fff;
2018-09-18 20:57:17 -05:00
line-height: 29px;
font-weight: normal;
border: 1px solid #ccc;
border-radius: 2px;
}
.group-operations {
2019-04-13 14:24:36 +08:00
margin-right: 0.25rem;
}
.group-operations .group-op-item {
padding: 0 0.5rem;
height: 30px;
min-width: 46px;
background-color: #fff;
line-height: 29px;
font-weight: normal;
border: 1px solid #ccc;
border-radius: 2px;
2018-12-22 15:18:53 +08:00
font-size: 1.125rem;
}
/* end file-operation toolbar */
/* begin view-mode toolbar */
2019-04-10 17:53:43 +08:00
.detail-btn button,
.sf-view-mode-btn {
2018-09-18 20:57:17 -05:00
padding: 0;
height: 30px;
min-width: 2rem;
color: #aaa;
2018-09-19 11:23:17 +08:00
background-color: #fff;
2018-09-18 20:57:17 -05:00
border: 1px solid #ccc;
line-height: 29px;
font-size: 18px;
2019-04-10 17:53:43 +08:00
border-radius: 2px;
2018-09-18 20:57:17 -05:00
}
2019-04-10 17:53:43 +08:00
.detail-btn button {
font-size: 15px;
2019-04-10 17:53:43 +08:00
padding-top: 1px;
}
.sf-view-mode-btn.current-mode {
2018-09-18 20:57:17 -05:00
background-color: #ccc !important;
color: #fff !important;
}
/* end view-mode toolbar */
2018-09-18 20:57:17 -05:00
/* begin common-toolbar */
.common-toolbar {
display: flex;
margin-left: auto;
align-items: center;
2018-09-18 20:57:17 -05:00
}
.common-toolbar > div{
2018-09-18 20:57:17 -05:00
margin-left: .5rem;
}
.common-toolbar .logout-icon {
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
margin-left: 8px;
text-decoration: none;
color: #ccc;
}
2018-09-18 20:57:17 -05:00
/* end common-toolbar */
/* begin path toolbar */
.path-toolbar {
list-style: none;
}
.path-toolbar .toolbar-item {
display: inline-block;
text-align: center;
margin-left: 0.75rem;
}
.path-toolbar .toolbar-item a {
color:#8a8a8a;
font-size:22px;
}
.path-toolbar .toolbar-item a:hover {
color:#eb8205;
text-decoration:none;
}
/* end path toolbar */
2019-05-23 10:10:46 +08:00
@media (max-width: 767px) {
.border-left-show:before {
width: 0;
}
}