mirror of https://github.com/abpframework/abp.git
8 changed files with 106 additions and 11 deletions
@ -1,7 +1,13 @@ |
|||
using System; |
|||
|
|||
namespace Volo.Docs.HtmlConverting; |
|||
|
|||
public class DocumentNavigationsDto |
|||
{ |
|||
public DocumentNavigationDto Previous { get; set; } |
|||
public DocumentNavigationDto Next { get; set; } |
|||
|
|||
public bool HasPrevious => Previous?.Path.IsNullOrEmpty() == false; |
|||
public bool HasNext => Next?.Path.IsNullOrEmpty() == false; |
|||
public bool HasValues => HasPrevious || HasNext; |
|||
} |
|||
@ -0,0 +1 @@ |
|||
{"version":3,"sourceRoot":"","sources":["index.scss"],"names":[],"mappings":"AACI;EACI;EACA;EACA;;;AAKJ;EACI;;;AAIR;EACI;EACA;;AAEA;EACI;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;;AAIR;EACI;EACA","file":"Index.css"} |
|||
@ -0,0 +1 @@ |
|||
{"version":3,"sourceRoot":"","sources":["index.scss"],"names":[],"mappings":"AACI,8BACI,4BACA,4CACA,uBAKJ,+BACI,0CAIR,YACI,aACA,8BAEA,8CACI,qBACA,cAEA,0DACI,eACA,cACA,cAGJ,4DACI,gBACA,eACA,cAIR,uBACI,iBACA","file":"Index.min.css"} |
|||
@ -1,8 +1,34 @@ |
|||
.code-toolbar .line-highlight { |
|||
margin-top: 1.5em !important; |
|||
background: rgba(233, 237, 241, 0.34) !important; |
|||
padding: 1px !important; } |
|||
padding: 1px !important; |
|||
} |
|||
|
|||
.input-group .input-group-text{ |
|||
background-color: transparent!important; |
|||
} |
|||
.input-group .input-group-text { |
|||
background-color: transparent !important; |
|||
} |
|||
|
|||
.navigation { |
|||
display: flex; |
|||
justify-content: space-between; |
|||
} |
|||
.navigation .next-link, .navigation .prev-link { |
|||
display: inline-block; |
|||
max-width: 48%; |
|||
} |
|||
.navigation .next-link .desc, .navigation .prev-link .desc { |
|||
font-size: 16px; |
|||
color: #0D6EFD; |
|||
display: block; |
|||
} |
|||
.navigation .next-link .title, .navigation .prev-link .title { |
|||
font-weight: 600; |
|||
font-size: 18px; |
|||
color: #0B1621; |
|||
} |
|||
.navigation .next-link { |
|||
margin-left: auto; |
|||
text-align: right; |
|||
} |
|||
|
|||
/*# sourceMappingURL=Index.css.map */ |
|||
|
|||
@ -1 +1 @@ |
|||
.code-toolbar .line-highlight{margin-top:1.5em !important;background:rgba(233,237,241,.34) !important;padding:1px !important;} .input-group .input-group-text{background-color: transparent!important;} |
|||
.code-toolbar .line-highlight{margin-top:1.5em !important;background:rgba(233,237,241,.34) !important;padding:1px !important}.input-group .input-group-text{background-color:rgba(0,0,0,0) !important}.navigation{display:flex;justify-content:space-between}.navigation .next-link,.navigation .prev-link{display:inline-block;max-width:48%}.navigation .next-link .desc,.navigation .prev-link .desc{font-size:16px;color:#0d6efd;display:block}.navigation .next-link .title,.navigation .prev-link .title{font-weight:600;font-size:18px;color:#0b1621}.navigation .next-link{margin-left:auto;text-align:right}/*# sourceMappingURL=Index.min.css.map */ |
|||
|
|||
Loading…
Reference in new issue