mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
70be2e8c9e
Extracted many main page content styles to own scss partial. Styles could do with a more general clean-up. Closes #4303
276 lines
5.3 KiB
SCSS
276 lines
5.3 KiB
SCSS
/**
|
|
* Card-style blocks
|
|
*/
|
|
|
|
.card {
|
|
@include lightDark(background-color, #FFF, #222);
|
|
box-shadow: $bs-card;
|
|
border-radius: 3px;
|
|
.body, p.empty-text {
|
|
padding: $-m;
|
|
}
|
|
a, p {
|
|
word-wrap: break-word;
|
|
word-break: break-word;
|
|
}
|
|
}
|
|
|
|
.card-title {
|
|
padding: $-m $-m $-xs;
|
|
margin: 0;
|
|
font-size: $fs-m;
|
|
color: #222;
|
|
fill: #222;
|
|
font-weight: 400;
|
|
}
|
|
.card-title a {
|
|
line-height: 1;
|
|
}
|
|
.card-footer-link, button.card-footer-link {
|
|
display: block;
|
|
padding: $-s $-m;
|
|
line-height: 1;
|
|
border-top: 1px solid;
|
|
width: 100%;
|
|
text-align: left;
|
|
@include lightDark(border-color, #DDD, #555);
|
|
border-radius: 0 0 3px 3px;
|
|
font-size: 0.9em;
|
|
margin-top: $-xs;
|
|
&:hover {
|
|
text-decoration: none;
|
|
@include lightDark(background-color, #f2f2f2, #2d2d2d);
|
|
}
|
|
&:focus {
|
|
@include lightDark(background-color, #eee, #222);
|
|
outline: 1px dotted #666;
|
|
outline-offset: -2px;
|
|
}
|
|
}
|
|
|
|
.card.border-card {
|
|
border: 1px solid;
|
|
@include lightDark(border-color, #ddd, #000);
|
|
}
|
|
|
|
.card.drag-card {
|
|
border: 1px solid #DDD;
|
|
@include lightDark(border-color, #ddd, #000);
|
|
@include lightDark(background-color, #fff, #333);
|
|
border-radius: 4px;
|
|
display: flex;
|
|
padding: 0 0 0 ($-s + 28px);
|
|
margin: $-s 0;
|
|
position: relative;
|
|
.drag-card-action {
|
|
cursor: pointer;
|
|
}
|
|
.handle, .drag-card-action {
|
|
display: flex;
|
|
align-items: center;
|
|
text-align: center;
|
|
justify-content: center;
|
|
width: 28px;
|
|
flex-grow: 0;
|
|
padding: 0 $-xs;
|
|
&:hover {
|
|
@include lightDark(background-color, #eee, #2d2d2d);
|
|
}
|
|
.svg-icon {
|
|
margin-inline-end: 0px;
|
|
}
|
|
}
|
|
.outline input {
|
|
margin: $-s 0;
|
|
width: 100%;
|
|
}
|
|
.outline {
|
|
position: relative;
|
|
}
|
|
.handle {
|
|
@include lightDark(background-color, #eee, #2d2d2d);
|
|
left: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
}
|
|
> div {
|
|
padding: 0 $-s;
|
|
max-width: 80%;
|
|
flex: 1;
|
|
}
|
|
}
|
|
|
|
.grid-card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
border: 1px solid #ddd;
|
|
@include lightDark(border-color, #ddd, #000);
|
|
margin-bottom: $-l;
|
|
border-radius: 4px;
|
|
overflow: hidden;
|
|
min-width: 100px;
|
|
color: $text-dark;
|
|
transition: border-color ease-in-out 120ms, box-shadow ease-in-out 120ms;
|
|
&:hover {
|
|
color: $text-dark;
|
|
text-decoration: none;
|
|
@include lightDark(box-shadow, $bs-card, $bs-card-dark);
|
|
}
|
|
h2 {
|
|
width: 100%;
|
|
font-size: 1.5em;
|
|
margin: 0 0 10px;
|
|
}
|
|
p {
|
|
font-size: .7rem;
|
|
margin: 0;
|
|
line-height: 1.6em;
|
|
}
|
|
.grid-card-content {
|
|
flex: 1;
|
|
border-top: 0;
|
|
border-bottom-width: 2px;
|
|
}
|
|
.grid-card-content, .grid-card-footer {
|
|
padding: $-l;
|
|
}
|
|
.grid-card-content + .grid-card-footer {
|
|
padding-top: 0;
|
|
}
|
|
}
|
|
|
|
.book-grid-item .grid-card-footer {
|
|
p.small {
|
|
font-size: .8em;
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.content-wrap.card {
|
|
padding: $-m $-xxl;
|
|
margin-inline-start: auto;
|
|
margin-inline-end: auto;
|
|
margin-bottom: $-l;
|
|
overflow: initial;
|
|
min-height: 60vh;
|
|
&.auto-height {
|
|
min-height: 0;
|
|
}
|
|
&.fill-width {
|
|
width: 100%;
|
|
}
|
|
}
|
|
@include smaller-than($xxl) {
|
|
.content-wrap.card {
|
|
padding: $-m $-xl;
|
|
}
|
|
}
|
|
@include smaller-than($m) {
|
|
.content-wrap.card {
|
|
padding: $-m $-l;
|
|
}
|
|
}
|
|
@include smaller-than($s) {
|
|
.content-wrap.card {
|
|
padding: $-m $-m;
|
|
}
|
|
}
|
|
|
|
.sub-card {
|
|
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
|
|
border: 1.5px solid;
|
|
@include lightDark(border-color, #E2E2E2, #444);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.outline-hover {
|
|
border: 1px solid transparent !important;
|
|
&:hover {
|
|
border: 1px solid rgba(0, 0, 0, 0.1) !important;
|
|
}
|
|
}
|
|
|
|
.fade-in-when-active {
|
|
@include lightDark(opacity, 0.6, 0.7);
|
|
transition: opacity ease-in-out 120ms;
|
|
&:hover, &:focus-within {
|
|
opacity: 1 !important;
|
|
}
|
|
@media (prefers-contrast: more) {
|
|
opacity: 1 !important;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Tags
|
|
*/
|
|
.tag-item {
|
|
display: inline-flex;
|
|
margin-bottom: $-xs;
|
|
margin-inline-end: $-xs;
|
|
border-radius: 4px;
|
|
border: 1px solid;
|
|
overflow: hidden;
|
|
font-size: 0.85em;
|
|
@include lightDark(border-color, #CCC, #666);
|
|
a, span, a:hover, a:active {
|
|
padding: 4px 8px;
|
|
@include lightDark(color, rgba(0, 0, 0, 0.7), rgba(255, 255, 255, 0.8));
|
|
transition: background-color ease-in-out 80ms;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
@include lightDark(background-color, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3));
|
|
}
|
|
svg {
|
|
@include lightDark(fill, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.5));
|
|
}
|
|
.tag-value {
|
|
border-inline-start: 1px solid;
|
|
@include lightDark(border-color, #DDD, #666);
|
|
@include lightDark(background-color, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.2))
|
|
}
|
|
}
|
|
|
|
.tag-name.highlight, .tag-value.highlight {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.tag-list div:last-child .tag-item {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.item-list-row .tag-item {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/**
|
|
* API Docs
|
|
*/
|
|
.api-method {
|
|
font-size: 0.75rem;
|
|
background-color: #888;
|
|
padding: $-xs;
|
|
line-height: 1.3;
|
|
opacity: 0.7;
|
|
vertical-align: top;
|
|
border-radius: 3px;
|
|
color: #FFF;
|
|
display: inline-block;
|
|
min-width: 60px;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
&[data-method="GET"] { background-color: #077b70 }
|
|
&[data-method="POST"] { background-color: #cf4d03 }
|
|
&[data-method="PUT"] { background-color: #0288D1 }
|
|
&[data-method="DELETE"] { background-color: #ab0f0e }
|
|
}
|
|
|
|
.sticky-sidebar {
|
|
position: sticky;
|
|
top: $-m;
|
|
max-height: calc(100vh - #{$-m});
|
|
overflow-y: auto;
|
|
}
|