-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
225 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
} | ||
|
||
.protyle-breadcrumb__bar { | ||
overflow: hidden; | ||
/* overflow: hidden; */ | ||
margin-top: -2px; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,64 @@ | ||
/* ----------------------------------------------01 顶栏---------------------------------------------- */ | ||
.toolbar { | ||
background-color: var(--b3-toolbar-background); | ||
margin-bottom: -22px; | ||
z-index: 99; | ||
opacity: 0; | ||
transition: opacity 300ms; | ||
transition-delay: 500ms; | ||
height: 22px; | ||
} | ||
|
||
.toolbar__item { | ||
padding: 2px 12px; | ||
} | ||
|
||
.toolbar__item svg { | ||
height: 15px; | ||
width: 15px; | ||
} | ||
|
||
.toolbar:hover { | ||
opacity: 1; | ||
transition: all 300ms; | ||
} | ||
|
||
/* 给左侧dock栏设置右边框 */ | ||
|
||
/* ----------------------------------------------02 左侧栏---------------------------------------------- */ | ||
/* 设置左栏蓝色渐变背景,下移item,防止和顶栏冲突 */ | ||
div#dockLeft { | ||
background-image: var(--b3-dockleft-background); | ||
padding-top: 10px; | ||
padding-bottom: 5px; | ||
height: calc(100% - 15px); | ||
} | ||
|
||
|
||
|
||
div#dockLeft svg { | ||
color: var(--b3-item-svg); | ||
color: #ffffff80; | ||
} | ||
|
||
div#dockLeft .dock__item--active svg { | ||
color: var(--b3-item-active-svg) !important; | ||
color: white; | ||
} | ||
|
||
div#dockLeft .dock__item:hover { | ||
background-color: transparent; | ||
div#dockLeft .dock__item:hover, | ||
div#dockLeft .dock__item--active { | ||
background-color: rgba(0, 102, 255, 0.5); | ||
} | ||
|
||
|
||
/* 给右侧dock栏设置左边框 */ | ||
/* ----------------------------------------------03 右侧栏---------------------------------------------- */ | ||
div#dockRight { | ||
background-color: var(--b3-dockright-background); | ||
padding-top: 10px; | ||
padding-bottom: 5px; | ||
height: calc(100% - 15px); | ||
} | ||
|
||
|
||
.status { | ||
/* ----------------------------------------------04 底部状态栏---------------------------------------------- */ | ||
/* .status { | ||
background-color: var(--b3-status-background) !important; | ||
position: absolute; | ||
bottom: 0px; | ||
right: 30px; | ||
border-top-left-radius: 5px; | ||
} | ||
|
||
.status #barDock>.b3-menu { | ||
left: unset !important; | ||
right: 5em; | ||
} | ||
|
||
.status__msg { | ||
display: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.