318 lines
5.0 KiB
CSS
318 lines
5.0 KiB
CSS
/* 新建文件夹弹窗样式 */
|
|
.create-folder-name {
|
|
display: flex;
|
|
width: 100%;
|
|
padding: 10rpx 20rpx;
|
|
box-sizing: border-box;
|
|
align-items: center;
|
|
background-color: rgba(194, 191, 211, 0.1);
|
|
border-radius: 10rpx;
|
|
}
|
|
|
|
|
|
.create-folder-name input {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
}
|
|
|
|
|
|
.create-folder-name.has-value {
|
|
background-color: #ffffff;
|
|
border: 2rpx solid #aaaaff;
|
|
box-shadow: 0 0 15rpx #aaaaff;
|
|
}
|
|
|
|
/* 新建文件夹弹窗内部样式 */
|
|
.new-folder-name {
|
|
font-size: 28rpx;
|
|
color: #666;
|
|
margin-bottom: 12rpx;
|
|
}
|
|
|
|
.nf-path-label {
|
|
font-size: 26rpx;
|
|
color: #999;
|
|
margin-top: 24rpx;
|
|
margin-bottom: 8rpx;
|
|
}
|
|
|
|
.nf-path-display {
|
|
font-size: 28rpx;
|
|
color: #333;
|
|
padding: 12rpx 20rpx;
|
|
background: #f5f5f5;
|
|
border-radius: 10rpx;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.nf-path-preview {
|
|
font-size: 28rpx;
|
|
color: #0073ff;
|
|
padding: 12rpx 20rpx;
|
|
background: rgba(0, 115, 255, 0.05);
|
|
border: 2rpx dashed rgba(0, 115, 255, 0.3);
|
|
border-radius: 10rpx;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.option-wrapper {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 20rpx;
|
|
margin-top: 40rpx;
|
|
}
|
|
|
|
.opt-btn {
|
|
flex: 1;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding: 24rpx 0;
|
|
border-radius: 12rpx;
|
|
font-size: 30rpx;
|
|
}
|
|
|
|
.opt-cancel {
|
|
background: #f5f5f5;
|
|
color: #666;
|
|
}
|
|
|
|
.opt-confirm {
|
|
background: linear-gradient(135deg, #0073ff, #3ab0ff);
|
|
color: #fff;
|
|
}
|
|
|
|
.workspace-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: rgba(140, 140, 140, 0.1);
|
|
}
|
|
|
|
.workspace-text {
|
|
color: #0073ff;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.workspace-header {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-shrink: 0;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 16rpx 0;
|
|
box-sizing: border-box;
|
|
border-bottom: 1rpx solid #ddd;
|
|
}
|
|
|
|
.custom-navbar {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 20rpx 10rpx;
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
}
|
|
|
|
.navbar-left {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.navbar-before-title {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.navbar-title {
|
|
display: flex;
|
|
flex: 1;
|
|
justify-content: center;
|
|
align-items: center;
|
|
position: absolute;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
}
|
|
|
|
.navbar-right {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-right: 20rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.navbar-right .menu-open {
|
|
color: #3ab0ff !important;
|
|
font-size: 40rpx !important;
|
|
}
|
|
|
|
.custom-navbar-icon {
|
|
color: #0073ff !important;
|
|
font-size: 40rpx !important;
|
|
}
|
|
|
|
.search-file-warpper {
|
|
display: flex;
|
|
width: 90%;
|
|
align-items: center;
|
|
}
|
|
|
|
.search-file {
|
|
display: flex;
|
|
flex: 1;
|
|
align-items: center;
|
|
background: rgba(255, 255, 255, 1);
|
|
padding: 16rpx;
|
|
box-sizing: border-box;
|
|
border-radius: 30rpx;
|
|
}
|
|
|
|
.icon-sousuo {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.search-file-input {
|
|
margin-left: 20rpx;
|
|
}
|
|
|
|
.cancel-search {
|
|
display: flex;
|
|
flex-shrink: 0;
|
|
padding: 0 0 0 20rpx;
|
|
box-sizing: border-box;
|
|
color: #0073ff;
|
|
}
|
|
|
|
.workspace-content {
|
|
width: 100%;
|
|
display: block;
|
|
flex: 1;
|
|
overflow: auto;
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
}
|
|
|
|
/* 菜单卡片 */
|
|
.menu-card {
|
|
position: absolute;
|
|
top: 100%;
|
|
right: 20rpx;
|
|
width: 300rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background: #fff;
|
|
border-radius: 30rpx;
|
|
z-index: 1;
|
|
}
|
|
|
|
.menu-card-item {
|
|
width: 100%;
|
|
padding: 20rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.folder-null {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 30%;
|
|
transform: translateX(-50%);
|
|
font-size: 32rpx;
|
|
}
|
|
|
|
.folder-null .iconfont {
|
|
font-size: 180rpx;
|
|
}
|
|
|
|
.folder-grid {
|
|
width: 100%;
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
padding: 20rpx;
|
|
box-sizing: border-box;
|
|
gap: 20rpx;
|
|
align-items: start;
|
|
}
|
|
|
|
.folder-item {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
position: relative;
|
|
min-width: 0;
|
|
}
|
|
|
|
.folder-item.select-folder {
|
|
border-radius: 30rpx;
|
|
background: rgba(9, 9, 9, 0.1);
|
|
}
|
|
|
|
|
|
.folder-item .folder-name {
|
|
max-width: 150rpx;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: inline-block;
|
|
text-align: center;
|
|
line-height: 40rpx;
|
|
min-width: 0;
|
|
}
|
|
|
|
.folder-item-style {
|
|
font-size: 160rpx !important;
|
|
font-weight: 10rpx !important;
|
|
color: #3ab0ff !important;
|
|
}
|
|
|
|
.folder-checkbox {
|
|
width: 50rpx;
|
|
height: 50rpx;
|
|
border: 6rpx solid #fff;
|
|
border-radius: 50%;
|
|
box-shadow: 0 2rpx 3rpx #333;
|
|
background: rgba(255, 255, 255, 0.2);
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 30%;
|
|
transform: translate(-50%);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.folder-checkbox.select-folder {
|
|
background-color: #0073ff;
|
|
}
|
|
|
|
.workspace-footer {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-shrink: 0;
|
|
justify-content: space-between;
|
|
padding: 30rpx;
|
|
box-sizing: border-box;
|
|
color: #999999;
|
|
background: #eeeeee;
|
|
}
|
|
|
|
.workspace-footer.folder-actions {
|
|
color: #0073ff;
|
|
}
|
|
|
|
.workspace-footer .iconfont {
|
|
font-size: 40rpx !important;
|
|
} |