mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
Merge branch 'main' into webmention
This commit is contained in:
@@ -215,7 +215,7 @@ nav {
|
||||
}
|
||||
|
||||
.next #announcement-content *{
|
||||
font-size:10px !important;
|
||||
font-size:12px !important;
|
||||
line-height:1.5 !important;
|
||||
}
|
||||
|
||||
@@ -308,4 +308,11 @@ a.avatar-wrapper {
|
||||
|
||||
.reply-author-name {
|
||||
font-weight: 500;
|
||||
/* 最多显示4行文字 */
|
||||
.p-4-lines {
|
||||
display: -webkit-box;
|
||||
-webkit-box-orient: vertical;
|
||||
-webkit-line-clamp: 4;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
@@ -68,7 +68,7 @@
|
||||
}
|
||||
|
||||
.notion {
|
||||
font-size: 17px;
|
||||
font-size: 16px;
|
||||
line-height: 1.5;
|
||||
color: var(--fg-color);
|
||||
caret-color: var(--fg-color);
|
||||
@@ -584,12 +584,12 @@ summary > .notion-h {
|
||||
.notion-page-link {
|
||||
display: flex;
|
||||
color: var(--fg-color);
|
||||
text-decoration: none;
|
||||
text-decoration: underline;
|
||||
width: 100%;
|
||||
height: 30px;
|
||||
margin: 1px 0;
|
||||
transition: background 120ms ease-in 0s;
|
||||
pointer-events: none;
|
||||
/* pointer-events: none; */
|
||||
}
|
||||
|
||||
.notion-page-link:hover {
|
||||
@@ -655,10 +655,11 @@ svg.notion-page-icon {
|
||||
|
||||
.notion-list-disc {
|
||||
list-style-type: disc;
|
||||
padding-inline-start: 1.7em;
|
||||
padding-inline-start: 1.4em;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.notion-list-numbered {
|
||||
list-style-type: decimal;
|
||||
padding-inline-start: 1.6em;
|
||||
@@ -709,7 +710,7 @@ svg.notion-page-icon {
|
||||
}
|
||||
|
||||
.notion-asset-wrapper img {
|
||||
width: 100%;
|
||||
width: 90%;
|
||||
/* height: 100%; */
|
||||
height: auto !important;
|
||||
max-height: 100%;
|
||||
@@ -723,6 +724,7 @@ svg.notion-page-icon {
|
||||
.notion-text {
|
||||
width: 100%;
|
||||
white-space: pre-wrap;
|
||||
line-height: 1.5rem !important;
|
||||
word-break: break-word;
|
||||
padding: 3px 2px !important;
|
||||
margin: 1px 0 !important;
|
||||
@@ -1408,7 +1410,7 @@ code[class*='language-'] {
|
||||
}
|
||||
|
||||
.notion-collection-card{
|
||||
cursor: default !important;
|
||||
/* cursor: default !important; */
|
||||
}
|
||||
|
||||
.notion-collection-card-property .notion-link {
|
||||
@@ -1623,6 +1625,7 @@ code[class*='language-'] {
|
||||
|
||||
.notion-collection-card-cover .lazy-image-wrapper {
|
||||
padding: 0 !important;
|
||||
z-index: 20;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
|
||||
84
styles/nprogress.css
Normal file
84
styles/nprogress.css
Normal file
@@ -0,0 +1,84 @@
|
||||
/* Make clicks pass-through */
|
||||
#nprogress {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
#nprogress .bar {
|
||||
background: #29d;
|
||||
|
||||
position: fixed;
|
||||
z-index: 1031;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
}
|
||||
|
||||
/* Fancy blur effect */
|
||||
#nprogress .peg {
|
||||
display: block;
|
||||
position: absolute;
|
||||
right: 0px;
|
||||
width: 100px;
|
||||
height: 100%;
|
||||
box-shadow: 0 0 10px #29d, 0 0 5px #29d;
|
||||
opacity: 1;
|
||||
|
||||
-webkit-transform: rotate(3deg) translate(0px, -4px);
|
||||
-ms-transform: rotate(3deg) translate(0px, -4px);
|
||||
transform: rotate(3deg) translate(0px, -4px);
|
||||
}
|
||||
|
||||
/* Remove these to get rid of the spinner */
|
||||
#nprogress .spinner {
|
||||
display: block;
|
||||
position: fixed;
|
||||
z-index: 1031;
|
||||
top: 15px;
|
||||
right: 15px;
|
||||
}
|
||||
|
||||
#nprogress .spinner-icon {
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
box-sizing: border-box;
|
||||
|
||||
border: solid 2px transparent;
|
||||
border-top-color: #29d;
|
||||
border-left-color: #29d;
|
||||
border-radius: 50%;
|
||||
|
||||
-webkit-animation: nprogress-spinner 400ms linear infinite;
|
||||
animation: nprogress-spinner 400ms linear infinite;
|
||||
}
|
||||
|
||||
.nprogress-custom-parent {
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nprogress-custom-parent #nprogress .spinner,
|
||||
.nprogress-custom-parent #nprogress .bar {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
@-webkit-keyframes nprogress-spinner {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes nprogress-spinner {
|
||||
0% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user